Simple RSI Screener

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #227374 quote
    swingforyoursupperswingforyoursupper
    Participant
    New

    Hi

     

    Need a real simple screener

    RSI 8 day goes below 30 at any point over the last 5 days

    I created something but its pulling in stocks that havent met this condition

    Any help much appreciated

     

    daycount = 5
    myRSI=RSI[14](Close)
    C1=myRSI Crosses Under 30 //Buy signal
    SCREENER [C1]
    
    Crossover=0
    
    For i = 0 to daycount
    if myRSI[i] crosses under 30 then
    CrossOver=1
    break
    endif
    next
    
    SCREENER [Crossover]
    #227378 quote
    MoneyPennyMoneyPenny
    Participant
    New

    Hi @swingforyoursupper

    I use about the same screener:

    myRSI=RSI[8](Close)

    Cond1=(myRSI Crosses Under 30)[5]>=1

    Screener[Cond1](myRSI as “RSI”)

    Regards,

    Penny

    #227379 quote
    jacquesgermainjacquesgermain
    Participant
    Veteran

    //hello code corrected :

    daycount = 5 myRSI=RSI[8](Close) //C1=myRSI Crosses Under 30 //Buy signal Crossover=0 For i = 0 to daycount if myRSI[i] crosses under 30 then CrossOver=1 break endif next SCREENER [Crossover=1]
    #227397 quote
    LucasBestLucasBest
    Participant
    Senior
    Hello Jacques, You can simplify your code like this : daycount = 5 myRSI=RSI[8](Close) CrossOver = Summation[daycount](myRSI crosses under 30) SCREENER [Crossover>=1]
    jacquesgermain thanked this post
    #227401 quote
    jacquesgermainjacquesgermain
    Participant
    Veteran
    actually much lighter without a buckle!
    #228891 quote
    swingforyoursupperswingforyoursupper
    Participant
    New
    Thanks for the replies Im not sure if im doing something wrong but I run   daycount = 5 myRSI=RSI[8](Close) CrossOver = Summation[daycount](myRSI crosses under 30) SCREENER [Crossover>=1]   and it pulls a big list of stocks that have not crossed under 30 over the past 5 days – i.e. the screener isnt working properly   its a simple screener, i just need it to be accurate to reduce my target list of stocks   any help much appreciated
    #228924 quote
    robertogozzirobertogozzi
    Moderator
    Legend
    It works like a charm to me. When the price crosses under 30 for just a few decimals, auch as 0.1 or less, you will have to zoom in the indicator quite a bit to be able to spot the crossover.
    x-14.jpg x-14.jpg
Viewing 7 posts - 1 through 7 (of 7 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

Simple RSI Screener


ProScreener: Market Scanners & Detection

New Reply
Summary

This topic contains 6 replies,
has 5 voices, and was last updated by robertogozzirobertogozzi
2 years, 6 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 02/04/2024
Status: Active
Attachments: 1 files
ProRealCode ProRealCode
Loading...