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
Libraries

IncEnvelopesOnArray - library for MetaTrader 5

Views:
3194
Rating:
(22)
Published:
2012.01.19 13:41
Updated:
2016.11.22 07:32
\MQL5\Include\IncOnArray\ \MQL5\Indicators\
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

The CEnvelopesOnArray class is intended for calculation of Envelopes on an indicator buffer.

Usage:

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

  • int aPeriod is indicator period;
  • ENUM_MA_METHOD aMethodis a method of MA calculation;
  • double aDeviation is a width of bands.

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

  • const int aRatesTotal  is the rates_total variable from the OnCalculate() function;
  • const int aPrevCalc is the prev_calculated variable from the OnCalculate() function parameters;
  • double & aData[] is the buffer with data for the indicator calculation;
  • double & aMA[] is a calculated value of МА;
  • double & aUpper[] is a calculated value of the upper line;
  • double & aLower[] is a calculated value of the lower line.

Additional methods:

  • int BarsRequired() returns the minimum number of bars required for the indicator calculation;
  • string Name() returns a string with the indicator name;

The Test_EnvelopesOnArray.mq5 is an indicator demonstrating how to use the CEnvelopesOnArray class. The IncEnvelopesOnArray file must be located in the MQL5\Include\IncOnArray directory of the terminal data folder (the IncOnArray folder must be created). The CMAOnArray class for the IncMAOnArray file is required for this class for work.

Envelopes Technical Indicator is formed with two Moving Averages, one of which is shifted upward and another one is shifted downward. The selection of optimum relative number of band margins shifting is determined with the market volatility: the higher the latter is, the stronger the shift is.

IncEnvelopesOnArray

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

IncVHFOnArray IncVHFOnArray

CVHFOnArray class is designed for calculation of Vertical Horizontal Filter (VHF) values on indicator buffers.

ZigZag based on the fractals of a larger timeframe ZigZag based on the fractals of a larger timeframe

ZigZag based on the fractals of a larger timeframe considering VininI_FractalsTrend indicator data.

IncPriceChannelOnArray IncPriceChannelOnArray

The CPriceChannelOnArray class is intended for calculation of the price channel on indicator buffers.

IncTrixOnArray IncTrixOnArray

The CTrixOnArray class is intended for calculation of Triple Exponential Average (TRIX) on an indicator buffer.