Skip to main content



Order

Order data

orderIdstring

Unique order identification.

Example: 69a92d9ea76468fbb286b4b0
typeboolean

Order side.
true ⇒ SHORT
false ⇒ LONG

Example: false
orderGroupstring

Order group.

Possible values: [entry, entry_cancel, exit_cancel, exit, extra, scale_in, scale_out]

Example: entry
statusstring

Order state.

Possible values: [new, canceled, submitted, opened, completed, failed]

Example: opened
createdAtstring | nullnullable

Order created on exchange at. (Datetime in RFC3339 string format)

Example: 2026-03-05T09:10:02+02:00
updatedAtstring | nullnullable

Order last update received at. (Datetime in RFC3339 string format)

Example: 2026-03-05T09:10:02+02:00
pricenumber | nullnullable

Limit or exchange averaged price.

Example: 0.2744
amountnumber | nullnullable

Initial/Filled amount.

Example: 404
costnumber | nullnullable

Initial/Filled cost.

Example: 110.8984
volumenumber | nullnullable

Initial/Filled $ cents volume.

Example: 11089
commissionnumber | nullnullable

Amount commission.

Example: 0.1616
commissionCostnumber | nullnullable

Cost commission.

Example: 0.04435936
commissionUSDnumber | nullnullable

$ commission.

Example: 0.04433744
triggeredBystring | nullnullable

Trigger emitter code.

Example: entry
errorTransKeystring | nullnullable

Known exchange error code.

Example: null
errorMessagestring | nullnullable

Exchange original error.

Example: null



Order
{
"orderId": "69a92d9ea76468fbb286b4b0",
"type": false,
"orderGroup": "entry",
"status": "opened",
"createdAt": "2026-03-05T09:10:02+02:00",
"updatedAt": "2026-03-05T09:10:02+02:00",
"price": 0.2744,
"amount": 404,
"cost": 110.8984,
"volume": 11089,
"commission": 0.1616,
"commissionCost": 0.04435936,
"commissionUSD": 0.04433744,
"triggeredBy": "entry",
"errorTransKey": null,
"errorMessage": null
}