Private service for backtest orchestration using async generators.
Flow:
Memory efficient: streams results without array accumulation. Supports early termination via break in consumer.
constructor();
loggerService: { readonly methodContextService: { readonly context: IMethodContext; }; readonly executionContextService: { readonly context: IExecutionContext; }; ... 7 more ...; setLogger: (logger: ILogger) => void; }
strategyCoreService: StrategyCoreService
exchangeCoreService: ExchangeCoreService
frameCoreService: FrameCoreService
methodContextService: { readonly context: IMethodContext; }
actionCoreService: ActionCoreService
run(symbol: string): AsyncGenerator<IStrategyTickResultScheduled | IStrategyTickResultOpened | IStrategyTickResultClosed | IStrategyTickResultCancelled, void, any>;
Runs backtest for a symbol, streaming closed signals as async generator.