IncMAOnArray – library MetaTrader 5

CMAOnArray class is designed for Moving Average calculation on indicator buffer’s data.

Usage:

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

  • int aMAPeriod – MA period.
  • ENUM_MA_METHOD aMAMethod – МА calculation method.

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

  • const int aRatesTotal – rates_total variable from the OnCalculate() function parameters;
  • const int aPrevCalc – prev_calculated variable from the OnCalculate() function parameters;
  • double aData[] – buffer with the data, according to which MA is calculated;
  • double aMA[] Β – the buffer with calculated МА.
Additional methods:
  • int BarsRequired() – returns the minimal number of bars necessary for calculation;
  • string Name() – returns the line with the indicator name;
  • string NameMethod() – returns the line with the name of the used smoothing method.

Test_MAOnArray.mq5 is a sample indicator showing CMAOnArray class application. IncMAOnArray file must be located in MQL5\Include\IncOnArray of the terminal data folder (IncOnArray folder must be created).

Alternative:   IND - The Overall Percent Risk - MT4 - indicator MetaTrader 4

The Moving Average Technical Indicator shows the mean instrument price value for a certain period of time. When one calculates the moving average, one averages out the instrument price for this time period. As the price changes, its moving average either increases, or decreases.

Example of use of CMAOnArray class


πŸ“ˆ ROBOTFX MetaTrader Expert Advisors and Indicators to maximize profits and minimize the risks