So I have built a strategy in the Analyzer and the actual results from trading are different than what the analyzer states. I know there is a way to add in intrabar tick by tick in the strategy and enable it on the Strategy Analyzer with the Tick Replay checkbox. My result come out really way skewed and inaccurate. I am using this in the State.Configure and also adding in the 1 for ticks in the Long entry like this: EnterLong(1, Convert.ToInt32(DefaultQuantity), @"Long");
else if (State == State.Configure)
{
Calculate = Calculate.OnPriceChange;
AddDataSeries(BarsPeriodType.Tick,1);
}
Something is wrong and it's just not working. But maybe just start from scratch to help me understand how to enable a strategy in the code so that the Strategy Analyzer will see intrabar ticks. Thank you so much.

Comment