Conversion DMI OScillator
- This topic has 6 replies, 3 voices, and was last updated 5 years ago by .
Viewing 7 posts - 1 through 7 (of 7 total)
Viewing 7 posts - 1 through 7 (of 7 total)
Similar topics:
Forums › ProRealTime forum Français › Support ProBuilder › Conversion DMI OScillator
Hello
Ci-joint code du DMI Oscillator vu sur Tradingview si il y a une bonne âme. Merci
Il est inspiré de cela: “The DMI Stochastic” by Barbara Star, PhD. Technical Analysis of Stocks & Commodities, January 2013.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
//DMI Oscillator // Wells Wilders MA wwma(l,p) => wwma = (nz(wwma[1]) * (l - 1) + p) / l // Inputs DMIlength = input(14) Avglength = input(2) // Calc 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 col = osc >= 0 ? #99EF0E : #FF0064 // Plots plot(osc,color=col, style=histogram, linewidth=2) plot(wwma(Avglength,osc), color=#0EAAEF,title="DI+") |
Pour les demandes de conversion de code d’autres plateformes de trading, merci de respecter les prérogatives de cette page la prochaine fois : Demande de conversion gratuite
Je m’y penche rapidement, dans la négative merci de me le rappeler vers la fin de semaine.
Il s’agit ni plus ni moins d’un stochastique appliqué au DMI selon cette description:
Le stochastique DMI utilise la formulation de base pour un oscillateur stochastique 10, 3, 3 trouvé dans la plupart des progiciels de trading, mais remplace le prix de clôture de la barre des prix par la valeur de l’oscillateur DMI à 10 périodes.
Donc rapidement on pourrait tester:
1 2 3 4 |
osc = stochastic[10,3](di[10]) avg = average[3](osc) return osc style(histogram),avg style(line,2) |
(non testé)
A more complete and colorful version is now available here: DMI Stochastic Oscillator
I have entirely recoded the indicator with the help of a tradingview/pinescript code, and updated the library version: DMI Stochastic Oscillator
Find exclusive trading pro-tools on