Interface WalkerStatisticsModel

Alias for walker statistics result interface. Used for clarity in markdown service context.

Extends IWalkerResults with additional strategy comparison data.

interface WalkerStatisticsModel {
    bestMetric: number;
    bestStats: BacktestStatisticsModel;
    bestStrategy: string;
    exchangeName: string;
    frameName: string;
    metric: WalkerMetric;
    strategyResults: IStrategyResult[];
    symbol: string;
    totalStrategies: number;
    walkerName: string;
}

Hierarchy (View Summary)

Properties

bestMetric: number

bestMetric - Best metric value achieved

bestStats - Best strategy statistics

bestStrategy: string

bestStrategy - Best performing strategy name

exchangeName: string

exchangeName - Exchange used

frameName: string

frameName - Frame used

metric: WalkerMetric

metric - Metric used for optimization

strategyResults: IStrategyResult[]

Array of all strategy results for comparison and analysis

symbol: string

symbol - Symbol tested

totalStrategies: number

totalStrategies - Total number of strategies tested

walkerName: string

walkerName - Walker name