Hi all, can anyone point me in the dirrection of a higher low code for a proscreener. I’d like to see from my list of stocks which ones have made consistently higher lows in the last 6 bars. In other words, each low has to be higher than the last one for the last six bars. I’d also like to sometimes change the number of bars. Is this sort of thing programable?
Thanks for any help .
There you go:
Bars = 6
Cond = (summation[Bars](low > low[1]) = Bars)
SCREENER[Cond]
Thank you very much for this. Works a treat.