Interface IStrategyTickResultWaiting

Tick result: scheduled signal is waiting for price to reach entry point. This is returned on subsequent ticks while monitoring a scheduled signal. Different from "scheduled" which is only returned once when signal is first created.

interface IStrategyTickResultWaiting {
    action: "waiting";
    backtest: boolean;
    createdAt: number;
    currentPrice: number;
    exchangeName: string;
    frameName: string;
    percentSl: number;
    percentTp: number;
    pnl: IStrategyPnL;
    signal: IPublicSignalRow;
    strategyName: string;
    symbol: string;
}

Properties

action: "waiting"

Discriminator for type-safe union

backtest: boolean

Whether this event is from backtest mode (true) or live mode (false)

createdAt: number

Unix timestamp in milliseconds when this tick result was created (from candle timestamp in backtest or execution context when in live)

currentPrice: number

Current VWAP price for monitoring

exchangeName: string

Exchange name for tracking

frameName: string

Time frame name for tracking (e.g., "1m", "5m")

percentSl: number

Percentage progress towards stop loss (always 0 for waiting scheduled signals)

percentTp: number

Percentage progress towards take profit (always 0 for waiting scheduled signals)

Unrealized PNL for scheduled position (theoretical, not yet activated)

Scheduled signal waiting for activation

strategyName: string

Strategy name for tracking

symbol: string

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