MaryParticipant
Average
Hello,
How do you create a screener where you want RSI to cross 50 line on a 3 week chart?
I only see ProRealTime allowing monthly and (1) weekly, daily time frames in default, I would like to screen for
3 weeks time frame RSI.
Thank you in advance.
You can only use the timeframes listed in the dropdown menu of ProScreener.
But you can simulate a crossover in 3 weeks by checking the 4th week RSI was below 50 and now it’s above:
myRsi = Rsi[14](close)
Below = myRsi < 50
Above = myRsi > 50
Cond = Above and Below[3]
Screener[Cond]
the lasting 3 weeks are 0, 1 and 2, so the 4th one is week number 3.
It’s not exactly the same as having a 3-week TF, but it’s the closest possible way.