거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
3830
평가:
(28)
게시됨:
2011.12.19 17:27
업데이트됨:
2016.11.22 07:32
\MQL5\Include\IncOnArray\ \MQL5\Indicators\
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

CMACDOnArray class is designed for calculation of MACD (Moving Average Convergence/Divergence, MACD) 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;
  • int aSignalPeriod - signal line period;
  • ENUM_MA_METHOD aFastMethod - fast МА method;
  • ENUM_MA_METHOD aSlowMetod - slow МА method;
  • ENUM_MA_METHOD aSignalMethod - signal line 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 aData[] - the buffer with the data used for the indicator calculation;
  • double aFastMA[] - intermediate buffer for fast МА;
  • double aSlowMA[] -  intermediate buffer for slow МА;
  • double aMain[] - calculated value of MACD main line;
  • double aSignal[] - calculated value of MACD signal line.
 Additional methods:
  • int BarsRequiredSignal() - returns the minimum number of bars for the signal line calculation;
  • int BarsRequiredMain() - returns the minimum number of bars for the main line calculation;
  • string Name() - returns the line with the indicator name;
  • string NameMain() - returns the line with the indicator main line name;
  • string NameSignal() -  returns the line with the indicator signal line name;
  • string Names() - returns the line with МА names.

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

CMAOnArray class from the IncMAOnArray file is needed for the proper work. It can be found here.

Moving Average Convergence/Divergence (MACD) is the next trend-following dynamic indicator. It indicates the correlation between two Moving Averages of a price.

Example of use of CMACDOnArray class

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/627

VGridLine_Intraday X4 VGridLine_Intraday X4

Vertical time grid with four hours step.

SpreadCandlesCreator SpreadCandlesCreator

The indicator builds a candlestick chart consisting of floating spread current values in online mode.

VGridLine_Intraday X8 VGridLine_Intraday X8

Vertical time grid with eight hours step.

PriceAlert PriceAlert

The indicator displays the horizontal line that sets the signal actuating level.