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

Stochastic-X8 - MetaTrader 5용 지표

게시자:
Nikolay Kositsin
조회수:
9766
평가:
(20)
게시됨:
2012.01.09 12:58
업데이트됨:
2016.11.22 07:32
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Real author:

lukas1

The indicator draws a grid of eight stochastic oscillators on one chart. Indicator parameters are calculated by consequent multiplying of the first stochastic parameters by "koef" ratio implemented in the indicator input parameters. Each line parameters are displayed in tooltips.

Second (signal) stochastic lines are not displayed in the indicator, but the visibility of the indicator is not affected - on the contrary, display of the entire grid has been improved.

Indicator buffers are declared using the simplest class for the code optimization:

//+------------------------------------------------------------------+
//|  Variables arrays for the indicator buffers creation             |
//+------------------------------------------------------------------+  
class CIndicatorsBuffers
  {
public: double    IndBuffer[];
  };
//+------------------------------------------------------------------+
//| Indicator buffers creation                                       |
//+------------------------------------------------------------------+
CIndicatorsBuffers Ind[LINES_TOTAL];

If you want to change the number of lines on the chart, you should only change the value of the LINES_TOTAL constant:

//+-----------------------------------+
//|  Declaration of constants         |
//+-----------------------------------+
#define LINES_TOTAL         8 // The constant for the number of the indicator lines

This indicator was first implemented in MQL4 and published in Code Base at mql4.com 12.03.2010.

Stochastic-X8


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

StepXCCX_HTF_Signal StepXCCX_HTF_Signal

StepXCCX_HTF_Signal displays trend directions from three last bars of the ColorStepXCCX indicator as three graphical objects with a trend color indication.

ToClearChart ToClearChart

The simple script for deleting all graphical objects from a financial asset chart. It can be useful, in case the chart is overcrowded by objects that are not needed anymore.

IncSAROnArray IncSAROnArray

CSAROnArray class is designed for calculation of SAR (Parabolic SAR) values on indicator buffers. The example of use of the CSAROnArray class is presented.

ASCtrend_HTF_Signal ASCtrend_HTF_Signal

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