Hi All,
I am pretty new to this so maybe I am just doing something wrong but I can’t understand why the most simple screener I am trying to make won’t work.
I have tried several times to make a screener that simply looks for stocks that are below RSI30 right now. No matter which way I create this it does not seem to work.
Should it not be as simple as the attached pic? It does not work at all.
What am I doing wrong here?
Cheers
Jared
The code you want should be like:
test = rsi[14](close)[2]<=30
screener[test]
and launch it on a daily timeframe. (not tested).
BOOM! you’re the man Nicolas.
What should i use if I wanted min price or min volume to it?
You can add these simple conditions this way:
test = rsi[14](close)[2]<=30
minprice = close>20
minvol = volume>500000
screener[test and minprice and minvol]