거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

The class for drawing the Stochastic using the ring buffer - MetaTrader 5용 지표

조회수:
6459
평가:
(21)
게시됨:
2013.01.07 15:45
업데이트됨:
2016.11.22 07:32
\MQL5\Include\IncOnRingBuffer\ \MQL5\Indicators\IncOnRingBuffer\
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Description

The CStochasticOnRingBuffer class is designed for calculation of the technical indicator Stochastic Oscillator (Stochastic Oscillator) using the algorithm of the ring buffer

Declaration

class CStochasticOnRingBuffer

Title

#include <IncOnRingBuffer\CStochacticOnRingBuffer.mqh>

File of the CStochasticOnRingBuffer.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            period_k    = 5,         // the period %K
   int            period_d    = 3,         // the period %D
   int            period_s    = 3,         // the period of slowing %K
   ENUM_MA_METHOD method      = MODE_SMA,  // the method %D
   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 a 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
   );
//--- the method of calculation based on the separate series elements of the array           
double MainOnValue(               // returns the Stochastic value for the set element
   const int    rates_total,      // the size of the element
   const int    prev_calculated,  // processed elements of the array
   const int    begin,            // from where the significant data of the array starts
   const double high,             // the maximum value 
   const double low,              // the minimum value 
   const double close,            // close price 
   const int    index             // the element index
   );
//--- the methods of access to the data:
int    BarsRequired();   // Returns the necessary number of bars to draw the indicator
string Name();           // Returns the name of the indicator
string NameSignal();     // Returns the name of the signal line indicator
string Method();         // Returns the method of smoothing in the form of the text line
int    PeriodK()         // Returns the period of %K
int    PeriodS()         // Returns the period of slowing %K
int    PeriodD()         // Returns the period of %D
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:

//--- the class with the methods of calculation the Stochastic indicator:
#include <IncOnRingBuffer\CStochasticOnRingBuffer.mqh>
CStochasticOnRingBuffer st;

...

//+------------------------------------------------------------------+
//| 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 based on the price time series:
   st.MainOnArray(rates_total,prev_calculated,high,low,close);

...

//--- use the data from the ring buffers "st",
//    for example, copy the data in the indicator buffers:
   for(int i=start;i<rates_total && !IsStopped();i++)
     {
      MainBuffer[i]   = st[rates_total-1-i];        // the main line of the indicator
      SignalBuffer[i] = st.signal[rates_total-1-i]; // the signal line of the indicator
     }

...

//--- return value of prev_calculated for next call:
   return(rates_total);
  }

Please note that indexing in the ring buffer is the same as in the time series.

Examples

  1. The Test_Stochastic_OnArrayRB.mq5 file calculates the indicator based on the price time series. The MainOnArray() method application is demonstrated
  2. The Test_Stochastic_OnValueRB.mq5 file demonstrates the use of the MainOnValue() method. At first the Stochastic Oscilator indicator is calculated and drawn. Then on the basis of the ring buffer two more Stochastic Oscilator lines are drawn. 


The result of the work of the Test_Stochastic_OnArrayRB.mq5 with the size of the ring buffer of 256 elements



The result of the work of the Test_Stochastic_OnValueRB.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.

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

The class for drawing the OsCD using the ring buffer The class for drawing the OsCD using the ring buffer

The class is designed for calculation of the technical indicator Moving Average of Oscillator (Moving Average of Oscillator, OsMA) using the algorithm of the ring buffer.

Exp_VininI_Trend Exp_VininI_Trend

The Exp_VininI_Trend trading system is based on change of the trend direction displayed by the VininI_Trend indicator.

ytg_Japan_Candles ytg_Japan_Candles

The indicator of the candlesticks combinations (Japanese candlesticks)

Exp_VininI_Trend_LRMA Exp_VininI_Trend_LRMA

The Exp_VininI_Trend_LRMA trading system is based on changes of the trend direction displayed by the VininI_Trend_LRMA indicator.