Interface IStrategyResult

Strategy result entry for comparison table. Contains strategy name, full statistics, and metric value for ranking.

interface IStrategyResult {
    metricValue: number;
    stats: BacktestStatisticsModel;
    strategyName: string;
}

Properties

metricValue: number

Value of the optimization metric (null if invalid)

Complete backtest statistics for this strategy

strategyName: string

Strategy name