당사 팬 페이지에 가입하십시오
The class for drawing the ADX using the ring buffer - MetaTrader 5용 지표
- 조회수:
- 11906
- 평가:
- 게시됨:
- 2012.12.27 11:56
- 업데이트됨:
- 2016.11.22 07:32
- 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Description
The CADXOnRingBuffer class is designed for calculation of a technical indicator Average Directional Movement Index (Average Directional Movement Index, ADX) using the algorithm of the ring buffer.
Declaration
class CADXOnRingBuffer
Title
#include <IncOnRingBuffer\CADXOnRingBuffer.mqh>
File of the CADXOnRingBuffer.mqh class should be placed in the IncOnRingBuffer folder that need to be established in MQL5\Include\. Two files with the examples used by the class from this folder are attached to the description. File with the class of the ring buffer and the class of Moving Average also must be in this folder.
Class methods
//--- initialization method: bool Init( // if error it returns false, if successful - true int ma_period = 14, // period of Moving Average smoothing ENUM_MA_METHOD ma_method = MODE_EMA, // method of Moving Average smoothing int size_buffer = 256, // the size of the ring buffer, the number of stored data bool as_series = false // true, if a time series, false if the usual indexing of the input data );
//--- method of calculation based on a time series or indicator buffers: int MainOnArray( // returns the number of processed elements const int rates_total, // the size of the arrays const int prev_calculated, // processed elements on the previous call const double &high[] // the maximum value array const double &low[] // the minimum value array const double &close[] // close price array );
//--- method for calculation based on the separate series elements of the array double MainOnValue( // returns the ADX value for the set element const int rates_total, // the size of the array const int prev_calculated, // processed elements of the array const int begin, // from where the significant values of the array start const double high, // the maximum value const double low, // the minimum value const double close, // close price const int index // the element index );
//--- methods of access to the data: int BarsRequired(); // Returns necessary number of bars to draw the indicator string NameADX(); // Returns the name of the indicator string NameNDI(); // Returns the name of the negative directional movement indicator line string NamePDI(); // Returns the name of the positive directional movement indicator line string MAMethod(); // Returns the method of smoothing in the form of the text line int MAPeriod(); // Returns the period of smoothing int Size(); // Returns the size of the ring buffer
To get the calculated data of the indicator from the ring buffer is possible as from the usual array. For example:
#include <IncOnRingBuffer\CADXOnRingBuffer.mqh> CADXOnRingBuffer adx; ... //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int OnCalculate(const int rates_total, const int prev_calculated, const datetime& time[], const double& open[], const double& high[], const double& low[], const double& close[], const long& tick_volume[], const long& volume[], const int& spread[]) { //--- calculation of the indicator: adx.MainOnArray(rates_total,prev_calculated,high,low,close); ... //--- copy the data from the "adx" ring buffers to the indicator: for(int i=start;i<rates_total;i++) { ADX_Buffer[i]=adx[rates_total-1-i]; // average directional movement index PDI_Buffer[i]=adx.pdi[rates_total-1-i]; // positive directional index NDI_Buffer[i]=adx.ndi[rates_total-1-i]; // negative directional index } ... }
Please note that indexing in the ring buffer is the same as in the time series.
Examples
- The Test_ADX_OnArrayRB.mq5 file calculates the indicator on the basis of the price time series. The MainOnArray() method application is demonstrated
- The Test_ADX_OnValueRB.mq5 file demonstrates the use of the MainOnValue() method. At first the ADX indicator is calculated and drawn. Then on the basis of the ring buffer of this indicator, three lines of the ADX indicator are calculated.
The result of the work of the Test_ADX_OnArrayRB.mq5 with the size of the ring buffer of 256 elements When writing code the developments of MetaQuotes Software Corp., Integer and GODZILLA were used.
The result of the work of the Test_ADX_OnValueRB.mq5 with the size of the ring buffer of 256 elements
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/1343
The class is designed for calculation of the Average True Range indicator (Average True Range, ATR) using the algorithm of the ring buffer.
Exp_ColorTrend_CFThe Exp_ColorTrend_CF trading system is based on change of the trend direction displayed by the ColorTrend_CF indicator
The class is designed for calculation of a technical indicator Average Directional Movement Index Wilder (Average Directional Movement Index Wilder, ADX Wilder) using the algorithm of the ring buffer.
ClockThe indicator displays three variants of time in the chart: local, server and GMT!