New 30 day / 90 day / high – low.

Forums ProRealTime English forum ProScreener support New 30 day / 90 day / high – low.

Viewing 6 posts - 1 through 6 (of 6 total)
  • #53784

    oops, sorry, i think i posted this in the wrong forum so here it is here. Cheers

    Hi all,
    First of all, each posts here by you guys are great and very helpful plus educational.

    I was wondering if anyone can help me out (if it hasn’t been listed or posted yet) with a code for a 30 day high/low screener, and a 90 day high/low screener?

    I already have the 52 week high / low screener so perhaps this code can be slightly adjusted?

    Many thanks.

    #53807

    Please share your 52 weeks high/low screener, it is indeed a simple lookback period modification in its code I guess.

    1 user thanked author for this post.
    #54052

    Hi Nicolas, many thanks for responding. Below are the codes.

    52 week hi –
    1.timeframe(Daily)
    2.indicator1 = highest[250](close[1])
    3.c1 = (close >= indicator1)
    4.Criteria = RSI[14](Close)
    5.
    6.SCREENER[c1] (Criteria as”RSI”)
    7.

    52 week low –

    1.timeframe(Daily)
    2.indicator1 = Lowest[250](close[1])
    3.c1 = (close <= indicator1)
    4.
    5.criteria = RSI[14](close)
    6.
    7.SCREENER[c1] (criteria AS”RSI”)
    8.

    Sorry for my late reply.
    Cheers

    #54115

    Anyone can give you the code adjustment  but seriously if you think about it for 1 minute you can work it out  . The ‘ teach a man to fish ‘ analogy applies here  . 

    1 user thanked author for this post.
    #54155

    Just replace 250 with 30 or 90 or whatever else 🙂

    1 user thanked author for this post.
    #54210

    Many thanks Nicolas.

     

Viewing 6 posts - 1 through 6 (of 6 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login