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:
- 3959
- Note:
- Publié:
- 2018.07.09 13:47
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Indicator TII (Trend Intensity Index) was described in the article by M.H. Pee, published in the "Stocks and Commodities" magazine in June, 2002.
It has six input parameters:
- Period - calculation period;
- MA Period - MA calculation period;
- MA Method - Moving Average calculation method;
- Applied price - the calculation price;
- Overbought - overbought level;
- Oversold - oversold level.
Calculation:
TII = 100 * (POS) / (POS +NEG)
where:
POS = SMA(UP, Period) NEG = SMA(DN, Period) UP = Price - MA DN = MA - Price
MA = MA(MA Period, MA Method, Applied price)
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/21113