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

CADXOnArray class is designed for calculation of ADX (Average Directional Movement Index) values on indicator buffers.

Usage:

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

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 aDataClose[] - the buffer with the Close data for the indicator calculation;
  • 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 aP[] - intermediate buffer for DI+;
  • double aM[] - intermediate buffer for DI-;
  • double aPDI[] - the buffer with the PDI calculated value;
  • double aMDI[] - the buffer with the MDI calculated value;
  • double aADXR[] - intermediate buffer for ADX calculation;
  • double aADX[] - the buffer with ADX calculated value.
Additional methods:
  • int BarsRequiredADX() - returns the minimum number of bars for ADX calculation;
  • int BarsRequiredPDIMDI() - returns the minimum number of bars for PDI and MDI calculation;
  • string Name() - returns the line with the indicator name;
  • string PDIName() - returns the line with the PDI line name;
  • string MDIName() - returns the line with the MDI line name.

Test_ADXOnArray.mq5 is a sample indicator showing CADXOnArray class application. IncADXOnArray 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.

Average Directional Movement Index Technical Indicator (ADX) helps to determine if there is a price trend. It was developed and described in detail by Welles Wilder in his book "New concepts in technical trading systems".

Example of use of CADXOnArray class

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

ReverseSymbol ReverseSymbol

The indicator allows to work with changing in real time and mirror reversed (1/X) trading instrument.

VGridLine Daily VGridLine Daily

Vertical time grid with one day step.

IncADXWOnArray IncADXWOnArray

CADXWOnArray class is designed for calculation of ADXW (Average Directional Movement Index Wilder, ADX Wilder) values on indicator buffers. The example of use of the class is provided.

SpreadCandlesCreator SpreadCandlesCreator

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