This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
order.go
109 lines (96 loc) · 3.68 KB
/
order.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package kumex
import "net/http"
// A CreateOrderResultModel represents the result of CreateOrder().
type CreateOrderResultModel struct {
OrderId string `json:"orderId"`
}
// CreateOrder places a new order.
func (as *ApiService) CreateOrder(params map[string]string) (*ApiResponse, error) {
req := NewRequest(http.MethodPost, "/api/v1/orders", params)
return as.Call(req)
}
// A CancelOrderResultModel represents the result of CancelOrder().
type CancelOrderResultModel struct {
CancelledOrderIds []string `json:"cancelledOrderIds"`
}
// CancelOrder cancels a previously placed order.
func (as *ApiService) CancelOrder(orderId string) (*ApiResponse, error) {
req := NewRequest(http.MethodDelete, "/api/v1/orders/"+orderId, nil)
return as.Call(req)
}
// CancelOrders cancels all orders of the symbol.
// With best effort, cancel all open orders. The response is a list of ids of the canceled orders.
func (as *ApiService) CancelOrders(symbol string) (*ApiResponse, error) {
p := map[string]string{}
if symbol != "" {
p["symbol"] = symbol
}
req := NewRequest(http.MethodDelete, "/api/v1/orders", p)
return as.Call(req)
}
// StopOrders represents an order.
func (as *ApiService) StopOrders(symbol string) (*ApiResponse, error) {
p := map[string]string{}
if symbol != "" {
p["symbol"] = symbol
}
req := NewRequest(http.MethodDelete, "/api/v1/stopOrders", p)
return as.Call(req)
}
// An OrderModel represents an order.
type OrderModel struct {
Id string `json:"id"`
Symbol string `json:"symbol"`
Type string `json:"type"`
Side string `json:"side"`
Price string `json:"price"`
Size int64 `json:"size"`
Value string `json:"value"`
DealValue string `json:"dealValue"`
DealSize int64 `json:"dealSize"`
Stp string `json:"stp"`
Stop string `json:"stop"`
StopPriceType string `json:"stopPriceType"`
StopTriggered bool `json:"stopTriggered"`
StopPrice string `json:"stopPrice"`
TimeInForce string `json:"timeInForce"`
PostOnly bool `json:"postOnly"`
Hidden bool `json:"hidden"`
IceBerg bool `json:"iceberg"`
VisibleSize string `json:"visibleSize"`
Leverage string `json:"leverage"`
ForceHold bool `json:"forceHold"`
CloseOrder bool `json:"closeOrder"`
CloseOnly bool `json:"closeOnly"`
ClientOid string `json:"clientOid"`
Remark string `json:"remark"`
IsActive bool `json:"isActive"`
CancelExist bool `json:"cancelExist"`
CreatedAt int64 `json:"createdAt"`
UpdatedAt int64 `json:"updatedAt"`
SettleCurrency string `json:"settleCurrency"`
Status string `json:"status"`
}
// A OrdersModel is the set of *OrderModel.
type OrdersModel []*OrderModel
// Orders returns a list your current orders.
func (as *ApiService) Orders(params map[string]string, pagination *PaginationParam) (*ApiResponse, error) {
pagination.ReadParam(params)
req := NewRequest(http.MethodGet, "/api/v1/orders", params)
return as.Call(req)
}
// Order returns a single order by order id.
func (as *ApiService) Order(orderId string) (*ApiResponse, error) {
req := NewRequest(http.MethodGet, "/api/v1/orders/"+orderId, nil)
return as.Call(req)
}
// Order returns a single order by client Oid.
func (as *ApiService) OrderByClientOid(clientOid string) (*ApiResponse, error) {
req := NewRequest(http.MethodGet, "/api/v1/orders/byClientOid?clientOid="+clientOid, nil)
return as.Call(req)
}
// RecentDoneOrders returns the recent orders of the latest transactions within 24 hours.
func (as *ApiService) RecentDoneOrders() (*ApiResponse, error) {
req := NewRequest(http.MethodGet, "/api/v1/recentDoneOrders", nil)
return as.Call(req)
}