Hello all, I am very new to all of this and I am going through a trading course. I have recently began learning how to use ProRealTime and although I am getting to grips with the majority, the ProScreener has me very confused. I am looking to search for set criteria which i have listed below:
Min Price: $1
Max Price: $50
RSI Below 35
Volume above 10,000 per minute
Above sma & ema
If anyone could shed some light on how to search for said criteria without my head exploding then I would be very grateful. Also if you could mention how to adjust price then that would be ideal.
Thank you. Harrison
c1 = (close > 1)
c2 = (close < 50)
indicator1 = Average[200](close)
c3 = (close > indicator1)
indicator2 = ExponentialAverage[200](close)
c4 = (close > indicator2)
indicator3 = Volume
c5 = (indicator3 > 10000)
indicator4 = RSI[14](close)
c6 = (indicator4 < 35)
SCREENER[c1 AND c2 AND c3 AND c4 AND c5 AND c6] ((close/DClose(1)-1)*100 AS "%Chg yest.")