• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Learnig mql5

trendM5 = (adxM5 > 25) ? 1 : ((adxM5 < 20) ? -1 : 0);
what operation do ? :

I created a detailed IF model, hopefully this makes it easier to understand.

Code:
if (adxM5 > 25){
    trendM5 = 1;
}else if (adxM5 < 20){
    trendM5 = -1;
}else{
    trendM5 = 0;
}
 
Something is diferent at mq5, transfered my best mq4 cascade to mq5 ,but is gone wild ride .
Mq4 rocks ! hands down smoth rocket machine !
 
mq5 loading each tick new indicator window.....why???
ok now ..what i did found out is indicator fault.
not all fit into universal custom indi formula.
 

Attachments

  • rsiiiii....PNG
    rsiiiii....PNG
    143.3 KB · Views: 9
Last edited:
if u’ve got java and c++ under ur belt, picking up mql5 is basically just wrapping ur head around the api structure—u’ll be fine. best to just dive straight into the official docs, though. focus on getting how mt5 handles oop and memory management; it’s a totally different beast compared to the mt4 way, esp with order management and tick data. honestly, spending time digging through the example code is way more efficient than trying to port ur old logic over. u’ve got the technical foundation, so once u iron out those platform quirks, u’ll be set.
 
Back
Top