Interface IStrategyTickResultCancelled

Tick result: scheduled signal cancelled without opening position. Occurs when scheduled signal doesn't activate or hits stop loss before entry.

interface IStrategyTickResultCancelled {
    action: "cancelled";
    closeTimestamp: number;
    currentPrice: number;
    exchangeName: string;
    signal: IScheduledSignalRow;
    strategyName: string;
    symbol: string;
}

Properties

action: "cancelled"

Discriminator for type-safe union

closeTimestamp: number

Unix timestamp in milliseconds when signal cancelled

currentPrice: number

Final VWAP price at cancellation

exchangeName: string

Exchange name for tracking

Cancelled scheduled signal

strategyName: string

Strategy name for tracking

symbol: string

Trading pair symbol (e.g., "BTCUSDT")