Touch the bolinger band against trend

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

    Hello,

    I would like to see all assets that meet the following requirements:

    • The SMA20 daily needs to be in a downtrend for at least 20 days
    • The average daily volume is above 500k
    • Yesterday closing price was above 5 usd
    • Yesterdays price candle touches/crosses the Bolinger (20, 2) band on the upside

    Thanks

    Gr Marco

    #211061 quote
    JSJS
    Participant
    Master

    Hi Marco,

    If I may make a suggestion…

    Use current Price > 5

    Use current price >= BBUp

    Because when the average must be 20 days in a down trend it is very unlikely that yesterday’s price will be greater or equal than BBUp…

    If you do not want this, you can use the following:

    C3=Close[1] > 5

    C4=Close[1] >= BBUp[1]

    TimeFrame(Daily)
    
    S1=Average[20](Close)
    xMean=Average[20](Close)
    xStd=Std[20](Close)
    BBUp=xMean+2*xStd
    
    C1=Summation[20](S1<S1[1])=20
    C2=Volume>500000
    C3=Close>5
    C4=Close >= BBUp
    
    Screener[C1 and C2 and C3 and C4](Volume as "Volume")
    Scherm­afbeelding-2023-03-07-om-22.07.14.png Scherm­afbeelding-2023-03-07-om-22.07.14.png
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

Touch the bolinger band against trend


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 JSJS
3 years, 6 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 03/07/2023
Status: Active
Attachments: 1 files
ProRealCode ProRealCode
Loading...