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
- Vues:
- 3047
- Note:
- Publié:
- 2018.06.16 11:00
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Indicator Mass Index is used to search for trend reversals. It is based on the changes between the highest and the lowest prices. If the bandwidth becomes wider, the mass index will grow; if it narrows, then the mass index will decrease.
It has four input parameters:
- First smoothing period - the initial smoothin period;
- Second smoothing period - the secondary smoothing period;
- Resulting smoothing period - the resulting smoothing period;
- Method - calculation method.
Calculations:
MI = SUM(EMA(HIGH - LOW, First Period) / EMA(EMA(HIGH - LOW, First Period), Second Period), Resulting Period)
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/20699