Hello,
I have the following code:
lengthRSI = 14 //RSI period
lengthStoch = 14 //Stochastic period
//smoothK = 10 //Smooth signal of stochastic RSI
//smoothD = 3 //Smooth signal of smoothed stochastic RSI
myRSI = RSI[lengthRSI](close)
MinRSI = lowest[lengthStoch](myrsi)
MaxRSI = highest[lengthStoch](myrsi)
StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100
C1 = (StochRSI[1] – StochRSI) > 60
xSMA = Average[20](Close)
C2 = xSMA – xSMA[1] < 0
C3 = Volume > 500000
SCREENER [C1 and C2 and C3](Volume as “Volume”)
What do i need to change to only see assets that have a price of a least 5 usd on the current price candle? Thanks