Problem with ADX line value
-
Can somebody help me with how to implement ADX value on my project, I am new
-
Need more information on what you are trying to achieve
-
@jstap Thanks for being there! I want to build a strategy that needs an ADX value of at least 30 or greater. I tried to use the "indicator rising" block to accomplish that but didn't work.
-
condition ADX > 30 will do this.
-
Thanks! Let me try; I will get back to you with my result.
-
@jpsam I am back, sorry for disturbing you! You know that the condition block has two parts or windows so that you can compare one with the other: for example, if you want to implement Moving Average of 100 above 200; after picking the condition block, you choose MA 100 and insert the above sign between, then you choose MA 200. This is simple because you are comparing one MA with another MA, not an indicator with a number. The question is, how do I implement an Indicator against a number?
-
Indicator in left operand-numeric value in right operand.
-
Thanks very much!