
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
How should the line be if i want to say:
If Bar1 >= 0 and Bar1 <= 0.0004 - just an example
I have tried with this but it doesn't work. Compile error
if (Bar1 > 0 || Bar1 == 0) && (Bar1 < 0.0004 || Bar1 == 0.0004)
Have tried this as well but same problem. Compile error
if Bar1 >= 0 && Bar1 <=0.0004
What is it that i'm doing wrong?