Stoch RSI declining

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #208382 quote
    marco7630marco7630
    Participant
    New

    Hello,

    Can you help me with following.

    I would to see all assets that fit the following criteria.

    1. The SMA20 (daily) is declining for at least 10 days in a row
    2. The Stoch RSI 14 was above 80 yesterday
    3. The stoch RSI 14 is below 60 today
    4. The price of the stock is above 5 usd
    5. The average daily volume of last 7 days is above 1 million

    Thanks

     

    Gr Marco

    #208538 quote
    JSJS
    Participant
    Master

    Hi Marco,

    Here is the screener…

    TimeFrame(Daily)
    S1=Average[20](Close)
    C1=Summation[10](S1<S1[1])=10
    lengthRSI = 14 //RSI period
    lengthStoch = 14 //Stochastic period
    myRSI = RSI[lengthRSI](close)
    MinRSI = lowest[lengthStoch](myrsi)
    MaxRSI = highest[lengthStoch](myrsi)
    StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100
    C2 = StochRSI[1] > 80
    C3 = StochRSI < 60
    C4 = Close > 5
    C5 = Average[7](Volume) > 1000000
    SCREENER[C1 and C2 and C3 and C4 and C5](Volume as "Volume")
    marco7630 and Nicolas thanked this post
    Scherm­afbeelding-2023-01-28-om-08.48.15.png Scherm­afbeelding-2023-01-28-om-08.48.15.png
    #208553 quote
    marco7630marco7630
    Participant
    New

    Hi,

    Thanks

    I get an error. See attachment.

     

    gr Marco

    2023-01-28_12-26-21.png 2023-01-28_12-26-21.png
    #208555 quote
    JSJS
    Participant
    Master

    Hi Marco,

    Something must have gone wrong with your “copy & paste”…

    Line 3 must be, according to the original screener…

    C1=Summation[10](S1<S1[1])=10

    marco7630 thanked this post
    #208560 quote
    robertogozzirobertogozzi
    Moderator
    Legend
    Click the button as shown in my pic, then press Ctrl+C to copy the code. Then you can paste it (Ctrl+V) in your platform and it should run flawlessly.
    marco7630 thanked this post
    x-5.jpg x-5.jpg
    #208590 quote
    marco7630marco7630
    Participant
    New
    Hi, What do i need to change to get the following: I would to see all assets that fit the following criteria.
    1. The SMA20 (daily) is increasing for at least 10 days in a row
    2. The Stoch RSI 14 was below 20 yesterday
    3. The stoch RSI 14 is above 40 today
    4. The price of the stock is above 5 usd
    5. The average daily volume of last 7 days is above 1 million
    Thanks a lot
    #208594 quote
    JSJS
    Participant
    Master

    Hi Marco,

    You can simply change the numbers in line 10 and 11…

    >80  < 20

    < 60  > 40

    #208605 quote
    marco7630marco7630
    Participant
    New
    Hi Js,   But then the SMA is still decreasing. In this case i need it to be increasing for at least 10 days in  a row.   gr Marco
    #208606 quote
    JSJS
    Participant
    Master
    Hi Marco, Adjust line 3 to: C1=Summation[10](S1>S1[1])=10 (Flip < to >)
    #209238 quote
    marco7630marco7630
    Participant
    New
    Hello, I would like to add the following to:
    1. The SMA20 (daily) is declining for at least 10 days in a row
    2. The Stoch RSI 14 was above 80 yesterday
    3. The stoch RSI 14 is below 60 today
    4. The price of the stock is above 5 usd
    5. The average daily volume of last 7 days is above 1 million
    number 6: The SMA20 daily of today needs to be at least 3% lower then the SMA20 10 days ago   Thanks   gr Marco
    #209274 quote
    JSJS
    Participant
    Master
    Hi Marco, Hereby the screener, time to learn some coding… 😉  
    TimeFrame(Daily)
    S1=Average[20](Close)
    C1=Summation[10](S1<S1[1])=10
    lengthRSI = 14 //RSI period
    lengthStoch = 14 //Stochastic period
    myRSI = RSI[lengthRSI](close)
    MinRSI = lowest[lengthStoch](myrsi)
    MaxRSI = highest[lengthStoch](myrsi)
    StochRSI = ((myRSI-MinRSI) / (MaxRSI-MinRSI))*100
    C2 = StochRSI[1] > 80
    C3 = StochRSI < 60
    C4 = Close > 5
    C5 = Average[7](Volume) > 1000000
    C6 = S1 < 0.97 * S1[10]
    SCREENER[C1 and C2 and C3 and C4 and C5 and C6](Volume as "Volume")
    
    Nicolas and marco7630 thanked this post
Viewing 11 posts - 1 through 11 (of 11 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 RSI declining


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 10 replies,
has 3 voices, and was last updated by JSJS
3 years, 7 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 01/26/2023
Status: Active
Attachments: 3 files
ProRealCode ProRealCode
Loading...