Revise Rail Road Track Screener?

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #249774 quote
    IAmShareCrazyIAmShareCrazy
    Participant
    New

    How to remove the bollinger band part of the code? Thanks!

    Once PercBodyDiff=2//Max.2% body difference
    Once PercPriceDiff=2//Max.2% price difference

    c1=Open[1]BollingerUp[20][1]//Bullish
    c2=Open>BollingerUp[20] and CloseBollingerDown[20][1] and Close[1]<BollingerDown[20][1]//Bearish
    c4=OpenBollingerDown[20]//Bullish

    BodySize0=Abs(Close-Open)
    BodySize1=Abs(Close[1]-Open[1])

    c5=Abs((BodySize1-BodySize0)/BodySize1)*100<PercBodyDiff
    c6=Abs((Open-Close[1])/Close[1])*100<PercPriceDiff

    Screener[(c1 and c2 and c5 and c6) or (c3 and c4 and c5 and c6)]

    #249775 quote
    IAmShareCrazyIAmShareCrazy
    Participant
    New

    Once PercBodyDiff=2//Max.2% body difference
    Once PercPriceDiff=2//Max.2% price difference

    c1=Open[1]BollingerUp[20][1]//Bullish
    c2=Open>BollingerUp[20] and CloseBollingerDown[20][1] and Close[1]<BollingerDown[20][1]//Bearish
    c4=OpenBollingerDown[20]//Bullish

    BodySize0=Abs(Close-Open)
    BodySize1=Abs(Close[1]-Open[1])

    c5=Abs((BodySize1-BodySize0)/BodySize1)*100<PercBodyDiff
    c6=Abs((Open-Close[1])/Close[1])*100<PercPriceDiff

    Screener[(c1 and c2 and c5 and c6) or (c3 and c4 and c5 and c6)]

    #249776 quote
    JSJS
    Participant
    Master

    There are errors in the BB-conditions (c1 and c2), several “>” and “<” are missing…

    If you don’t want the two BB-conditions to work in your code, you can put a comment(out) mark (//) in front of it, and you should also remove the two conditions from your Screener[…]:

    // c1=Open[1]<BollingerUp[20][1]…

    // c2=Open>BollingerUp[20]…

    Screener[c1 and c2 …]  (remove c1 and c2)

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

Revise Rail Road Track Screener?


ProScreener: Market Scanners & Detection

New Reply
Author
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by JSJS
1 year, 1 month ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 08/15/2025
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...