Execution mode flag.
Current market price of the symbol at the time of the ping. Useful for users to implement custom management logic based on price conditions. For example, users can choose to close the pending signal if the price moves too far from priceOpen. Note: This is the current price at the time of the ping, not necessarily the priceOpen of the signal.
Complete pending signal row data. Contains all signal information: id, position, priceOpen, priceTakeProfit, priceStopLoss, etc.
Exchange name where this active pending signal is being monitored. Identifies which exchange this ping event belongs to.
Strategy name that is monitoring this active pending signal. Identifies which strategy execution this ping event belongs to.
Trading pair symbol (e.g., "BTCUSDT"). Identifies which market this ping event belongs to.
Event timestamp in milliseconds since Unix epoch.
Timing semantics:
Contract for active ping events during active pending signal monitoring.
Emitted by activePingSubject every minute when an active pending signal is being monitored. Used for tracking active signal lifecycle and custom dynamic management logic.
Events are emitted only when pending signal is active (not closed yet). Allows users to implement custom management logic via onActivePing callback.
Consumers:
Example