Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Telegram üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Kütüphaneler

IncCHOOnArray - MetaTrader 5 için kütüphane

Görüntülemeler:
2759
Derecelendirme:
(19)
Yayınlandı:
2012.01.12 13:06
Güncellendi:
2016.11.22 07:32
\MQL5\Include\IncOnArray\ \MQL5\Indicators\
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

CCHOOnArray class is designed for calculation of Chaikin Oscillator (CHO) values on indicator buffers.

Usage:

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

  • int aFastPeriod - fast МА period;
  • int aSlowPeriod - slow МА period;
  • ENUM_MA_METHOD aMethod - МА method.

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 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 aDataVolume[] - the buffer with the Volume data for the indicator calculation;
  • double & aTmpAD[] - intermediate auxiliary buffer;
  • double & aFastAD[] - auxiliary buffer for fast МА;
  • double & aSlowAD[] - auxiliary buffer for slow МА;
  • double & aCHO[] - buffer with the 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_CHOOnArray.mq5 is a sample indicator showing CCHOOnArray class application. IncCHOOnArray file must be placed to MQL5\Include\IncOnArray of the terminal data folder (IncOnArray folder must be created).

Chaikin's Oscillator (CHO) is the difference of moving averages of Accumulation/Distribution.

Example of CCHOOnArray class use

MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/670

Quartiles Quartiles

The indicator shows the first, second and third quartiles of the sample.

XMA-XN XMA-XN

The fan of hundred XMA moving averages with the possibility to change the number of lines on a chart and select a smoothing method out of ten possible versions.

ElderImpulseSystem_HTF_Signal ElderImpulseSystem_HTF_Signal

ElderImpulseSystem_HTF_Signal displays trend directions from the last bars of the ElderImpulseSystem as a sequence of graphical objects. The number of bars to be used is set in the input parameters.

sSyncScroll sSyncScroll

Script for the charts simultaneous scrolling.