d.bignotti
d.bignotti
d.bignotti
Added topic Some question about Pointer
//+------------------------------------------------------------------+
d.bignotti
Added topic Help with pseudo multi inheritance
I've built a pseudo inheritance since mql doesn't allow this, here's what i did. //+------------------------------------------------------------------+
d.bignotti
Added topic Observer Pattern
Hello everyone, i'm tryng to implement the Observer Pattern as described here (https://www.tutorialspoint.com/design_pattern/observer_pattern.htm) but i'm failing really hard. This is what i coded #include <Object.mqh> #include "Subject.mqh"
d.bignotti
Added topic Array of Struct Sort using standard LIbrary
Hello, is there a way to sort a struct based on an element inside it?     struct MyStruct      {        double
d.bignotti
Added topic Loading More History Before Running EA
Hello guys, i'm building an ea that store PERIOD_M30 mqlRates structure for different symbol and do some statistical calcualtion,  the problem currently is that i need approx 10 000 bar laoded to make my calculation, but the graph has more or
d.bignotti
Added topic Help me understand this EA
Hello,   i'm pretty new to programming, i'm studiyng a Renko Expert Advisor, it converts a normal chart in a Renko chart. File is attached, i'm understanding pretty much everything, expect this:   void UpdateChartWindow() {    if
d.bignotti
Added topic Calculation Incorrectness??
void OnStart ()   {    double Lots=(( 1860.03 * 1.0 / 100 )/( 114.542 - 114.511 ))/( 0.87 / 0.001 );    double NormLotsRound= MathRound (Lots/ 0.01 )* 0.01 ;    double NormLotsDouble= NormalizeDouble (Lots, 2
d.bignotti
Added topic MODE_STOPLEVEL Problem
As title says, i'm having some problem placing BUYSTOP/SELLSTOP order sometimes, i get  Error 130 (ERR_INVALID_STOPS), probably related to  MarketInfo ( "EURUSD" , MODE_STOPLEVEL ) .   My broker return 0 as value from  MarketInfo
d.bignotti
Added topic Order Close error 138 BACKTEST
Hello,   i'm getting this error only in BACKTESTING, here's a pic.        As you can see i'm trying to close a Basket when a when an opposite signal is generated.   Here's the OrderClose() code for Sell orders, the same
d.bignotti
Added topic #property indicator_type / SetIndexStyle, DRAW_COLORCANDLE question!
I'm making an Indicator that recognize candle, trying to paint the candle and i see that there's a DRAW_COLORCANDLE  option, but nothing on Documentation to help me understand how it works.   Right now i'm using histogram like the file
d.bignotti
Added topic Help me understand a warning.
I'm trying to run this function, is made for custom priceseries, basically input are: -Price applied to (close,low,high ect) -index of shift  -open,close,high,low from OnCalculate this is the function.  enum
d.bignotti
Added topic Custom iMA ENUM_APPLIED_PRICE possible?
Hello everyone, i'm trying to modify ATR indicator from standard library with iMa function for learning purpose, the code is:   //+------------------------------------------------------------------+
d.bignotti
Added topic Help me understand MQL4 coding
Hi all,  i'm studying MQL4 through the book here and documentation, i'm also watching some youtube video, but everything is before build 600+.  So i need someone who can kindly help me adding some comment on Custom Moving Avarage Indicator
d.bignotti
Registered at MQL5.community