I would like to create a screener which would scan for stocks with a rising RSI.
If possible with a variable correction margin.
So for example :
Stocks whose RSI has been on the rise over the last 20 periods 90% of the time.
Thank you.
Try this one:
ONCE Periods = 20 //last 20 bars
ONCE PerCent = Periods * 0.9 //90% of times on the rise
ONCE RsiNum = 14
MyRsi = rsi[RsiNum](close)
SCREENER[summation[Periods](MyRsi > MyRsi[1]) >= PerCent]
Roberto
Thank you so much @robertogozzi, this is perfect!