Watch how to download trading robots for free
Find us on Telegram!
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:
3284
Rating:
(18)
Published:
2011.12.14 13:34
Updated:
2017.09.06 10:02
\MQL5\Include\IncOnArray\ \MQL5\Indicators\
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

CATROnArray is designed for calculation of ATR (Average True Range) values on indicator buffers.

Usage:

Init() method with the following parameters is called in the OnInit() indicator function:

  • int aPeriod - indicator period.
  • ENUM_MA_METHOD aMethod - smoothing method.

Solve() method with the following parameters is called in the OnCalculate() indicator function:

  • const int aRatesTotal is a rates_total variable from the OnCalculate() function parameters;
  • const int aPrevCalc - prev_calculated variable from the OnCalculate() function parameters;
  • double aDataHigh[] - the buffer with the High data for the indicator calculation;
  • double aDataLow[] - the buffer with the Low data for the indicator calculation;
  • double aDataClose[] - the buffer with the Close data for the indicator calculation;
  • double aTR[] - intermediate buffer;
  • double aATR[] - the buffer with the calculated indicator.
 Additional methods: 
  • int BarsRequired() - returns the minimum number of bars necessary for the calculation;
  • string Name() - returns the line with the indicator name.

Test_ATROnArray.mq5 is a sample indicator showing CATROnArray class application. IncATROnArray file must be placed to MQL5\Include\IncOnArray of the terminal data folder (IncOnArray folder must be created).

Instead of three different source data buffers transferred to Solve method (aDataHigh[], aDataLow[] and aDataClose[] parameters) only one buffer may be transferred, i.e., the indicator can be calculated according to the data of any other indicator.

CMAOnArray class from the IncMAOnArray.mqh is needed for the proper work. It can be found here.

Average True Range Technical Indicator (ATR) is an indicator that shows volatility of the market. It was introduced by Welles Wilder in his book "New concepts in technical trading systems". This indicator has been used as a component of numerous other indicators and trading systems ever since.

Example of use of CATROnArray class

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

VGridLine Weekly VGridLine Weekly

Vertical time grid with one week step.

Multi RSI Multi RSI

Eight RSI (Relative Strength Index) technical indicators in one chart.

VGridLine Daily VGridLine Daily

Vertical time grid with one day step.

ReverseSymbol ReverseSymbol

The indicator allows to work with changing in real time and mirror reversed (1/X) trading instrument.