Pullback after big rise
Forums › ProRealTime English forum › ProScreener support › Pullback after big rise
- This topic has 8 replies, 3 voices, and was last updated 1 year ago by marco7630.
Viewing 9 posts - 1 through 9 (of 9 total)
-
-
07/17/2023 at 4:39 PM #217779
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
07/17/2023 at 5:58 PM #217783There you go:
123456789101112131415Timeframe(Daily)MyRsi = RSI[14](close)MinRSI = lowest[14](MyRsi)MaxRSI = highest[14](MyRsi)StochRSI = (MyRsi-MinRSI) / (MaxRSI-MinRSI) * 100c1 = (close * 100 / close[30]) > 130 //>+30% over the last 30 daysc2 = (close * 100 / highest[30](high)) < 90 //<-10% over the highest price in// the last 30 daysc3 = close > 5 //close > 5c4 = average[14,0](volume) > 500000 //average VOLUME over the last// 14 days > 500000c5 = StochRSI < 10c6 = StochRSI[1] >= StochRSICond = c1 AND c2 AND c3 AND c4 AND c5 AND c6SCREENER[Cond]07/17/2023 at 7:11 PM #21779107/18/2023 at 3:59 AM #217800Replace lines 12 and 13 with:
12c5 = StochRSI[1] < 10c6 = StochRSI >= StochRSI[1]07/24/2023 at 12:11 PM #21807207/24/2023 at 2:56 PM #218083There you go:
123456789101112131415161718Timeframe(Daily)Ema20 = average[20,1](close)Band = Ema20 * 1.01MyRsi = RSI[14](close)MinRSI = lowest[14](MyRsi)MaxRSI = highest[14](MyRsi)StochRSI = (MyRsi-MinRSI) / (MaxRSI-MinRSI) * 100c1 = (close * 100 / close[30]) > 130 //>+30% over the last 30 daysc2 = (close * 100 / highest[30](high)) < 90 //<-10% over the highest price in// the last 30 daysc3 = close > 5 //close > 5c4 = average[14,0](volume) > 500000 //average VOLUME over the last// 14 days > 500000c5 = StochRSI[1] < 10c6 = StochRSI >= StochRSI[1]c7 = (close >= Ema20) AND (close <= Band)Cond = c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7SCREENER[Cond]07/25/2023 at 4:32 PM #21813707/26/2023 at 12:38 PM #21816707/26/2023 at 7:42 PM #218182Thanks Roberto and JS for your efforts
2 users thanked author for this post.
-
AuthorPosts
Viewing 9 posts - 1 through 9 (of 9 total)
Find exclusive trading pro-tools on
Similar topics: