herrcrowley:
I am looking if this code this on mql5
can be replaced with any of the following codes to avoid lengthy coding
or be expressed like this
or
return (a || b || c) != (a && b && c); return (a != b) || (b != c);
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
I am looking if this code this on mql5
can be replaced with any of the following codes to avoid lengthy coding
or be expressed like this
a+b+c >= 2
or
!!a+!!b+!!c >= 2