Indicatore Sideways Bollinger

Forums ProRealTime forum Italiano Supporto ProScreener Indicatore Sideways Bollinger

  • This topic has 1 reply, 2 voices, and was last updated 1 week ago by avatarJS.
Viewing 2 posts - 1 through 2 (of 2 total)
  • #248005

    Buongiorno , chiedo gentilmente se si può avere uno scrinner da questo indicatore.

    Grazie

    //PRC_Sideways indicator (Bollinger Momentum)
    //version = 0
    //02.05.24
    //Iván González @ http://www.prorealcode.com
    //Sharing ProRealTime knowledge
    //—————————————————-//
    //—–Inputs—————————————–//
    MALength = 40
    //—————————————————-//
    //—–Bollinger bands calcultation——————-//
    BolUpper = BollingerUp[MALength](close)
    BolLower = BollingerDown[MALength](close)
    //—————————————————-//
    //—–Momentum calculation—————————//
    Moment = BolUpper – BolLower
    //—————————————————-//
    //—–Simple Moving average (momentum)—————//
    MomentLine = Average[MALength](Moment)
    //—————————————————-//
    //—–Histogram Colour definition——————–//
    if Moment >= MomentLine then
    r=0
    g=255
    else
    r=255
    g=0
    endif
    //—————————————————-//
    return Moment As “Momento” coloured(r,g,0)style(histogram), MomentLine as “Avg Momento” coloured(“purple”)style(line,2)

    #248006
    JS

    Ciao,
    Questo “screener” verifica se il “Moment” supera o scende al di sotto della “MomentLine” media…
    Se vuoi considerare solo una rottura positiva, devi modificare lo “screener” in: Screener[C1]

    2 users thanked author for this post.
Viewing 2 posts - 1 through 2 (of 2 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login