sflParticipant
Average
HI,
I’d like to screen all the stocks whose RSi is below 30 and main trend is UP ( MM50 > MM200 ).
No issue.
But I want to another little thing, the RSI value of DAX is lower than 30.
is that possible ?
is below 30 means the same as is lower than 30, so there’s nothing to change for DAX.
MyRsi = Rsi[14](close)
MM50 = average[50,0](close)
MM200 = average[200,0](close)
L1 = MyRsi < 30
L2 = MM50 > MM200
Lcond = L1 and L2
SCREENER[Lcond]