Hello,
I would like to see all assets that meet the following requirements:
- The SMA20 daily needs to be in a downtrend for at least 20 days
- The average daily volume is above 500k
- Yesterday closing price was above 5 usd
- Yesterdays price candle touches/crosses the Bolinger (20, 2) band on the upside
Thanks
Gr Marco
JSParticipant
Veteran
Hi Marco,
If I may make a suggestion…
Use current Price > 5
Use current price >= BBUp
Because when the average must be 20 days in a down trend it is very unlikely that yesterday’s price will be greater or equal than BBUp…
If you do not want this, you can use the following:
C3=Close[1] > 5
C4=Close[1] >= BBUp[1]
TimeFrame(Daily)
S1=Average[20](Close)
xMean=Average[20](Close)
xStd=Std[20](Close)
BBUp=xMean+2*xStd
C1=Summation[20](S1<S1[1])=20
C2=Volume>500000
C3=Close>5
C4=Close >= BBUp
Screener[C1 and C2 and C3 and C4](Volume as "Volume")