Whether this notification is from backtest mode (true) or live mode (false); pings are live-only in practice
Unix timestamp in milliseconds when the notification was created
Market price at the moment of the ping (VWAP)
Exchange name where signal was executed
Unique notification identifier
Maximum drawdown experienced during the life of this position up to the moment of the ping
Absolute profit/loss in USD at the moment the position reached its maximum drawdown during the life of this position
Number of entries executed at the moment the position reached its maximum drawdown during the life of this position
Profit/loss as percentage at the moment the position reached its maximum drawdown during the life of this position
Exit price for PNL calculation at the moment of max drawdown
Maximum drawdown price reached in loss direction during the life of this position
OptionalnoteOptional human-readable description of signal reason
Which order is being monitored (from OrderCheckContract.type):
Original entry price at signal creation (unchanged by DCA averaging)
Original stop loss price before any trailing adjustments
Original take profit price before any trailing adjustments
Peak profit achieved during the life of this position up to the moment of the ping
Absolute profit/loss in USD at the moment the position reached its peak profit during the life of this position
Number of entries executed at the moment the position reached its peak profit during the life of this position
Profit/loss as percentage at the moment the position reached its peak profit during the life of this position
Exit price for PNL calculation at the moment of peak profit
Peak price reached in profit direction during the life of this position
Pending timestamp in milliseconds (when position became pending/active at priceOpen)
Unrealized PNL of the open position at the moment of the ping
Absolute profit/loss in USD
Total invested capital in USD
Profit/loss as percentage (e.g., 1.5 for +1.5%, -2.3 for -2.3%)
Exit price from PNL calculation (adjusted with slippage and fees)
Entry price from PNL calculation (effective price adjusted with slippage and fees)
Trade direction: "long" (buy) or "short" (sell)
Effective entry price (may differ from original after DCA averaging)
Effective stop loss price (with trailing if set)
Effective take profit price (with trailing if set)
Signal creation timestamp in milliseconds (when signal was first created/scheduled)
Unique signal identifier (UUID v4)
Strategy name that generated this signal
Trading pair symbol (e.g., "BTCUSDT")
Unix timestamp in milliseconds when the order ping was emitted
Total number of DCA entries (_entry.length). 1 = no averaging.
Total number of partial closes executed (_partial.length). 0 = no partial closes done.
Discriminator for type-safe union
Signal sync check (order-ping) notification. Emitted while a signal is being monitored in live mode: on every tick the framework asks the external order management system whether the order backing the signal is still open on the exchange (
syncPendingSubject/ OrderCheckContract). Throttled by NotificationAdapter to at most one notification per signalId perCC_NOTIFICATION_ORDER_CHECK_TTL(default 15 minutes); the throttle entry is dropped when the signal is closed or cancelled.