Hello,
Can you help me with following.
I would to see all assets that fit the following criteria.
- The SMA20 (daily) is declining for at least 10 days in a row
- The Stoch RSI 14 was above 80 yesterday
- The stoch RSI 14 is below 60 today
- The price of the stock is above 5 usd
- The average daily volume of last 7 days is above 1 million
Thanks
Gr Marco
JSParticipant
Senior
Hi Marco,
Here is the screener…
TimeFrame(Daily)
S1=Average[20](Close)
C1=Summation[10](S1<S1[1])=10
lengthRSI = 14 //RSI period
lengthStoch = 14 //Stochastic period
myRSI = RSI[lengthRSI](close)
MinRSI = lowest[lengthStoch](myrsi)
MaxRSI = highest[lengthStoch](myrsi)
StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100
C2 = StochRSI[1] > 80
C3 = StochRSI < 60
C4 = Close > 5
C5 = Average[7](Volume) > 1000000
SCREENER[C1 and C2 and C3 and C4 and C5](Volume as "Volume")
Hi,
Thanks
I get an error. See attachment.
gr Marco
JSParticipant
Senior
Hi Marco,
Something must have gone wrong with your “copy & paste”…
Line 3 must be, according to the original screener…
C1=Summation[10](S1<S1[1])=10
Click the button as shown in my pic, then press Ctrl+C to copy the code.
Then you can paste it (Ctrl+V) in your platform and it should run flawlessly.
Hi,
What do i need to change to get the following:
I would to see all assets that fit the following criteria.
- The SMA20 (daily) is increasing for at least 10 days in a row
- The Stoch RSI 14 was below 20 yesterday
- The stoch RSI 14 is above 40 today
- The price of the stock is above 5 usd
- The average daily volume of last 7 days is above 1 million
Thanks a lot
JSParticipant
Senior
Hi Marco,
You can simply change the numbers in line 10 and 11…
>80 < 20
< 60 > 40
Hi Js,
But then the SMA is still decreasing. In this case i need it to be increasing for at least 10 days in a row.
gr Marco
JSParticipant
Senior
Hi Marco,
Adjust line 3 to: C1=Summation[10](S1>S1[1])=10
(Flip < to >)
Hello,
I would like to add the following to:
- The SMA20 (daily) is declining for at least 10 days in a row
- The Stoch RSI 14 was above 80 yesterday
- The stoch RSI 14 is below 60 today
- The price of the stock is above 5 usd
- The average daily volume of last 7 days is above 1 million
number 6:
The SMA20 daily of today needs to be at least 3% lower then the SMA20 10 days ago
Thanks
gr Marco
JSParticipant
Senior
Hi Marco,
Hereby the screener, time to learn some coding… 😉
TimeFrame(Daily)
S1=Average[20](Close)
C1=Summation[10](S1<S1[1])=10
lengthRSI = 14 //RSI period
lengthStoch = 14 //Stochastic period
myRSI = RSI[lengthRSI](close)
MinRSI = lowest[lengthStoch](myrsi)
MaxRSI = highest[lengthStoch](myrsi)
StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100
C2 = StochRSI[1] > 80
C3 = StochRSI < 60
C4 = Close > 5
C5 = Average[7](Volume) > 1000000
C6 = S1 < 0.97 * S1[10]
SCREENER[C1 and C2 and C3 and C4 and C5 and C6](Volume as "Volume")