Sto DMI

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #44786 quote
    Plscap
    Participant
    Veteran

    Bonjour à tous,

    Est ce que par hasard l’un d’entre vous aurais la possibilité de convertir ce code repiqué sur tradingview, pour PRT?

    Merci beaucoup

    study(title="StohDMI", shorttitle="StohDMI", overlay=false)
    
    wwma(l,p) =>
        wwma = (nz(wwma[1]) * (l - 1) + p) / l
    
    DMIlength = input(10, title = "Длина DMI")
    Stolength = input(6, title = "Длина DMI Stochastic")
    os = input (10, title = "Перепроданность")
    ob = input (90, title = "Перекупленность")
    
    hiDiff = high - high[1]
    loDiff = low[1] - low
    
    plusDM = (hiDiff > loDiff) and (hiDiff > 0) ? hiDiff : 0
    minusDM = (loDiff > hiDiff) and (loDiff > 0) ? loDiff : 0
    
    ATR = wwma(DMIlength, tr)
    
    PlusDI = 100 * wwma(DMIlength,plusDM) / ATR
    MinusDI = 100 * wwma(DMIlength,minusDM) / ATR
    
    osc = PlusDI - MinusDI
    
    hi = highest(osc, Stolength)
    lo = lowest(osc, Stolength)
    
    Stoch = sum((osc-lo),Stolength) / sum((hi-lo),Stolength) *100
    plot(Stoch, color = black, title = 'Stochastic', linewidth = 2, style = line)
    
    crossUp = Stoch[1] < os and Stoch > os ? 1 : 0
    crossDo = Stoch[1] > ob and Stoch < ob ? 1 : 0
    
    plot (ob, color = gray, linewidth = 1, title = 'Купить')
    plot (os, color = gray, linewidth = 1, title = 'Продать')
    
    plotchar(crossUp, title="Вверх", char='⇑', location=location.bottom, color=green, transp=0)
    plotchar(crossDo, title="Вниз",char='⇓', location=location.top, color=red, transp=0)
    
    line2 = hline(90, linestyle=dotted, color=black)
    line1 = hline(45, color=black)
    line0 = hline(10, linestyle=dotted, color=black)
    fill(line2, line0)
    Capture-d’écran-2017-08-28-à-23.29.32.png Capture-d’écran-2017-08-28-à-23.29.32.png
    #44919 quote
    Nicolas
    Keymaster
    Master

    Ok donc il s’agit de la stochastique d’un indicateur DMI .. (Directional Movement Index). Si c’est vraiment utile pourquoi pas 😉

    #45459 quote
    Plscap
    Participant
    Veteran

    Bonjour Nicolas et merci pour ton retour,

    Bon en effet ce n’est pas vraiment utile que ça, donc pas la peine à mon sens de se lancer la dedans, je pense

    que ça ne servira pas à la communauté 🙂

    Petite parenthèse, j’ai fait un post hier pour le Semafor, mais je ne retrouve pas ce post, est ce qu’il aurait été supprimé?

    Je te remercie 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

Sto DMI


ProBuilder : Indicateurs & Outils Personnalisés

New Reply
Author
author-avatar
Plscap @flodefacebook Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by Plscap
8 years, 6 months ago.

Topic Details
Forum: ProBuilder : Indicateurs & Outils Personnalisés
Language: French
Started: 08/28/2017
Status: Active
Attachments: 1 files
Logo Logo
Loading...