Pullback after big rise

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #217779 quote
    marco7630marco7630
    Participant
    New

    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

    #217783 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    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]
    #217791 quote
    marco7630marco7630
    Participant
    New

    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?

    #217800 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    Replace lines 12 and 13 with:

    c5       = StochRSI[1] < 10
    c6       = StochRSI >= StochRSI[1]
    #218072 quote
    marco7630marco7630
    Participant
    New

    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

    #218083 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    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]
    #218137 quote
    marco7630marco7630
    Participant
    New

    Hi Roberto,

     

    Thanks.

    I have a question nog related to this but what is the code for:

    1. The closeprice of the stock is above the EMA21 day for at least 30 days

    gr Marco

    #218167 quote
    JSJS
    Participant
    Master

    Hi,

    EMA21=ExponentialAverage[21](Close)

    C1=Summation[30](Close>EMA21)=30

    #218182 quote
    marco7630marco7630
    Participant
    New

    Thanks Roberto and JS for your efforts

    JS and robertogozzi thanked this post
Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

Pullback after big rise


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 8 replies,
has 3 voices, and was last updated by marco7630marco7630
3 years, 1 month ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 07/17/2023
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...