Morning.
Can anyone help with a screener for increasing ADX above 25 on the H4 timeframe? Basically I want to screen for instruments where the ADX of the present candle is higher than the last 2 to 3 candles.
Thank you.
KR,
MM
There you go, line 1 is commented out so you can apply it to any timeframe, but in case you prefer to have it hard coded in the screener just uncomment it:
//TIMEFRAME(4 hours)
MyAdx = Adx[14]
Result = (MyAdx > 25) AND MyAdx = highest[3](MyAdx)
SCREENER[Result] (Result AS "MyCriterion")