현재 사용자의 완료되지 않은 주문 목록
1. Request
param | type | description |
---|---|---|
type | string | 'subscribe' 또는 'unsubscribe' |
channel | string | 'open_order' |
// request
{
"type": "subscribe",
"channel": 'open_order'
}
2. Responses
param | type | description |
---|---|---|
channel | string | 'open_order' |
data | ORDER[] | ORDER 타입은 아래를 참조하십시오. |
ORDER type
field | type | description |
---|---|---|
id | text | 오더 ID |
user_id | text | 사용자 ID |
market_id | text | 마켓 ID |
side | text | "buy" 또는 "sell" |
type | text | "limit" 또는 "market" |
quantity | text | 주문 수량 |
limit_price | text | 주문 가격 (type: limit) |
time_in_force | text | 지정한 Time-In-Force 옵션 |
filled_cost, | string | 체결된 cost, |
open_quantity | string | 거래중인 수량. |
status | string | 'open', 'filled', 'cancelled' |
time | Date | 주문 접수 시간 |
client_order_id | string | 사용자가 요청한 client_order_id (중복 주문 방지용 필드, optional) |