Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
- Vues:
- 5719
- Note:
- Publié:
- 2018.07.13 15:50
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Oscillator TTF (Trend Trigger Factor) was developed as a method to identify market trends and reversals. It was described in the article by M.H. Pee Trend Trigger Factor in the Technical Analysis of Stocks and Commodities magazine in December, 2004.
It has three configurable parameters:
- Period - calculation period;
- Overbought - overbought level;
- Oversold - oversold level.
Calculations:
TTF = 200 *(Max+Min - MaxL-MinL) / (Max+MaxL - Min-MinL)
where:
- Max, Min - the highest and the lowest prices withing the Period+1
- MinL, MaxL - the highest and the lowest prices within the range from 2*Period+2 to Period+1.
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/21268

Oscillator TCF (Trend Continuation Factor) was developed to help identify the trend and direction of the market.

In pscillator Self-Adjusting RSI, we have implemented the methods of automated adjusting the RSI oscillator overbought/oversold levels, described in David Sepiashvili's article The Self-Adjusting RSI.