Rising RSI over a given period screener

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #65149 quote
    OlivierLarueOlivierLarue
    Participant
    Average

    I would like to create a screener which would scan for stocks with a rising RSI.
    If possible with a variable correction margin.
    So for example :

    Stocks whose RSI has been on the rise over the last 20 periods 90% of the time.

    Thank you.

    #65150 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    Try this one:

    ONCE Periods = 20             //last 20 bars
    ONCE PerCent = Periods * 0.9  //90% of times on the rise
    ONCE RsiNum  = 14
    MyRsi = rsi[RsiNum](close)
    SCREENER[summation[Periods](MyRsi > MyRsi[1]) >= PerCent]

    Roberto

    Nicolas and OlivierLarue thanked this post
    #65263 quote
    OlivierLarueOlivierLarue
    Participant
    Average

    Thank you so much @robertogozzi, this is perfect!

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

Rising RSI over a given period screener


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
OlivierLarue @olivier7 Participant
Summary

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

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 03/12/2018
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...