#property copyright "autoforex" #property link "http://www.autoforex.ru" #property indicator_chart_window #property indicator_buffers 1 #property indicator_color1 Red #property indicator_width1 2 #property indicator_style1 0 double Buffer1[]; int init() { SetIndexBuffer(0,Buffer1); SetIndexStyle(0,DRAW_LINE); return(0); } int start() { Buffer1[0]=High[9]; Buffer1[1]=High[1]; Buffer1[2]=High[2]; Buffer1[3]=High[3]; Buffer1[4]=High[4]; Buffer1[5]=High[5]; Buffer1[6]=High[6]; Buffer1[7]=High[7]; Buffer1[8]=High[0]; {Comment("показ ценового канала=",Buffer1[8]);} return(0); }