Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Twitter ü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

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

Görüntülemeler:
3127
Derecelendirme:
(26)
Yayınlandı:
2011.12.26 10:48
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

CAMAOnArray class is designed for calculation of AMA (Adaptive Moving Average) values on indicator buffers.

Usage:

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

  • int aPeriod - efficiency ratio calculation period;
  • int aFastPeriod - EMA minimum period;
  • int aSlowPeriod - EMA maximum 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 aAMA[] - the buffer with AMA 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_AMAOnArray.mq5 - is a sample indicator showing CAMAOnArray class use. IncAMAOnArray file must be placed to MQL5\Include\IncOnArray of the terminal data folder (IncOnArray folder must be created).

Adaptive Moving Average (AMA) Technical Indicator is used for constructing a moving average with low sensitivity to price series noises and is characterized by the minimal lag for trend detection. This indicator was developed and described by Perry Kaufman in his book "Smarter Trading".

Example of use of CAMAOnArray class

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

TrendLineAlert TrendLineAlert

The indicator displays the inclined trend line that sets the signal actuating level.

XTrendlessOS (trendless oscillator) XTrendlessOS (trendless oscillator)

The indicator is based on the description given in Joe DiNapoli book "Trading with DiNapoli Levels". It is designed to evaluate the actual market overbought/oversold states.

Save history to HST Save history to HST

The script exports historical data to HST format for its use in MetaTrader 4 client terminal. This file can be imported in MetaTrader 4 as historical data or you can open it as offline chart.

Laguerre_HTF_Signal Laguerre_HTF_Signal

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