Example
[1, 2, "subscribe", ["private", ["order", "trade", "balances"]]]
[1, 2, "list_orders", ["btcusd"]]
[
2,
2,
"list_orders",
[
[
"btcusd",
97,
"6dcc2c8e-c295-11ea-b7ad-1831bf9834b0",
"sell",
"w",
"l",
"9120",
"0",
"0.25",
"0.25",
"0",
0,
1594386563
]
]
]
Field | Example |
---|---|
Market | "btcusd" |
ID | 97 |
UUID | "6dcc2c8e-c295-11ea-b7ad-1831bf9834b0" |
Side | "sell" |
State | "w" |
Type | "l" |
Price | "9120" |
Avg. Price | "0" |
Volume | "0.25" |
Orig. Volume | "0.25" |
Executed Volume | "0" |
Trades Count | 0 |
Timestamp | 1594386563 |
[
1,
3,
"get_orders",
[
"6dcc2c8e-c295-11ea-b7ad-1831bf9834b0",
"4fec493d-c2a2-11ea-b670-1831bf9834b0"
]
]
[
2,
3,
"get_orders",
[
[
"btcusd",
97,
"6dcc2c8e-c295-11ea-b7ad-1831bf9834b0",
"sell",
"w",
"l",
"9120",
"0",
"0.25",
"0.25",
"0",
0,
1594386563
],
[
"btcusd",
98,
"4fec493d-c2a2-11ea-b670-1831bf9834b0",
"sell",
"c",
"m",
"0",
"0",
"0.25",
"0.25",
"0",
0,
1594392096
]
]
]
[1, 42, "get_order_trades", ["ab224fef-c2a2-11ea-b670-1831bf9834b0"]]
[
2,
42,
"get_order_trades",
[
[
"btcusd",
33,
"9120",
"0.25",
"2280",
100,
"ab224fef-c2a2-11ea-b670-1831bf9834b0",
"buy",
"buy",
"0.0005",
"btc",
1594392250
]
]
]
Field | Example |
---|---|
Market | "btcusd" |
ID | 33 |
Price | "9120" |
Amount | "0.25" |
Total | "2280" |
OrderID | 100 |
OrderUUID | "ab224fef-c2a2-11ea-b670-1831bf9834b0" |
OrderSide | "buy" |
TakerSide | "buy" |
Fee | "0.0005" |
Fee Unit | "btc" |
Timestamp | 1594392250 |
Arguments:
Arg | Comment |
---|---|
Market | |
Type | M is Market L is Limit P is PostOnly |
Side | buy or sell |
amount | sting, int, float |
price | ignored for market order |
Responds with ok and uuid of new order if order is pushed to engine. Response with error and short description in case of failure.
Example
[1, 42, "create_order", ["btcusd", "m", "sell", "0.250000", "9120.00"]]
Response
[2, 42, "create_order", ["4fec493d-c2a2-11ea-b670-1831bf9834b0"]]
Arguments:
Arg | Desc |
---|---|
Mode | id, uuid, market, all(any market) |
ID | ID, UUID or market ID respectively |
NOTE: cancels multiple orders for "market" and "all"
Example
[1, 42, "cancel_order", ["market", "btcusd"]]
Response
[2, 42, "cancel_order", null]
Arguments: array or Create order params
Responds with array of:
Example
[
1,
42,
"create_bulk",
[
["btcusd", "l", "buy", "0.250000", "9120.00"],
["btcusd", "l", "sell", "0.250000", "9120.00"]
]
]
Response
[
2,
42,
"create_bulk",
[
"04852bd8-c2a3-11ea-b670-1831bf9834b0",
"04855535-c2a3-11ea-b670-1831bf9834b0"
]
]
Arguments:
Arg | Desc |
---|---|
Mode | id or uuid |
[ID] | List of IDs or UUIDs respectively |
Echoes argument or puts error for argument which could not be parsed.
Example
[1, 42, "cancel_bulk", ["id", [12, "13", "abv"]]]
Response
[2, 42, "cancel_bulk", [12, 13, "error"]]