Order Notification

Subscribe to this topic to receive notifications about order updates for specific trading pairs.

Rules

  • Topic name: order

  • ApiKey requred: Yes

Parameters

ParameterNote

market

Status code

ValueNote

104110

Invalid topic or parameters

Notification example

{
   "topic": {
        "topic": "order",
        "market": "LRC-ETH"
   },
   "ts":1565844328,
   "data": {
        "hash": "11212",
        "clientOrderId": "myOrder",
        "size": "500000000",
        "volume": "210000000",
        "price": "0.000004",
        "filledSize": "30000000",
        "filledVolume": "100000",
        "filledFee": "1000000",
        "status": "processing",
        "createdAt": "1494900087",
        "validSince": "1494900087",
        "validUntil": "1495900087",
        "side": "buy",
        "market": "LRC-ETH"
    }
}

Data Model

Notification

FieldTypeNote

topic

JSON

Topic and parameters

ts

integer

Notification timestamp (milliseconds)

data

The order

Order

FieldTypeNote

hash

string

Order hash

clientOrderId

string

Client defined order ID

size

string

Amount (quantity of base token)

volume

string

Total (quantity of quote token)

price

string

Order price

filledSize

string

Filled amount of base token

filledVolume

string

Filled amount of quote token

filledFee

string

Fees paid

status

string

Order status

createdAt

integer

Order creation timestamp

updateAt

integer

Order last update timestamp

side

string

Buy or sell

market

string

Trading pair

Order status

ValueNote

processing

Active (aka Open, may be partially filled)

processed

Fully filled

cancelling

Being cancelled

cancelled

Cancelled

expired

Expired

waiting

Pending active

Last updated