Watch how to download trading robots for free
Find us on Twitter!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Views:
5070
Rating:
(12)
Published:
2018.07.13 15:50
TTF.mq5 (9.64 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to 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.

Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/21268

TCF TCF

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

Self_Adjusting_RSI Self_Adjusting_RSI

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.

VC VC

Indicator VC (Volatility Channel by Larry Williams).

CMH CMH

Indicator CMH (Clear Method Histogram) displays a color histogram of the current market trend.