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

In this indicator the channel is built using three extreme points of ZigZag.

The indicator has two versions: with ZigZag indicator on a chart (ZigZag_NK_Channel2) and without (ZigZag_NK_Channel).

ZigZag NK Channel

Input parameters:

//+----------------------------------------------+ 
//| Indicator input parameters                   |
//+----------------------------------------------+ 
input int ExtDepth=12;
input int ExtDeviation=5;
input int ExtBackstep =3;
//+----------------------------------------------+ 
//| Channel creation input parameters            |
//+----------------------------------------------+ 
input int FirstExtrNumb=1;                          // First peak index number (0,1,2,3...)
input color Upper_color=DeepSkyBlue;                // Upper channel line color
input ENUM_LINE_STYLE Upper_style=STYLE_SOLID;       // Upper channel line style
input ENUM_WIDTH Upper_width=w_3;                  // Upper channel line width
input color Middle_color=Teal;                     // Middle line color
input ENUM_LINE_STYLE Middle_style=STYLE_DASHDOTDOT; // Middle line style
input ENUM_WIDTH Middle_width=w_1;                 // Middle line width
input color Lower_color=Magenta;                   // Lower channel line color
input ENUM_LINE_STYLE Lower_style=STYLE_SOLID;      // Lower channel line style
input ENUM_WIDTH Lower_width=w_3;                 // Lower channel line width

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

Stochastic RSI Stochastic RSI

Stochastic RSI is a standard Stochastic oscillator, the values of which are calculated not from a price series but from RSI technical indicator values.

Smoothed Adaptive Momentum Smoothed Adaptive Momentum

Adaptive Momentum from John Ehlers' book "Cybernetic Analysis for Stocks and Futures: Cutting-Edge DSP Technology to Improve Your Trading".

TwoPoleButterworthFilter TwoPoleButterworthFilter

Two pole Butterworth filter is used for smoothing in this moving average calculation algorithm.

Sine Wave Sine Wave

The indicator acts in a fully opposite way comparing to the adaptive moving averages during a trend market: in case of a definite trend, both indicator lines (Lead Sine and Sine Wave) move parallel to each other and show the trend direction by their location relative to each other; in case of a flat, the Sine Wave indicator quickly reacts on the market swing movements.