#property indicator_separate_window #property indicator_buffers 1 #property indicator_color1 Red double buffer[]; int init() { IndicatorShortName( "Time" ); IndicatorBuffers( 1 ); SetIndexBuffer( 0, buffer ); SetIndexShift( 0, 0 ); SetIndexStyle( 0, DRAW_LINE ); SetIndexDrawBegin( 0, 0 ); return( 0 ); } int start() { buffer[ 0 ]=Time[ 0 ]; return( 0 ); }