Stoch pullback indicator

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #205308 quote
    marco7630marco7630
    Participant
    New
    I would like to see all stocks that meet the following requirements:
    1. The Stoch RSI 14 has been above the value 90 within the last 5 days
    2. AFTER that the STOCH RSI 14 falls below the value 80
    3. On the current candle it again crosses over the value 90
    #205357 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    There you go:

    //PRC_Stochastic RSI v1.1 | indicator 06.12.2016 Nicolas @ www.prorealcode.com
    //Sharing ProRealTime knowledge converted and adapted from Pinescript version
    //forked by GraHal to look same as PRT Platform inbuilt Stochastic RSI
    //
    lengthRSI   = 14
    lengthStoch = lengthRSI
    myRSI       = RSI[lengthRSI](close)
    MinRSI      = lowest[lengthStoch](myrsi)
    MaxRSI      = highest[lengthStoch](myrsi)
    StochRSI    = (myRSI-MinRSI) / (MaxRSI-MinRSI)*100
    //
    c1          = (summation[5](StochRSI > 90) = 5)[2]
    c2          = StochRSI CROSSES OVER 90
    SCREENER[c1 AND c2](StochRSI AS "Stochastic RSI")
Viewing 2 posts - 1 through 2 (of 2 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

Stoch pullback indicator


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by robertogozzirobertogozzi
3 years, 9 months ago.

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