Conversion Cumulative Delta

Forums ProRealTime forum Français Support ProBuilder Conversion Cumulative Delta

Viewing 4 posts - 1 through 4 (of 4 total)
  • #196406

    Bonsoir, quelqu’un peut-il convertir cet indicateur svp? Merci

     

    //@version=1
    study(“Monster Cumulative Delta”,overlay=false)

    U1 = iff(close>=open and (close-open+2*(high-close)+2*(open-low))>0, volume*(high-low)/(close-open+2*(high-close)+2*(open-low)),0.0)
    D1 = iff(close<open and (open-close+2*(high-open)+2*(close-low))>0, volume*(high-low)/(open-close+2*(high-open)+2*(close-low)),0.0)
    Delta = iff(close>=open, U1, -D1)

    cumDelta=nz(cumDelta[1])+Delta

    hi=close>=open ? cumDelta : nz(cumDelta[1])
    lo=close<=open ? cumDelta : nz(cumDelta[1])

    //plot(cumDelta, color=white, style=line, linewidth=3, transp=100)
    plotcandle(cumDelta[1], hi, lo, cumDelta, title=’Cumulative Delta’, color = Delta >= 0 ? lime : red)

    1 user thanked author for this post.
    #196429

    Cet indicateur Volume Cumulative Delta a été converti, vous pouvez le télécharger ici : Monster Cumulative Delta

    2 users thanked author for this post.
    #196435

    Merci Cher Nicolas, pourtant j’avais essayé de chercher. Merci encore et bonne journée !

    #196437

    Je viens juste de le faire suite à ta demande.

    1 user thanked author for this post.
Viewing 4 posts - 1 through 4 (of 4 total)

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