Hello. I want to build a screener that shows which stocks or indices that crossing level 50 on a period 7 RSI. Any thoughts on how to build that?
Hello Hockeytrader,
With ProScreener, your request is very easy to code, the prorealtime code below test if RSI crosses above the 50 mid level and also crosses under it :
i1 = RSI[7](close)
c1 = i1 crosses under 50
c2 = i1 crosses over 50
SCREENER [c1 or c2]
Thank you Nicolas! I’m still learning code while still doing manual trading.