#property copyright "Copyright © 2017" #property indicator_chart_window extern bool H4 = 1; extern int ObjH4 = 5; extern string Colors="Select Color & Drawing"; extern color BarsHigh = Green; extern color BarsLow = Red; extern int LineLable = 0; extern bool H4Position = 0; double H4h[], H4l[]; datetime H4ts[], H4te[]; int MaxObj=0; // Maximum Objects int init() {ArrayResize(H4h,ObjH4+1); ArrayResize(H4l,ObjH4+1); ArrayResize(H4ts,ObjH4+1); ArrayResize(H4te,ObjH4+1); if (ObjH4+1 > MaxObj) MaxObj=ObjH4+1; return(0);} int deinit(){rLines(MaxObj+1); Comment(""); return(0);} // ---- Main function call ---------------------------------------------------- int start() { int x; for(x=0; x