Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
TMACD - indicateur pour MetaTrader 5
- Vues:
- 6920
- Note:
- Publié:
- 2018.12.18 19:09
- Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Triangular Moving Average Convergence/Divergence oscillator - MACD based on TriMA.
It has four inputs:
- Fast TriMA period - fast TriMA period
- Slow TriMA period - slow TriMA period
- Signal period - signal line period
- Applied price
Calculation:
TMACD = SMA(FastMA, PeriodFast) - SMA(SlowMA, PeriodSlow))
Signal = SMA(TMACD, Signal period)
where:
FastMA = SMA(Applied price, PeriodFast)
SlowMA = SMA(Applied price, PeriodSlow)
PeriodFast = Floor(Fast TriMA period/2)+1
PeriodSlow = Floor(Slow TriMA period/2)+1
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/22612