I want
If I load a four hour data series on my primary,
it will not match my secondary with:
AddDataSeries(null, new BarsPeriod { BarsPeriodType = BarsPeriodType.Minute, Value = 240 }, 5, null, true); // 4 Hourly (BarsInProgress == 1)
I've tried
AddDataSeries(null, new BarsPeriod { BarsPeriodType = BarsPeriodType.Minute, Value = 240 }, 5, null, false); // 4 Hourly (BarsInProgress == 1)
at the moment the only way I can get my primary and secondary to match is to turn off Break at EOD on the primary, but I don't want that.
I want to turn it on on my secondary. And yes, I will be using a different primary data series. I'm just using the primary for debugging for matching at the moment.
Any advice much appreciated.
Thanks!
Comment