Screener Code with RSI move to 30 after closing 25

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #249010 quote
    jaiswalvirendrajaiswalvirendra
    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
    JSJS
    Participant
    Master

    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
    JSJS
    Participant
    Master

    Screener not Indicator…

Viewing 3 posts - 1 through 3 (of 3 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

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 JSJS
1 year, 1 month ago.

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