Hello,
I would like to see all the stocks on a daily timeframe that meet the following requirements:
- Stock is more than 30% up over de last 30 days
- Currenlty more than 10% down compared to last 30 day high
- Close is above 5
- Average daily volume over last 14 days is above 500000
- The current Stoch RSI14 is below 10
- Yesterdays Stoch RSI14 was equal or above current Stoch RIS14
Thanks a lot
gr Marco
There you go:
Timeframe(Daily)
MyRsi = RSI[14](close)
MinRSI = lowest[14](MyRsi)
MaxRSI = highest[14](MyRsi)
StochRSI = (MyRsi-MinRSI) / (MaxRSI-MinRSI) * 100
c1 = (close * 100 / close[30]) > 130 //>+30% over the last 30 days
c2 = (close * 100 / highest[30](high)) < 90 //<-10% over the highest price in
// the last 30 days
c3 = close > 5 //close > 5
c4 = average[14,0](volume) > 500000 //average VOLUME over the last
// 14 days > 500000
c5 = StochRSI < 10
c6 = StochRSI[1] >= StochRSI
Cond = c1 AND c2 AND c3 AND c4 AND c5 AND c6
SCREENER[Cond]
Thanks Roberto. I made a mistake however. My stoch requirements are not good.
I needs to be:
- The current Stoch RSI14 is higher than yesterday StochRSI14
- Yesterdays Stoch RSI14 was was below 10
Can you change this?
Replace lines 12 and 13 with:
c5 = StochRSI[1] < 10
c6 = StochRSI >= StochRSI[1]
Hi Roberto,
I only want to see stocks that are maximal 1% above EMA20 Daily (so between 0 and 1% above the EMA20).
What line should i add than?
gr Marco
There you go:
Timeframe(Daily)
Ema20 = average[20,1](close)
Band = Ema20 * 1.01
MyRsi = RSI[14](close)
MinRSI = lowest[14](MyRsi)
MaxRSI = highest[14](MyRsi)
StochRSI = (MyRsi-MinRSI) / (MaxRSI-MinRSI) * 100
c1 = (close * 100 / close[30]) > 130 //>+30% over the last 30 days
c2 = (close * 100 / highest[30](high)) < 90 //<-10% over the highest price in
// the last 30 days
c3 = close > 5 //close > 5
c4 = average[14,0](volume) > 500000 //average VOLUME over the last
// 14 days > 500000
c5 = StochRSI[1] < 10
c6 = StochRSI >= StochRSI[1]
c7 = (close >= Ema20) AND (close <= Band)
Cond = c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7
SCREENER[Cond]
Hi Roberto,
Thanks.
I have a question nog related to this but what is the code for:
- The closeprice of the stock is above the EMA21 day for at least 30 days
gr Marco
JSParticipant
Veteran
Hi,
EMA21=ExponentialAverage[21](Close)
C1=Summation[30](Close>EMA21)=30
Thanks Roberto and JS for your efforts