if (BarsInProgress != 0)
return;
if (Bars.FirstBarOfSession && FirstTickOfBar)
Print(Time[0]);
That should print a timestamp for the first bar of each day. It isn't. Following is what it prints. It misses days and I don't mean saturday; It prints more than one time for some days; and it prints times that aren't the first bar. I'm using a 3 min chart.
1/2/2011 11:03:00 PM
1/3/2011 11:03:00 PM
1/4/2011 11:03:00 PM
1/5/2011 11:03:00 PM
1/6/2011 11:03:00 PM
1/9/2011 5:03:00 PM
1/9/2011 11:03:00 PM
1/10/2011 11:03:00 PM
1/11/2011 11:03:00 PM
1/12/2011 11:03:00 PM
1/13/2011 11:03:00 PM
1/16/2011 1:48:00 PM
1/16/2011 11:03:00 PM
1/17/2011 11:03:00 PM
1/18/2011 11:03:00 PM
1/19/2011 11:03:00 PM
1/20/2011 11:03:00 PM
1/23/2011 3:18:00 PM
1/23/2011 11:03:00 PM

Comment