Interface BacktestDoneNotification

Backtest completed notification. Emitted when backtest execution completes.

interface BacktestDoneNotification {
    backtest: true;
    exchangeName: string;
    id: string;
    strategyName: string;
    symbol: string;
    timestamp: number;
    type: "backtest.done";
}

Properties

backtest: true
exchangeName: string
id: string
strategyName: string
symbol: string
timestamp: number
type: "backtest.done"