I am struggling with a piece of code, this is what I am trying to write:
if the ADX value falls between 10 and 20 or if the ADX value is more that 60 do something……this is what I have so far….
If 10 < ADX(14)[0] < 20 || ADX(14)[0] > 60
The error message I have says that I cannot apply < to int and bool… any ideas how I can write this?
Thanks

Comment