Understanding the ZigZag NK Channel Indicator
The ZigZag NK Channel indicator is a powerful tool designed to help traders visualize market trends by constructing a channel based on three extreme points identified by the ZigZag pattern. This can be an invaluable asset in your trading toolkit, allowing for better decision-making.
Two Versions to Suit Your Style
There are two versions of this indicator available: one that displays the ZigZag indicator directly on your chart (known as ZigZag_NK_Channel2) and another that does not show the ZigZag lines (ZigZag_NK_Channel). Depending on your trading preferences, you can choose the one that best fits your strategy.

Input Parameters
Here are the key input parameters you can customize:
//+----------------------------------------------+ //| Indicator input parameters |//+----------------------------------------------+ inputint ExtDepth=12; inputint ExtDeviation=5; inputint ExtBackstep =3; //+----------------------------------------------+ //| Channel creation input parameters |//+----------------------------------------------+ inputint FirstExtrNumb=1; // First peak index number (0,1,2,3...)inputcolor Upper_color=DeepSkyBlue; // Upper channel line colorinputENUM_LINE_STYLE Upper_style=STYLE_SOLID; // Upper channel line styleinput ENUM_WIDTH Upper_width=w_3; // Upper channel line widthinputcolor Middle_color=Teal; // Middle line colorinputENUM_LINE_STYLE Middle_style=STYLE_DASHDOTDOT; // Middle line styleinput ENUM_WIDTH Middle_width=w_1; // Middle line widthinputcolor Lower_color=Magenta; // Lower channel line colorinputENUM_LINE_STYLE Lower_style=STYLE_SOLID; // Lower channel line styleinput ENUM_WIDTH Lower_width=w_3; // Lower channel line width

Comments 0