Interface IStrategyResult

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

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

Properties

firstEventTime: number

Timestamp of the first signal event (pendingAt of earliest signal), null if no signals

lastEventTime: number

Timestamp of the last signal event (closeTimestamp of latest signal), null if no signals

metricValue: number

Value of the optimization metric (null if invalid)

Complete backtest statistics for this strategy

strategyName: string

Strategy name