//------------------------------------------------------------------
#property copyright «www.forex-tsd.cm»
#property link «www.forex-tsd.cm»
//------------------------------------------------------------------
#property indicator_chart_window
#property indicator_buffers 3
#property indicator_color1 LimeGreen
#property indicator_color2 DarkGray
#property indicator_color3 PaleVioletRed
#property indicator_style1 STYLE_DOT
#property indicator_style2 STYLE_DOT
#property indicator_style3 STYLE_DOT
//
//
//
//
//
extern bool HighLowVisible = false;
extern int Shift = 0;
double bandUp[];
double bandMi[];
double bandDn[];
//------------------------------------------------------------------
//
//------------------------------------------------------------------
//
//
//
//
//
int init()
{
int style = DRAW_LINE; if (!HighLowVisible) style = DRAW_NONE;
SetIndexBuffer(0,bandUp); SetIndexStyle(0,style);
SetIndexBuffer(1,bandMi);
SetIndexBuffer(2,bandDn); SetIndexStyle(2,style);
return(0);
}
int deinit()
{
return(0);
}