Conversion indics tradingview

Forums ProRealTime forum Français Support ProBuilder Conversion indics tradingview

Viewing 10 posts - 1 through 10 (of 10 total)
  • #33576

    bonjour Nicolas,

    pourrai-tu convertir pour la plateforme realtime les indicateurs suivants issus de la plateforme tradingview, qui pourraient fonctionner ensemble, ou dans d’autres stratégies…

    – Scalping Swing Trading Tool R1-4 by JustUNcle
    – Ersoy-Kesisme
    – CM_Williams_Vix_Fix_V3_Ultimate_Filtered_ALerts
    – Ehlers Center Of Gravity Oscillator [LazyBear]

    Cela viendrait enrichir notre bibliothèque…

    En pj, les codes correspondant….

    Merci pour ton retour….

     

     

    #33586

    Merci de donner les liens pour avoir le syntax highlights du Pinescript, car dans ton PDF c’est imbuvable !

    Des screenshots également pour chaque indicateur, ça aide énormément.

    #33587

    Bonjour à tous, bonjour à toi Nicolas,

    Voici une capture et le code Pinescript de l’indicateur ScalpSwing

     

    #33590

    Voici maintenant l’indicateur Ersoy

     

    #33593

    Voici l’indicateur CM-Williams

     

    #33596

    et pour finir l’indicateur Elhers COG

     

    1 user thanked author for this post.
    #33663

    et bien merci flodefacebook.

    pour le CM Williams VIX FIX, c’est fait je pense, tu le trouveras ici : CM Williams VIX FIX

    le Ehlers COG, il est là déjà : Ehlers Center of Gravity

    Pour le premier, il y a du level (comme dirait mes enfants), je vais regarder.

    Pour l’indicateur Ersoy, c’est tout simplement un croisement du Close avec une moyenne mobile 21 périodes, vous êtes certain d’en avoir besoin ?? 🙂

    1 user thanked author for this post.
    #33682

    Bonjour Nicolas,

    Merci pour les indicateurs, c’est parfaitement ça.

    En ce qui concerne le premier indicateur (avec du level comme tu dis), je pense qu’on peut faire sans les pivots / HH/ LL…

    et donc que ce ne soit qu’un indicateur avec les moyennes. La difficulté viendra peut-être (je ne sais pas) du changement de couleurs des EMA.

    Pour l’indicateur Ersoy, est ce qu’on pourrait avoir l’indicateur malgré tout? :/

    Désolé d’abuser de ta bonté. En tout cas merci pour tout

    #119549

    Salut, pourriez-vous convertir cet indicateur tradinvienw en code prorealtime?
    //@version=4
    study(title=”Divergence Indicator”, format=format.price)

    len = input(title=”RSI Period”, minval=1, defval=14)
    src = input(title=”RSI Source”, defval=close)
    lbR = input(title=”Pivot Lookback Right”, defval=5)
    lbL = input(title=”Pivot Lookback Left”, defval=5)
    rangeUpper = input(title=”Max of Lookback Range”, defval=60)
    rangeLower = input(title=”Min of Lookback Range”, defval=5)
    plotBull = input(title=”Plot Bullish”, defval=true)
    plotHiddenBull = input(title=”Plot Hidden Bullish”, defval=false)
    plotBear = input(title=”Plot Bearish”, defval=true)
    plotHiddenBear = input(title=”Plot Hidden Bearish”, defval=false)

    bearColor = color.red
    bullColor = color.green
    hiddenBullColor = color.new(color.green, 80)
    hiddenBearColor = color.new(color.red, 80)
    textColor = color.white
    noneColor = color.new(color.white, 100)

    osc = rsi(src, len)

    plot(osc, title=”RSI”, linewidth=2, color=#8D1699)
    hline(50, title=”Middle Line”, linestyle=hline.style_dotted)
    obLevel = hline(70, title=”Overbought”, linestyle=hline.style_dotted)
    osLevel = hline(30, title=”Oversold”, linestyle=hline.style_dotted)
    fill(obLevel, osLevel, title=”Background”, color=#9915FF, transp=90)

    plFound = na(pivotlow(osc, lbL, lbR)) ? false : true
    phFound = na(pivothigh(osc, lbL, lbR)) ? false : true

    _inRange(cond) =>
    bars = barssince(cond == true)
    rangeLower <= bars and bars <= rangeUpper //—————————————————————————— // Regular Bullish // Osc: Higher Low oscHL = osc[lbR] > valuewhen(plFound, osc[lbR], 1) and _inRange(plFound[1])

    // Price: Lower Low
    priceLL = low[lbR] < valuewhen(plFound, low[lbR], 1)

    bullCond = plotBull and priceLL and oscHL and plFound

    plot(
    plFound ? osc[lbR] : na,
    offset=-lbR,
    title=”Regular Bullish”,
    linewidth=2,
    color=(bullCond ? bullColor : noneColor),
    transp=0
    )

    plotshape(
    bullCond ? osc[lbR] : na,
    offset=-lbR,
    title=”Regular Bullish Label”,
    text=” Bull “,
    style=shape.labelup,
    location=location.absolute,
    color=bullColor,
    textcolor=textColor,
    transp=0
    )

    //——————————————————————————
    // Hidden Bullish

    // Osc: Lower Low
    oscLL = osc[lbR] < valuewhen(plFound, osc[lbR], 1) and _inRange(plFound[1]) // Price: Higher Low priceHL = low[lbR] > valuewhen(plFound, low[lbR], 1)

    hiddenBullCond = plotHiddenBull and priceHL and oscLL and plFound

    plot(
    plFound ? osc[lbR] : na,
    offset=-lbR,
    title=”Hidden Bullish”,
    linewidth=2,
    color=(hiddenBullCond ? hiddenBullColor : noneColor),
    transp=0
    )

    plotshape(
    hiddenBullCond ? osc[lbR] : na,
    offset=-lbR,
    title=”Hidden Bullish Label”,
    text=” H Bull “,
    style=shape.labelup,
    location=location.absolute,
    color=bullColor,
    textcolor=textColor,
    transp=0
    )

    //——————————————————————————
    // Regular Bearish

    // Osc: Lower High
    oscLH = osc[lbR] < valuewhen(phFound, osc[lbR], 1) and _inRange(phFound[1]) // Price: Higher High priceHH = high[lbR] > valuewhen(phFound, high[lbR], 1)

    bearCond = plotBear and priceHH and oscLH and phFound

    plot(
    phFound ? osc[lbR] : na,
    offset=-lbR,
    title=”Regular Bearish”,
    linewidth=2,
    color=(bearCond ? bearColor : noneColor),
    transp=0
    )

    plotshape(
    bearCond ? osc[lbR] : na,
    offset=-lbR,
    title=”Regular Bearish Label”,
    text=” Bear “,
    style=shape.labeldown,
    location=location.absolute,
    color=bearColor,
    textcolor=textColor,
    transp=0
    )

    //——————————————————————————
    // Hidden Bearish

    // Osc: Higher High
    oscHH = osc[lbR] > valuewhen(phFound, osc[lbR], 1) and _inRange(phFound[1])

    // Price: Lower High
    priceLH = high[lbR] < valuewhen(phFound, high[lbR], 1)

    hiddenBearCond = plotHiddenBear and priceLH and oscHH and phFound

    plot(
    phFound ? osc[lbR] : na,
    offset=-lbR,
    title=”Hidden Bearish”,
    linewidth=2,
    color=(hiddenBearCond ? hiddenBearColor : noneColor),
    transp=0
    )

    plotshape(
    hiddenBearCond ? osc[lbR] : na,
    offset=-lbR,
    title=”Hidden Bearish Label”,
    text=” H Bear “,
    style=shape.labeldown,
    location=location.absolute,
    color=bearColor,
    textcolor=textColor,
    transp=0
    )

    Divergence Indicator

    #119550

    @quini999

    Merci d’utiliser le formulaire et de respecter les règles pour la demande de conversion: Demande de conversion de code pour Prorealtime

Viewing 10 posts - 1 through 10 (of 10 total)

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