-
Notifications
You must be signed in to change notification settings - Fork 76
/
hf_order_types.go
357 lines (314 loc) · 11 KB
/
hf_order_types.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
package kucoin
import (
"encoding/json"
"math/big"
)
type HfPlaceOrderRes struct {
OrderId string `json:"orderId"`
ClientOid string `json:"clientOid"`
Success bool `json:"success"`
}
type HfSyncPlaceOrderRes struct {
OrderId string `json:"orderId"`
ClientOid string `json:"clientOid"`
OrderTime json.Number `json:"orderTime"`
OriginSize string `json:"originSize"`
DealSize string `json:"dealSize"`
RemainSize string `json:"remainSize"`
CanceledSize string `json:"canceledSize"`
Status string `json:"status"`
MatchTime json.Number `json:"matchTime"`
}
type HFCreateMultiOrderModel struct {
ClientOid string `json:"clientOid"`
Symbol string `json:"symbol"`
OrderType string `json:"type"`
TimeInForce string `json:"timeInForce"`
Stp string `json:"stp"`
Side string `json:"side"`
Price string `json:"price"`
Size string `json:"size"`
CancelAfter big.Int `json:"cancelAfter"`
PostOnly bool `json:"postOnly"`
Hidden bool `json:"hidden"`
Iceberg bool `json:"iceberg"`
VisibleSize string `json:"visibleSize"`
Tags string `json:"tags"`
Remark string `json:"remark"`
}
type HfPlaceMultiOrdersRes []*HfPlaceOrderRes
type HfModifyOrderRes struct {
NewOrderId string `json:"newOrderId"`
ClientOid string `json:"clientOid"`
}
type HfSyncCancelOrderRes struct {
OrderId string `json:"orderId"`
OriginSize string `json:"originSize"`
OriginFunds string `json:"originFunds"`
DealSize string `json:"dealSize"`
RemainSize string `json:"remainSize"`
CanceledSize string `json:"canceledSize"`
Status string `json:"status"`
}
type HfSyncCancelOrderWithSizeRes struct {
OrderId string `json:"orderId"`
CancelSize string `json:"cancelSize"`
}
type HfOrdersModel []*HfOrderModel
type HfOrderModel struct {
Id string `json:"id"`
Symbol string `json:"symbol"`
OpType string `json:"opType"`
Type string `json:"type"`
Side string `json:"side"`
Price string `json:"price"`
Size string `json:"size"`
Funds string `json:"funds"`
DealSize string `json:"dealSize"`
DealFunds string `json:"dealFunds"`
Fee string `json:"fee"`
FeeCurrency string `json:"feeCurrency"`
Stp string `json:"stp"`
TimeInForce string `json:"timeInForce"`
PostOnly bool `json:"postOnly"`
Hidden bool `json:"hidden"`
Iceberg bool `json:"iceberg"`
VisibleSize string `json:"visibleSize"`
CancelAfter int64 `json:"cancelAfter"`
Channel string `json:"channel"`
ClientOid string `json:"clientOid"`
Remark string `json:"remark"`
Tags string `json:"tags"`
CancelExist bool `json:"cancelExist"`
CreatedAt json.Number `json:"createdAt"`
LastUpdatedAt json.Number `json:"lastUpdatedAt"`
TradeType string `json:"tradeType"`
InOrderBook bool `json:"inOrderBook"`
Active bool `json:"active"`
CancelledSize string `json:"cancelledSize"`
CancelledFunds string `json:"cancelledFunds"`
RemainSize string `json:"remainSize"`
RemainFunds string `json:"remainFunds"`
}
type HfAutoCancelSettingRes struct {
CurrentTime json.Number `json:"currentTime"`
TriggerTime json.Number `json:"triggerTime"`
}
type AUtoCancelSettingModel struct {
Timeout int64 `json:"timeout"`
Symbols string `json:"symbols"`
CurrentTime json.Number `json:"currentTime"`
TriggerTime json.Number `json:"triggerTime"`
}
type HfOrderIdModel struct {
OrderId string `json:"orderId"`
}
type HfClientOidModel struct {
ClientOid string `json:"clientOid"`
}
type HfTransactionDetailsModel struct {
LastId json.Number `json:"lastId"`
Items []*HfTransactionDetailModel `json:"items"`
}
type HfTransactionDetailModel struct {
Id json.Number `json:"id"`
Symbol string `json:"symbol"`
TradeId json.Number `json:"tradeId"`
OrderId string `json:"orderId"`
CounterOrderId string `json:"counterOrderId"`
Side string `json:"side"`
Liquidity string `json:"liquidity"`
ForceTaker bool `json:"forceTaker"`
Price string `json:"price"`
Size string `json:"size"`
Funds string `json:"funds"`
Fee string `json:"fee"`
FeeRate string `json:"feeRate"`
FeeCurrency string `json:"feeCurrency"`
OrderType string `json:"type"`
Stop string `json:"stop"`
CreatedAt json.Number `json:"createdAt"`
TradeType string `json:"tradeType"`
}
type HfCancelOrdersResultModel struct {
SucceedSymbols []string `json:"succeedSymbols"`
FailedSymbols []*HfCancelOrdersFailedResultModel `json:"failedSymbols"`
}
type HfCancelOrdersFailedResultModel struct {
Symbol string `json:"symbol"`
Error string `json:"error"`
}
type HfPlaceOrderReq struct {
ClientOid string `json:"clientOid"`
Symbol string `json:"symbol"`
Side string `json:"side"`
Stp string `json:"stp"`
Tags string `json:"tags"`
Remark string `json:"remark"`
Price string `json:"price,omitempty"`
Size string `json:"size,omitempty"`
TimeInForce string `json:"timeInForce,omitempty"`
CancelAfter int64 `json:"cancelAfter,omitempty"`
PostOnly bool `json:"postOnly,omitempty"`
Hidden bool `json:"hidden,omitempty"`
Iceberg bool `json:"iceberg,omitempty"`
VisibleSize bool `json:"visibleSize,omitempty"`
Funds string `json:"funds,omitempty"`
}
type HfMarginOrderV3Req struct {
ClientOid string `json:"clientOid"`
Symbol string `json:"symbol"`
Side string `json:"side"`
Type string `json:"type"`
Stp string `json:"stp"`
IsIsolated bool `json:"isIsolated"`
AutoBorrow bool `json:"autoBorrow"`
AutoRepay bool `json:"autoRepay"`
Price string `json:"price,omitempty"`
Size string `json:"size,omitempty"`
TimeInForce string `json:"timeInForce,omitempty"`
CancelAfter int64 `json:"cancelAfter,omitempty"`
PostOnly bool `json:"postOnly,omitempty"`
Hidden bool `json:"hidden,omitempty"`
Iceberg bool `json:"iceberg,omitempty"`
VisibleSize bool `json:"visibleSize,omitempty"`
Funds string `json:"funds,omitempty"`
}
type HfMarginOrderV3Resp struct {
OrderNo string `json:"orderNo"`
BorrowSize string `json:"borrowSize"`
LoanApplyId string `json:"loanApplyId"`
}
type HfCancelMarinOrderV3Req struct {
OrderId string `json:"orderId"`
Symbol string `json:"symbol"`
}
type HfCancelMarinOrderV3Resp struct {
OrderId string `json:"orderId"`
}
type HfCancelClientMarinOrderV3Req struct {
ClientOid string `json:"clientOid"`
Symbol string `json:"symbol"`
}
type HfCancelClientMarinOrderV3Resp struct {
ClientOid string `json:"clientOid"`
}
type HfCancelAllMarginOrdersV3Req struct {
TradeType string `json:"tradeType" url:"tradeType"`
Symbol string `json:"symbol" url:"symbol"`
}
type HfCancelAllMarginOrdersV3Resp string
type HFMarginActiveSymbolsModel struct {
SymbolSize int32 `json:"symbolSize"`
Symbols []string `json:"symbols"`
}
type HfMarinActiveOrdersV3Req struct {
TradeType string `url:"tradeType"`
Symbol string `url:"symbol"`
}
type MarginOrderV3Model struct {
Id string `json:"id"`
Symbol string `json:"symbol"`
OpType string `json:"opType"`
Type string `json:"type"`
Side string `json:"side"`
Price string `json:"price"`
Size string `json:"size"`
Funds string `json:"funds"`
DealFunds string `json:"dealFunds"`
DealSize string `json:"dealSize"`
Fee string `json:"fee"`
FeeCurrency string `json:"feeCurrency"`
Stp string `json:"stp"`
TimeInForce string `json:"timeInForce"`
PostOnly bool `json:"postOnly"`
Hidden bool `json:"hidden"`
Iceberg bool `json:"iceberg"`
VisibleSize string `json:"visibleSize"`
CancelAfter int `json:"cancelAfter"`
Channel string `json:"channel"`
ClientOid string `json:"clientOid"`
Remark string `json:"remark"`
Tags string `json:"tags"`
Active bool `json:"active"`
InOrderBook bool `json:"inOrderBook"`
CancelExist bool `json:"cancelExist"`
CreatedAt int64 `json:"createdAt"`
LastUpdatedAt int64 `json:"lastUpdatedAt"`
TradeType string `json:"tradeType"`
}
type HfMarinActiveOrdersV3Resp []*MarginOrderV3Model
type HfMarinDoneOrdersV3Req struct {
TradeType string `url:"tradeType"`
Symbol string `url:"symbol"`
Side string `url:"side,omitempty"`
Type string `url:"type,omitempty"`
StartAt int64 `url:"startAt,omitempty"`
EndAt int64 `url:"endAt,omitempty"`
LastId int64 `url:"lastId,omitempty"`
Limit int `url:"limit,omitempty"`
}
type HfMarinDoneOrdersV3Resp struct {
Items []*MarginFillModel `json:"items"`
LastId int64 `json:"lastId"`
}
type MarginFillModel struct {
ID int64 `json:"id"`
Symbol string `json:"symbol"`
OpType string `json:"opType"`
Type string `json:"type"`
Side string `json:"side"`
Price string `json:"price"`
Size string `json:"size"`
Funds string `json:"funds"`
DealFunds string `json:"dealFunds"`
DealSize string `json:"dealSize"`
Fee string `json:"fee"`
FeeCurrency string `json:"feeCurrency"`
STP string `json:"stp"`
TimeInForce string `json:"timeInForce"`
PostOnly bool `json:"postOnly"`
Hidden bool `json:"hidden"`
Iceberg bool `json:"iceberg"`
VisibleSize string `json:"visibleSize"`
CancelAfter int64 `json:"cancelAfter"`
Channel string `json:"channel"`
ClientOid string `json:"clientOid"`
Remark string `json:"remark"`
Tags string `json:"tags"`
Active bool `json:"active"`
InOrderBook bool `json:"inOrderBook"`
CancelExist bool `json:"cancelExist"`
CreatedAt int64 `json:"createdAt"`
LastUpdatedAt int64 `json:"lastUpdatedAt"`
TradeType string `json:"tradeType"`
}
type HfMarinOrderV3Req struct {
OrderId string
Symbol string
}
type HfMarinOrderV3Resp struct {
MarginFillModel
}
type HfMarinClientOrderV3Req struct {
ClientOid string
Symbol string
}
type HfMarinClientOrderV3Resp struct {
MarginFillModel
}
type HfMarinFillsV3Req struct {
Symbol string `url:"symbol"`
TradeType string `url:"tradeType"`
OrderId string `url:"orderId,omitempty"`
Side string `url:"side,omitempty"`
Type string `url:"type,omitempty"`
StartAt int64 `url:"startAt,omitempty"`
EndAt int64 `url:"endAt,omitempty"`
LastId int64 `url:"lastId,omitempty"`
Limit int `url:"limit,omitempty"`
}
type HfMarinFillsV3Resp struct {
Items []*MarginFillModel `json:"items"`
LastId int64 `json:"lastId"`
}