Interface LiveDoneNotification

Live trading completed notification. Emitted when live trading execution completes.

interface LiveDoneNotification {
    backtest: false;
    exchangeName: string;
    id: string;
    strategyName: string;
    symbol: string;
    timestamp: number;
    type: "live.done";
}

Properties

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