Stoch RSI declining
Forums › ProRealTime English forum › ProScreener support › Stoch RSI declining
- This topic has 10 replies, 3 voices, and was last updated 1 year ago by JS.
Viewing 11 posts - 1 through 11 (of 11 total)
-
-
01/26/2023 at 4:29 PM #208382
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
01/28/2023 at 8:50 AM #208538Hi Marco,
Here is the screener…
StochRSI declining1234567891011121314TimeFrame(Daily)S1=Average[20](Close)C1=Summation[10](S1<S1[1])=10lengthRSI = 14 //RSI periodlengthStoch = 14 //Stochastic periodmyRSI = RSI[lengthRSI](close)MinRSI = lowest[lengthStoch](myrsi)MaxRSI = highest[lengthStoch](myrsi)StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100C2 = StochRSI[1] > 80C3 = StochRSI < 60C4 = Close > 5C5 = Average[7](Volume) > 1000000SCREENER[C1 and C2 and C3 and C4 and C5](Volume as "Volume")01/28/2023 at 12:30 PM #20855301/28/2023 at 12:37 PM #20855501/28/2023 at 1:17 PM #208560Click 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.
1 user thanked author for this post.
01/28/2023 at 8:05 PM #208590Hi,
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
01/28/2023 at 8:38 PM #20859401/29/2023 at 9:51 AM #20860501/29/2023 at 10:03 AM #20860602/06/2023 at 2:53 PM #209238Hello,
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
02/07/2023 at 9:03 AM #209274Hi Marco,
Hereby the screener, time to learn some coding… 😉
Stoch RSI declining V1.2123456789101112131415TimeFrame(Daily)S1=Average[20](Close)C1=Summation[10](S1<S1[1])=10lengthRSI = 14 //RSI periodlengthStoch = 14 //Stochastic periodmyRSI = RSI[lengthRSI](close)MinRSI = lowest[lengthStoch](myrsi)MaxRSI = highest[lengthStoch](myrsi)StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100C2 = StochRSI[1] > 80C3 = StochRSI < 60C4 = Close > 5C5 = Average[7](Volume) > 1000000C6 = S1 < 0.97 * S1[10]SCREENER[C1 and C2 and C3 and C4 and C5 and C6](Volume as "Volume") -
AuthorPosts
Viewing 11 posts - 1 through 11 (of 11 total)
Find exclusive trading pro-tools on
Similar topics: