Screener Code with RSI move to 30 after closing 25

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #249010 quote
    jaiswalvirendra
    Participant
    New

    I am trying to screen all tickers where RSI goes above 30 after deeping below 25 so it give me tickers which are over-sold but now showing some support.

    RSI[14](close)[1] < 25
    AND CrossOver(RSI[14](close), 30) // this is giving me error.

    #249011 quote
    JS
    Participant
    Senior

    Hi,

    Here is the indicator…

    I’ve added an extra condition: between the period when RSI < 25 and RSI > 30, there may be a maximum of 5 bars in between (Once MaxBarsSince = 5)…

    You can adjust this number (5) as you like…

    Once MaxBarsSince=5
    
    xRSI=RSI[14](Close)
    
    xBars=BarsSince(xRSI<25)
    c1=xRSI crosses over 30
    
    Signal=c1 and xBars<=MaxBarsSince
    
    Screener[Signal](xRSI as "RSI")
    Iván González thanked this post
    #249012 quote
    JS
    Participant
    Senior

    Screener not Indicator…

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

Screener Code with RSI move to 30 after closing 25


ProScreener: Market Scanners & Detection

New Reply
Author
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by JS
7 months, 1 week ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 07/21/2025
Status: Active
Attachments: No files
Logo Logo
Loading...