Global service providing access to backtest functionality.
Simple wrapper around BacktestLogicPublicService for dependency injection. Used by public API exports.
constructor();
loggerService: any
strategySchemaService: any
riskValidationService: any
backtestLogicPublicService: any
strategyValidationService: any
exchangeValidationService: any
frameValidationService: any
run: (symbol: string, context: { strategyName: string; exchangeName: string; frameName: string; }) => AsyncGenerator<IStrategyBacktestResult, void, unknown>
Runs backtest for a symbol with context propagation.