kisshoney23
New Member
- Credits
- 0
Is it easy to learn to code EAs if I already know Java and C++?
Is it easy to learn to code EAs if I already know Java and C++?
trendM5 = (adxM5 > 25) ? 1 : ((adxM5 < 20) ? -1 : 0);
what operation do ? :
trendM5 = (adxM5 > 25) ? 1 : ((adxM5 < 20) ? -1 : 0);
what operation do ? :
if (adxM5 > 25){
trendM5 = 1;
}else if (adxM5 < 20){
trendM5 = -1;
}else{
trendM5 = 0;
}
yes, mt4 and mt5 have a different buffer direction.Something is diferent at mq5, transfered my best mq4 cascade to mq5 ,but is gone wild ride .
Mq4 rocks ! hands down smoth rocket machine !