Skip to main content

Execution

Topic:
copyTradeExecution

Response Parameters

ParameterTypeComments
orderIdstringOrder Id
orderLinkIdstringUnique user-set order ID. Maximum length of 36 characters
symbolstringSymbol
sidestringSide
execIdstringTransaction ID
execQtystringTransaction qty
execTypestringExecution type (cannot be Funding)
execFeestringTransaction fee
pricestringTransaction price
orderQtystringOrder qty
tradeTimenumberTransaction timestamp

Request Example

ws.send('{"op": "subscribe", "args": ["copyTradeExecution"]}')

Response Example

{
"topic": "copyTradeExecution",
"data": [
{
"orderId": "6d667921-3cf4-4efd-b93f-727bd10a3b62",
"orderLinkId": "w11a313223ddd132111",
"symbol": "ETHUSDT",
"side": "Sell",
"execId": "0182b08b-a3ce-5038-a8be-5e1e9f862e90",
"execQty": "0.010000",
"execType": "Trade",
"execFee": "0.01175970",
"price": "1863.250000",
"orderQty": "0.010000",
"tradeTime": 1652932133873
}
]
}