newbgeek:
Here is my wrong code, seeking to use parity:
if ( MathMod (i,2) == 0) Continue; if ( MathMod (i,2) == 1) ( Ticket = . . . OP_BUY, . . . . ; Break ;
or use modulo operator for integer.
if ( i%2 == 0) Continue; if ( i%2 == 1) ( Ticket = . . . OP_BUY, . . . . ; Break ;
zirkoner:
or use modulo operator for integer.
Ok, very well, thank you,
I knew it, but I didn’t do
newbgeek:
Ok, very well, thank you,
I knew it, but I didn’t do
That’s why I ‘m looking for exemples and twice equal == to verify, because % is double, and not bool !

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello, all,
yhis would be the best in french, for me
can not use MathMod, could you show me an exemple
Here is my wrong code, seeking to use parity:
"
int i=3; i ++;
double MathMod (i,2)
if ( MathMod (i,2) = 0) Continue;
if ( MathMod (i,2) = 1) ( Ticket = . . . OP_BUY, . . . . ; Break ;
//next, over Ticket . . . OP_SELL . . . ;
"
It is to try, to learn mt4, thank you,