See "MQL4: Syntax"
===
calculation of a logical expression is always completed, never early terminated
===
===
calculation of a logical expression is always completed, never early terminated
===
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
if (a > 0 && b > 0 && c > 0 && OrderSend(.....) > 0) { }will it execute the OrderSend even if a=0, b=0, c=0?
ie, does MT4 knows when to quit early?