Multiple Trades problem

 

Hi,

I'm very new to coding in mql, and if I use any aimple code it is iterating multiple times, even if I used any loop conditions to stop after 2 iterations, it is  iterating again and again .
So, what can I do to stop it ?

Thanks a ton. 

Files:
MQL_Check.PNG  7 kb
 
munnassh:

Hi,

I'm very new to coding in mql, and if I use any aimple code it is iterating multiple times, even if I used any loop conditions to stop after 2 iterations, it is  iterating again and again .
So, what can I do to stop it ?

Thanks a ton. 

Because you reset the value of counter on every tick because int conter=1; is in the on tick function.

It will order on every tick so you must remove it.

Reason: