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
Libraries

IncMomentumOnArray - library for MetaTrader 5

Views:
2752
Rating:
(23)
Published:
2012.01.10 15:21
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

CMomentumOnArray class is designed for calculation of Momentum values on indicator buffers.

Usage:

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

  • int aPeriod - indicator period.

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

  • const int aRatesTotal is a rates_total variable from the OnCalculate() function parameters;
  • const int aPrevCalc - prev_calculated variable from the OnCalculate() function;
  • double aData[] - data buffer for the indicator calculation;
  • double aMomentum[] - the buffer with the indicator calculated value.

Additional methods:

  • int BarsRequired() - returns the minimum number of bars for the indicator calculation;
  • int BarsRequiredPDIMDI() - returns the minimum number of bars for PDI and MDI calculation;
  • string Name() - returns the line with the indicator name.

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

The Momentum Technical Indicator measures the amount that a security's price has changed over a given time span. It can be used both as a trend-following and a leading indicator.

Example of use of the CMomentumOnArray class

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

The Binary Wave The Binary Wave

The Binary Wave returns a positive or a negative value depending on how the indicator readings are interpreted.

ASCtrend_HTF_Signal ASCtrend_HTF_Signal

ASCtrend_HTF_Signal shows a trend direction or a signal for performing a deal generated by ASCtrend indicator as a graphic object with colored trend indication or deal direction.

Parabolic_HTF_Signal Parabolic_HTF_Signal

Parabolic_HTF_Signal shows a trend direction or a signal for performing a deal generated by Color_Parabolic indicator at the chosen bar as a graphic object with colored trend indication or deal direction and sends alerts or audio signals in case of a market entry moment.

GMMA GMMA

Guppy Multiple Moving Average (GMMA) is an indicator based on the relationships between groups of moving averages providing insight into the behavior of two dominant market groups - traders and investors.