I think that's work
Thanks so much 
Best posts made by mohammad2232
-
RE: Set order with out SL and TP and only close with candle closeposted in Questions & Answers
Latest posts made by mohammad2232
-
Problem with per bar blockposted in Bug Reports
Hello
I used per bar block with max pass times 1 but it work twice


And another important question that i asked many time about open order same time (same second) and many said it is impossible but with this bug my EA open 2 order as same second !
how can i do this with my need ?
Thanks -
RE: ***Important problem :strategy tester***posted in Questions & Answers
@miro1360
Thank you very much
I sent request in help desk in MQL5 community and this is answer :
"
Sorry, such function won't be implemented in MQL5. You can use The IndicatorRelease() function in the Tester"
Thanks -
RE: MT5 problem with Pointposted in Bug Reports
I used that in draw arrow

And when compile it with MT5 it show error and i should add double Point ; in first
Thanks -
RE: ***Important problem :strategy tester***posted in Questions & Answers
@miro1360
Thank so much
for example:
i added
MA_handle=iMA(Symbol(),0,1,0,MODE_SMA,PRICE_CLOSE);
MA_handle2=iMA(Symbol(),0,2,0,MODE_SMA,PRICE_CLOSE);
MA_handle3=iMA(Symbol(),0,3,0,MODE_SMA,PRICE_CLOSE);
MA_handle4=iMA(Symbol(),0,4,0,MODE_SMA,PRICE_CLOSE);
in oninit
and
IndicatorRelease(MA_handle);
IndicatorRelease(MA_handle2);
IndicatorRelease(MA_handle3);
IndicatorRelease(MA_handle4);
on deinit
and
int MA_handle=INVALID_HANDLE;
int MA_handle2=INVALID_HANDLE;
int MA_handle3=INVALID_HANDLE;
int MA_handle4=INVALID_HANDLE;
before variable
but this is not work!
is it possible this problem because of fxdreema ima codes ?
how can i fix this ?
Thanks -
RE: certain hour as an inputposted in Questions & Answers
i think i find answer
is it true?
string time = 00:00;
?
Thanks -
certain hour as an inputposted in Questions & Answers
Hello
How can i have a certain hour input ?
when i use hour and minute filter i can set 2 input like :
int hour = 00;
int minute=00;
but how can i set input for both like
int certainhour =00:00 ;
?
i use int certainhour ="00:00" ;
but not work!
Thanks -
RE: ***Important problem :strategy tester***posted in Questions & Answers
@miro1360
Thanks
is it true for example :
double value = IndicatorGetValue(iMA(SYMBOL,TIMEFRAME,MAperiod,MAshift,MAmethod,AppliedPrice),0,SHIFT+FXD_MORE_SHIFT);
IndicatorRelease(value);
?
(when i use moving average i found this in the codes of fxdreema mt5) -
RE: ***Important problem :strategy tester***posted in Questions & Answers
@miro1360
Thanks again
Do you know anything for same problem in mt5 ?
i use Hide (true) in custom mt5 code but not work and has error!
Thanks -
Copy from mt4 to mt5!posted in Questions & Answers
Hello
I copied blocks from mt4 project to mt5 , is it possible to have any problem ?
Is this good way to do same project fast ?
Thanks -
MT5 problem with Pointposted in Bug Reports
HELLO
When i use Point in mt5 and compile it in show error and i should add
double Point ;
As global variable with hand
Please fix it
Thanks
