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

ZigZag on Parabolic + Fibo + Channel - MetaTrader 5용 지표

조회수:
24762
평가:
(43)
게시됨:
2011.11.29 14:35
업데이트됨:
2016.11.22 07:32
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Description:

This is an enhanced version of ZigZag based on the Parabolic SAR technical indicator with the added possibility to build Fibo levels on the last two indicator peaks and the channel generated with the use of three successive zigzag peaks with selection of these peaks.

ZigZag On Parabolic + Fibo + Channel

Indicator input parameters:

//+----------------------------------------------+ 
//| iSAR indicator input parameters              |
//+----------------------------------------------+ 
input double Step=0.02;          // SAR pitch
input double Maximum=0.2;        // SAR maximum
input bool ExtremumsShift=true;  // Extremum shift flag
//+----------------------------------------------+ 
//| Channel creation input parameters            |
//+----------------------------------------------+ 
input int FirstExtrNumb=1;                        // First extremum number (0,1,2,3...)
input color Upper_color=DarkViolet;               // Channel upper line color
input ENUM_LINE_STYLE Upper_style=STYLE_SOLID;      // Channel upper line style
input ENUM_WIDTH Upper_width=w_3;                // Channel upper line width
input color Middle_color=Blue;                    // 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=MediumVioletRed;          // Channel lower line color
input ENUM_LINE_STYLE Lower_style=STYLE_SOLID;      // Channel lower line style
input ENUM_WIDTH Lower_width=w_3;                // Channel lower line width
//+----------------------------------------------+ 
//| Fibo levels generation input parameters      |
//+----------------------------------------------+ 
//---- Fibo properties at the last extremum
input bool DynamicFiboFlag=true;                       // DynamicFibo display flag 
input color DynamicFibo_color=DeepPink;                // DynamicFibo color
input ENUM_LINE_STYLE DynamicFibo_style=STYLE_DASHDOTDOT; // DynamicFibo style
input ENUM_WIDTH DynamicFibo_width=w_1;               // DynamicFibo line width 
input bool DynamicFibo_AsRay=true;                     // DynamicFibo ray
//---- Fibo properties at the second-to-last extremum
input bool StaticFiboFlag=true;                        // StaticFibo display flag
input color StaticFibo_color=Teal;                     // StaticFibo color
input ENUM_LINE_STYLE StaticFibo_style=STYLE_DASH;       // StaticFibo style
input ENUM_WIDTH StaticFibo_width=w_1;                // StaticFibo line width
input bool StaticFibo_AsRay=false;                     // StaticFibo ray

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

JFatlSpeed HTF JFatlSpeed HTF

This indicator shows the direction of the acceleration of JFatlSpeed price from a larger timeframe at a smaller one.

Three-Pole Super Smoother Filter Three-Pole Super Smoother Filter

Three-pole super smoother filter from John Ehlers' book "Cybernetic Analysis for Stocks and Futures: Cutting-Edge DSP Technology to Improve Your Trading" is used in this indicator for moving average calculation.

Two-Pole Super Smoother Filter Two-Pole Super Smoother Filter

Two-pole super smoother filter from John Ehlers' book "Cybernetic Analysis for Stocks and Futures: Cutting-Edge DSP Technology to Improve Your Trading" is used in this indicator for moving average calculation.

JFatlAcceleration_HTF JFatlAcceleration_HTF

This indicator shows the direction of the acceleration of JFatlAcceleration price from a larger timeframe at a smaller one.