The logging to the Output window happens right up to the minute of going live, but then it stops.
I have reduced the strategy down to 2 lines and I'm still seeing this issue. I have this now only:
protected override void Initialize()
{
CalculateOnBarClose = true;
Add(PeriodType.Day, 1);
}
protected override void OnBarUpdate()
{
Print("Time==" + Time[0].ToString("yyyy-MM-dd HH:mm:ss")
+ " Historical==" + Historical.ToString());
}
I'm quite prepared to admit that I might be doing something idiotic - but so far I can't see anything in my setup.
I have plenty of data in the HDM, both minute and daily, up to date.
I tried adding different time series, and I can add extra time series with PeriodType.Minute, but not Daily.
ps are you running a competition for interesting thread titles? I'm sure this one would win it

Comment