-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
derivative_common.go
570 lines (489 loc) · 18.3 KB
/
derivative_common.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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
package bybit
import (
"encoding/json"
"errors"
"fmt"
"github.com/google/go-querystring/query"
)
// DerivativeCommonService :
type DerivativeCommonService struct {
client *Client
}
// DerivativesOrderBookResponse :
type DerivativesOrderBookResponse struct {
CommonV3Response `json:",inline"`
Result DerivativesOrderBookResult `json:"result"`
}
// DerivativesOrderBookResult :
type DerivativesOrderBookResult struct {
Symbol SymbolDerivative `json:"s"`
Buyers DerivativesOrderBookResultBuyers `json:"b"`
Sellers DerivativesOrderBookResultSellers `json:"a"`
Timestamp int `json:"ts"`
ID int `json:"u"`
}
// DerivativesOrderBookResultBuyers :
type DerivativesOrderBookResultBuyers []DerivativesOrderBookResultBuyer
// UnmarshalJSON :
func (r *DerivativesOrderBookResultBuyers) UnmarshalJSON(data []byte) error {
parsedData := [][]string{}
if err := json.Unmarshal(data, &parsedData); err != nil {
return err
}
items := DerivativesOrderBookResultBuyers{}
for _, item := range parsedData {
item := item
price, qty := item[0], item[1]
items = append(items, DerivativesOrderBookResultBuyer{
Price: price,
Qty: qty,
})
}
*r = items
return nil
}
// DerivativesOrderBookResultBuyer :
type DerivativesOrderBookResultBuyer struct {
Price string
Qty string
}
// DerivativesOrderBookResultSellers :
type DerivativesOrderBookResultSellers []DerivativesOrderBookResultSeller
// UnmarshalJSON :
func (r *DerivativesOrderBookResultSellers) UnmarshalJSON(data []byte) error {
parsedData := [][]string{}
if err := json.Unmarshal(data, &parsedData); err != nil {
return err
}
items := DerivativesOrderBookResultSellers{}
for _, item := range parsedData {
item := item
price, qty := item[0], item[1]
items = append(items, DerivativesOrderBookResultSeller{
Price: price,
Qty: qty,
})
}
*r = items
return nil
}
// DerivativesOrderBookResultSeller :
type DerivativesOrderBookResultSeller struct {
Price string
Qty string
}
// DerivativesOrderBookParam :
type DerivativesOrderBookParam struct {
Symbol SymbolDerivative `url:"symbol"`
Category CategoryDerivative `url:"category"`
Limit *int `url:"limit,omitempty"`
}
// DerivativesOrderBook :
func (s *DerivativeCommonService) DerivativesOrderBook(param DerivativesOrderBookParam) (*DerivativesOrderBookResponse, error) {
var res DerivativesOrderBookResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getPublicly("/derivatives/v3/public/order-book/L2", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// DerivativesKlineResponse :
type DerivativesKlineResponse struct {
CommonV3Response `json:",inline"`
Result DerivativesKlineResult `json:"result"`
}
// DerivativesKlineResult :
type DerivativesKlineResult struct {
Category CategoryDerivative `json:"category"`
Symbol SymbolDerivative `json:"symbol"`
Lists []DerivativesKlineResultList `json:"list"`
}
// DerivativesKlineResultList :
type DerivativesKlineResultList struct {
Start string
Open string
High string
Low string
Close string
Volume string
Turnover string
}
// UnmarshalJSON :
func (r *DerivativesKlineResultList) UnmarshalJSON(data []byte) error {
parsedData := []interface{}{}
if err := json.Unmarshal(data, &parsedData); err != nil {
return err
}
if len(parsedData) != 7 {
return errors.New("so far len(items) must be 7, please check it on documents")
}
*r = DerivativesKlineResultList{
Start: parsedData[0].(string),
Open: parsedData[1].(string),
High: parsedData[2].(string),
Low: parsedData[3].(string),
Close: parsedData[4].(string),
Volume: parsedData[5].(string),
Turnover: parsedData[6].(string),
}
return nil
}
// DerivativesKlineParam :
type DerivativesKlineParam struct {
Symbol SymbolDerivative `url:"symbol"`
Category CategoryDerivative `url:"category"`
Interval Interval `url:"interval"`
Start int64 `url:"start"` // timestamp point for result, in milliseconds
End int64 `url:"end"` // timestamp point for result, in milliseconds
Limit *int `url:"limit,omitempty"`
}
// DerivativesKline :
func (s *DerivativeCommonService) DerivativesKline(param DerivativesKlineParam) (*DerivativesKlineResponse, error) {
var res DerivativesKlineResponse
if param.Category != CategoryDerivativeInverse && param.Category != CategoryDerivativeLinear {
return nil, fmt.Errorf("only inverse and linear supported, but %s given for category", param.Category)
}
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getPublicly("/derivatives/v3/public/kline", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// DerivativesTickersResponse :
type DerivativesTickersResponse struct {
CommonV3Response `json:",inline"`
Result DerivativesTickersResult `json:"result"`
}
// DerivativesTickersResult :
type DerivativesTickersResult struct {
Category CategoryDerivative `json:"category"`
Lists []DerivativesTickersResultList `json:"list"`
}
// DerivativesTickersResultList :
type DerivativesTickersResultList struct {
Symbol SymbolDerivative `json:"symbol"`
BidPrice string `json:"bidPrice"`
AskPrice string `json:"askPrice"`
LastPrice string `json:"lastPrice"`
LastTickDirection string `json:"lastTickDirection"`
PrevPrice24h string `json:"prevPrice24h"`
Price24hPcnt string `json:"price24hPcnt"`
HighPrice24h string `json:"highPrice24h"`
LowPrice24h string `json:"lowPrice24h"`
PrevPrice1h string `json:"prevPrice1h"`
MarkPrice string `json:"markPrice"`
IndexPrice string `json:"indexPrice"`
OpenInterest string `json:"openInterest"`
Turnover24h string `json:"turnover24h"`
Volume24h string `json:"volume24h"`
FundingRate string `json:"fundingRate"`
NextFundingTime string `json:"nextFundingTime"`
PredictedDeliveryPrice string `json:"predictedDeliveryPrice"` // Applicable to inverse future and option
BasisRate string `json:"basisRate"`
DeliveryFeeRate string `json:"deliveryFeeRate"`
DeliveryTime string `json:"deliveryTime"`
}
// DerivativesTickersParam :
type DerivativesTickersParam struct {
Category CategoryDerivative `url:"category"`
Symbol *SymbolDerivative `url:"symbol,omitempty"`
}
// DerivativesTickers :
func (s *DerivativeCommonService) DerivativesTickers(param DerivativesTickersParam) (*DerivativesTickersResponse, error) {
var res DerivativesTickersResponse
if param.Category == CategoryDerivativeOption {
return nil, errors.New("call DerivativesTickersForOption instead")
}
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getPublicly("/derivatives/v3/public/tickers", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// DerivativesTickersForOptionResponse :
type DerivativesTickersForOptionResponse struct {
CommonV3Response `json:",inline"`
Result DerivativesTickersForOptionResult `json:"result"`
}
// DerivativesTickersForOptionResult :
type DerivativesTickersForOptionResult struct {
Category CategoryDerivative `json:"category"`
Symbol SymbolDerivative `json:"symbol"`
BidPrice string `json:"bidPrice"`
BidSize string `json:"bidSize"`
BidIv string `json:"bidIv"`
AskPrice string `json:"askPrice"`
AskSize string `json:"askSize"`
AskIv string `json:"askIv"`
LastPrice string `json:"lastPrice"`
HighPrice24h string `json:"highPrice24h"`
LowPrice24h string `json:"lowPrice24h"`
MarkPrice string `json:"markPrice"`
IndexPrice string `json:"indexPrice"`
MarkPriceIv string `json:"markPriceIv"`
UnderlyingPrice string `json:"underlyingPrice"`
OpenInterest string `json:"openInterest"`
Turnover24h string `json:"turnover24h"`
Volume24h string `json:"volume24h"`
TotalVolume string `json:"totalVolume"`
TotalTurnover string `json:"totalTurnover"`
Delta string `json:"delta"`
Gamma string `json:"gamma"`
Vega string `json:"vega"`
Theta string `json:"theta"`
PredictedDeliveryPrice string `json:"predictedDeliveryPrice"`
Change24h string `json:"change24h"`
}
// DerivativesTickersForOptionParam :
type DerivativesTickersForOptionParam struct {
Symbol SymbolDerivative `url:"symbol"`
}
// DerivativesTickersForOption :
func (s *DerivativeCommonService) DerivativesTickersForOption(param DerivativesTickersForOptionParam) (*DerivativesTickersForOptionResponse, error) {
var res DerivativesTickersForOptionResponse
queryString, err := query.Values(DerivativesTickersParam{
Category: CategoryDerivativeOption,
Symbol: ¶m.Symbol,
})
if err != nil {
return nil, err
}
if err := s.client.getPublicly("/derivatives/v3/public/tickers", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// DerivativesInstrumentsResponse :
type DerivativesInstrumentsResponse struct {
CommonV3Response `json:",inline"`
Result DerivativesInstrumentsResult `json:"result"`
}
// DerivativesInstrumentsResult :
type DerivativesInstrumentsResult struct {
Category CategoryDerivative `json:"category"`
List []struct {
Symbol SymbolDerivative `json:"symbol"`
ContractType ContractTypeDerivative `json:"contractType"`
Status StatusDerivative `json:"status"`
BaseCoin string `json:"baseCoin"`
QuoteCoin string `json:"quoteCoin"`
LaunchTime string `json:"launchTime"`
DeliveryTime string `json:"deliveryTime"`
DeliveryFeeRate string `json:"deliveryFeeRate"`
PriceScale string `json:"priceScale"`
LeverageFilter struct {
MinLeverage string `json:"minLeverage"`
MaxLeverage string `json:"maxLeverage"`
LeverageStep string `json:"leverageStep"`
} `json:"leverageFilter"`
PriceFilter struct {
MinPrice string `json:"minPrice"`
MaxPrice string `json:"maxPrice"`
TickSize string `json:"tickSize"`
} `json:"priceFilter"`
LotSizeFilter struct {
MaxTradingQty string `json:"maxTradingQty"`
MinTradingQty string `json:"minTradingQty"`
QtyStep string `json:"qtyStep"`
} `json:"lotSizeFilter"`
} `json:"list"`
NextPageCursor string `json:"nextPageCursor"`
}
// DerivativesInstrumentsParam :
type DerivativesInstrumentsParam struct {
Category CategoryDerivative `url:"category"`
Symbol *SymbolDerivative `url:"symbol,omitempty"`
Limit *int `url:"limit,omitempty"`
Cursor *string `url:"cursor,omitempty"`
}
// DerivativesInstruments :
func (s *DerivativeCommonService) DerivativesInstruments(param DerivativesInstrumentsParam) (*DerivativesInstrumentsResponse, error) {
var res DerivativesInstrumentsResponse
if param.Category == CategoryDerivativeOption {
return nil, errors.New("call DerivativesInstrumentsForOption instead")
}
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getPublicly("/derivatives/v3/public/instruments-info", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// DerivativesInstrumentsForOptionResponse :
type DerivativesInstrumentsForOptionResponse struct {
CommonV3Response `json:",inline"`
Result DerivativesInstrumentsForOptionResult `json:"result"`
}
// DerivativesInstrumentsForOptionResult :
type DerivativesInstrumentsForOptionResult struct {
ResultTotalSize int `json:"resultTotalSize"`
Cursor string `json:"cursor"`
List []struct {
Category CategoryDerivative `json:"category"`
Symbol SymbolDerivative `json:"symbol"`
Status StatusDerivative `json:"status"`
BaseCoin string `json:"baseCoin"`
QuoteCoin string `json:"quoteCoin"`
SettleCoin string `json:"settleCoin"`
OptionsType string `json:"optionsType"`
LaunchTime string `json:"launchTime"`
DeliveryTime string `json:"deliveryTime"`
DeliveryFeeRate string `json:"deliveryFeeRate"`
PriceFilter struct {
MinPrice string `json:"minPrice"`
MaxPrice string `json:"maxPrice"`
TickSize string `json:"tickSize"`
} `json:"priceFilter"`
LotSizeFilter struct {
MaxOrderQty string `json:"maxOrderQty"`
MinOrderQty string `json:"minOrderQty"`
QtyStep string `json:"qtyStep"`
} `json:"lotSizeFilter"`
} `json:"dataList"`
}
// DerivativesInstrumentsForOptionParam :
type DerivativesInstrumentsForOptionParam struct {
Symbol *SymbolDerivative `url:"symbol,omitempty"`
Limit *int `url:"limit,omitempty"`
Cursor *string `url:"cursor,omitempty"`
}
// DerivativesInstrumentsForOption :
func (s *DerivativeCommonService) DerivativesInstrumentsForOption(param DerivativesInstrumentsForOptionParam) (*DerivativesInstrumentsForOptionResponse, error) {
var res DerivativesInstrumentsForOptionResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
queryString.Add("category", string(CategoryDerivativeOption))
if err := s.client.getPublicly("/derivatives/v3/public/instruments-info", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// DerivativesMarkPriceKlineResponse :
type DerivativesMarkPriceKlineResponse struct {
CommonV3Response `json:",inline"`
Result DerivativesMarkPriceKlineResult `json:"result"`
}
// DerivativesMarkPriceKlineResult :
type DerivativesMarkPriceKlineResult struct {
Category CategoryDerivative `json:"category"`
Symbol SymbolDerivative `json:"symbol"`
List []DerivativesMarkPriceKlineResultListItem `json:"list"`
}
// DerivativesMarkPriceKlineResultListItem :
type DerivativesMarkPriceKlineResultListItem struct {
Start string `json:"start"`
Open string `json:"open"`
High string `json:"high"`
Low string `json:"low"`
Close string `json:"close"`
}
// UnmarshalJSON :
func (r *DerivativesMarkPriceKlineResultListItem) UnmarshalJSON(data []byte) error {
parsedData := []interface{}{}
if err := json.Unmarshal(data, &parsedData); err != nil {
return err
}
if len(parsedData) != 5 {
return errors.New("so far len(items) must be 5, please check it on documents")
}
*r = DerivativesMarkPriceKlineResultListItem{
Start: parsedData[0].(string),
Open: parsedData[1].(string),
High: parsedData[2].(string),
Low: parsedData[3].(string),
Close: parsedData[4].(string),
}
return nil
}
// DerivativesMarkPriceKlineParam :
type DerivativesMarkPriceKlineParam struct {
Category CategoryDerivative `url:"category"`
Symbol SymbolDerivative `url:"symbol"`
Interval Interval `url:"interval"`
Start int64 `url:"start"` // timestamp point for result, in milliseconds
End int64 `url:"end"` // timestamp point for result, in milliseconds
Limit *int `url:"limit,omitempty"`
}
// DerivativesMarkPriceKline :
func (s *DerivativeCommonService) DerivativesMarkPriceKline(param DerivativesMarkPriceKlineParam) (*DerivativesMarkPriceKlineResponse, error) {
var res DerivativesMarkPriceKlineResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getPublicly("/derivatives/v3/public/mark-price-kline", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// DerivativesIndexPriceKlineResponse :
type DerivativesIndexPriceKlineResponse struct {
CommonV3Response `json:",inline"`
Result DerivativesIndexPriceKlineResult `json:"result"`
}
// DerivativesIndexPriceKlineResult :
type DerivativesIndexPriceKlineResult struct {
Category CategoryDerivative `json:"category"`
Symbol SymbolDerivative `json:"symbol"`
List []DerivativesIndexPriceKlineResultListItem `json:"list"`
}
// DerivativesIndexPriceKlineResultListItem :
type DerivativesIndexPriceKlineResultListItem struct {
Start string `json:"start"`
Open string `json:"open"`
High string `json:"high"`
Low string `json:"low"`
Close string `json:"close"`
}
// UnmarshalJSON :
func (r *DerivativesIndexPriceKlineResultListItem) UnmarshalJSON(data []byte) error {
parsedData := []interface{}{}
if err := json.Unmarshal(data, &parsedData); err != nil {
return err
}
if len(parsedData) != 5 {
return errors.New("so far len(items) must be 5, please check it on documents")
}
*r = DerivativesIndexPriceKlineResultListItem{
Start: parsedData[0].(string),
Open: parsedData[1].(string),
High: parsedData[2].(string),
Low: parsedData[3].(string),
Close: parsedData[4].(string),
}
return nil
}
// DerivativesIndexPriceKlineParam :
type DerivativesIndexPriceKlineParam struct {
Category CategoryDerivative `url:"category"`
Symbol SymbolDerivative `url:"symbol"`
Interval Interval `url:"interval"`
Start int64 `url:"start"` // timestamp point for result, in milliseconds
End int64 `url:"end"` // timestamp point for result, in milliseconds
Limit *int `url:"limit,omitempty"`
}
// DerivativesIndexPriceKline :
func (s *DerivativeCommonService) DerivativesIndexPriceKline(param DerivativesIndexPriceKlineParam) (*DerivativesIndexPriceKlineResponse, error) {
var res DerivativesIndexPriceKlineResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getPublicly("/derivatives/v3/public/index-price-kline", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}