I have a strategy using tick replay that runs fine in realtime, replay, and backtests however attempts at running single or multiple objective optimizations always result in zero results for each iteration. The parameters I'm testing are simple booleans such as whether to move stops to breakeven.
Trade logic is in OnBarUpdate and uses the managed approach with entries looking like this:
EnterLong(tradedInstrument,1, @orderTag);
Where tradedInstrument is an int representing a second or third dataseries such as AddDataSeries(SecondarySeries, BarsPeriodType.Tick, 1);
Wondering if I'm missing something obvious.
Mark


Comment