Guarda come scaricare robot di trading gratuitamente
Ci trovi su Facebook!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Visualizzazioni:
2744
Valutazioni:
(29)
Pubblicato:
2012.01.05 13:17
Aggiornato:
2016.11.22 07:32
\MQL5\Include\IncOnArray\ \MQL5\Indicators\
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

CMOOnArray class is designed for calculation of CMO (Chande Momentum Oscillator) values on indicator buffers.

Usage:

Init() method with the following parameter 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 & aCMO[] - indicator calculated value.

Additional methods:

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

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

The Chande Momentum Oscillator (CMO) was developed by Tushar Chande and is a technical indicator that attempts to capture the Momentum. Chande discussed this and many other indicators in his book "The New Technical Trader: Boost Your Profit by Plugging into the Latest Indicators". Тhe range of CMO is from -1 to 1. The values +0.5 and -0.5 are assumed as ovebought and oversold states of the market.

Test_CMOOnArray - example of use of the CMOOnArray class

Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/635

GetFontName GetFontName

Function module for more convenient font selection display in the indicator input parameters. To free the indicator user from the necessity to manually enter a font name some changes to the code should be inserted.

XdinMA XdinMA

The moving average, calculated by using the simplest algebraic combination of two other moving averages with different periods. Smoothing algorithms can be selected out of ten possible versions.

X2MA_HTF_Signal X2MA_HTF_Signal

X2MA_HTF_Signal displays trend directions from three last bars of the X2MA indicator as three graphical objects, colors of which determine a trend direction.

SpreadInfo SpreadInfo

SpreadInfo displays current spread, its average value and their ratio in one of the chart corners.