true when called during a backtest run — adapter should skip exchange calls
Strategy/exchange/frame routing context
Market price at the moment of the ping
Maximum drawdown experienced during the life of this position up to this event
Peak profit achieved during the life of this position up to this event
Unrealized PnL of the open position at the moment of the ping
Position direction
Effective entry price (may differ from priceOpen after DCA averaging)
Effective stop-loss price at the moment of the ping
Effective take-profit price at the moment of the ping
Unique signal identifier (UUID v4) the order belongs to
Trading pair symbol, e.g. "BTCUSDT"
Total number of DCA entries (including initial open)
Total number of partial closes executed
Payload for the pending-order synchronization broker event.
Emitted automatically via syncPendingSubject on every live tick while a pending signal is monitored, BEFORE the framework evaluates TP/SL/time. Forwarded to the registered IBroker adapter via
onOrderCheck.The adapter should query the exchange by
signalIdand THROW ONLY when the order is definitively NOT FOUND by that id (filled, cancelled, or liquidated externally). A throw propagates to CREATE_SYNC_PENDING_FN, which makes the framework close the pending signal with closeReason "closed". Returning normally keeps the position under normal TP/SL monitoring.CRITICAL: transient/network errors (timeout, 5xx, rate limit, disconnect) must be SWALLOWED — return normally instead of throwing. A thrown network error would wrongly close an open position. Only a confirmed "order not found by id" response is a valid reason to throw.