Hello my friends,
I tried to build a screener code for the search of NRB (Narrow Range Body)
Time frame 15 min. The outcome needs to be a small range as small as or smaller as 1promille. Example: Close 31,25, then smaller than 0,03125. A range of 0,03 or smaller will fit.
My attempt was as follows:
Timeframe(15 minutes)
diff = (close[1]/1000)
Timeframe(daily)
c2 = volume[1] > 10000000
c3 = close[1] > 20
c4 = close[1] < 80
Screener[c2 AND c3 AND c4] (diff as “diff”)
Thank you very much!