Order Executed
Order status update feed
The executions channel streams order status and execution events for this account.
Subscribe with Pusher
Subscribe Request Payload
Examples
Payload
id
integer
Unique identifier for the order.
user_id
integer
ID of the user who placed the order.
transaction_id
string
Unique transaction identifier for the order.
status
string
Current status of the order (e.g., "closed").
open_time
float
Timestamp when the order was opened (in Unix time).
close_time
float
Timestamp when the order was closed (in Unix time).
expire_time
float
Expiry time of the order (set to 0 if not applicable).
reason
string or null
Reason for the order closure, if applicable (null in this case).
pair
string
Asset pair involved in the trade (e.g., "NIZAUSDT").
type
string
Type of order (e.g., "buy").
order_type
string
The type of order (e.g., "limit").
description
object
Detailed description of the order.
description.pair
string
Asset pair being traded (e.g., "NIZAUSDT").
description.type
string
Type of order (e.g., "buy").
description.close
string
Closing details, empty in this case.
description.order
string
Full description of the order (e.g., "buy 100.00000000 NIZAUSDT @ limit").
description.price
string
Price at which the order was executed.
description.leverage
string
Leverage used in the trade (e.g., "none").
description.orderType
string
Type of order (e.g., "limit").
description.secondaryPrice
string or null
Secondary price, if applicable (null in this case).
volume.amount
string
Volume of the asset being traded (e.g., "100.00000000").
volume.currency
string
The asset being traded (e.g., "NIZA").
volume_executed.amount
string
Amount of the asset that was executed (e.g., "100.00000000").
volume_executed.currency
string
Currency of the executed volume (e.g., "NIZA").
fee.amount
string
Fee charged for the trade (e.g., "1.00000000").
fee.currency
string
Currency in which the fee is paid (e.g., "NIZA").
price.amount
string
Price at which the asset was traded (e.g., "100.00000000").
price.currency
string
Currency of the price (e.g., "USDT").
secondary_price
string or null
Secondary price, if applicable (null in this case).
limit_price
string or null
Limit price, if applicable (null in this case).
cost.amount
string
Total cost of the order (e.g., "10000.00000000").
cost.currency
string
Currency in which the cost is calculated (e.g., "USDT").
integer
Unique identifier of the asset pair.
string
Name of the asset pair (e.g., "NIZAUSDT").
asset_pair.display_name
string
Display name of the asset pair (e.g., "NIZA/USDT").
asset_pair.base_name
string
The base asset of the pair (e.g., "NIZA").
asset_pair.quote_name
string
The quote asset of the pair (e.g., "USDT").
trigger_conditions
string
Conditions that trigger the trade (e.g., "--").
trades
array
List of trades related to this order.
trades[0].id
integer
Unique identifier for the trade.
trades[0].timestamp
string
Timestamp of the trade (e.g., "2024-09-18 23:31:27").
trades[0].type
string
Type of trade (e.g., "buy").
trades[0].volume.amount
string
Volume traded (e.g., "100.00000000").
trades[0].volume.currency
string
Currency of the volume (e.g., "NIZA").
trades[0].price.amount
string
Price at which the trade occurred (e.g., "100.00000000").
trades[0].price.currency
string
Currency pair of the trade (e.g., "NIZA/USDT").
trades[0].cost.amount
string
Total cost of the trade (e.g., "10000.00000000").
trades[0].cost.currency
string
Currency of the cost (e.g., "USDT").
trades[0].fee.amount
string
Fee charged for the trade (e.g., "1.00000000").
trades[0].fee.currency
string
Currency of the fee (e.g., "NIZA").
trades[0].transaction_id
string
Unique transaction ID of the trade (e.g., "TJ6TZ7-RMUVA-BFLC44").
socket
string or null
Socket connection details, if applicable (null in this case).
Example of the Payload
Last updated