-
Notifications
You must be signed in to change notification settings - Fork 69
/
market.go
939 lines (855 loc) · 24.5 KB
/
market.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
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
package binance_connector
import (
"context"
"encoding/json"
"math/big"
"net/http"
)
// Binance Test Connectivity endpoint (GET /api/v3/ping)
type Ping struct {
c *Client
}
// Send the request
func (s *Ping) Do(ctx context.Context, opts ...RequestOption) (err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/ping",
secType: secTypeNone,
}
_, err = s.c.callAPI(ctx, r, opts...)
if err != nil {
return err
}
return nil
}
// Binance Check Server Time endpoint (GET /api/v3/time)
type ServerTime struct {
c *Client
}
// Send the request
func (s *ServerTime) Do(ctx context.Context, opts ...RequestOption) (res *ServerTimeResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/time",
secType: secTypeNone,
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(ServerTimeResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// ServerTimeResponse define server time response
type ServerTimeResponse struct {
ServerTime uint64 `json:"serverTime"`
}
// Binance Exchange Information endpoint (GET /api/v3/exchangeInfo)
type ExchangeInfo struct {
c *Client
}
// Send the request
func (s *ExchangeInfo) Do(ctx context.Context, opts ...RequestOption) (res *ExchangeInfoResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/exchangeInfo",
secType: secTypeNone,
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(ExchangeInfoResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// ExchangeInfoResponse define exchange info response
type ExchangeInfoResponse struct {
Timezone string `json:"timezone"`
ServerTime uint64 `json:"serverTime"`
RateLimits []*RateLimit `json:"rateLimits"`
ExchangeFilters []*ExchangeFilter `json:"exchangeFilters"`
Symbols []*SymbolInfo `json:"symbols"`
}
// RateLimit define rate limit
type RateLimit struct {
RateLimitType string `json:"rateLimitType"`
Interval string `json:"interval"`
Limit int `json:"limit"`
}
// ExchangeFilter define exchange filter
type ExchangeFilter struct {
FilterType string `json:"filterType"`
MaxNumAlgo int64 `json:"maxNumAlgoOrders"`
}
// Symbol define symbol
type SymbolInfo struct {
Symbol string `json:"symbol"`
Status string `json:"status"`
BaseAsset string `json:"baseAsset"`
BaseAssetPrecision int64 `json:"baseAssetPrecision"`
QuoteAsset string `json:"quoteAsset"`
QuotePrecision int64 `json:"quotePrecision"`
QuoteAssetPrecision int64 `json:"quoteAssetPrecision"`
OrderTypes []string `json:"orderTypes"`
IcebergAllowed bool `json:"icebergAllowed"`
OcoAllowed bool `json:"ocoAllowed"`
QuoteOrderQtyMarketAllowed bool `json:"quoteOrderQtyMarketAllowed"`
AllowTrailingStop bool `json:"allowTrailingStop"`
CancelReplaceAllowed bool `json:"cancelReplaceAllowed"`
IsSpotTradingAllowed bool `json:"isSpotTradingAllowed"`
IsMarginTradingAllowed bool `json:"isMarginTradingAllowed"`
Filters []*SymbolFilter `json:"filters"`
Permissions []string `json:"permissions"`
PermissionSets [][]string `json:"permissionSets"`
DefaultSelfTradePreventionMode string `json:"defaultSelfTradePreventionMode"`
AllowedSelfTradePreventionModes []string `json:"allowedSelfTradePreventionModes"`
}
// SymbolFilter define symbol filter
type SymbolFilter struct {
ApplyMinToMarket bool `json:"applyMinToMarket"`
ApplyMaxToMarket bool `json:"applyMaxToMarket"`
AskMultiplierDown string `json:"askMultiplierDown"`
AskMultiplierUp string `json:"askMultiplierUp"`
AvgPriceMins int64 `json:"avgPriceMins"`
BidMultiplierDown string `json:"bidMultiplierDown"`
BidMultiplierUp string `json:"bidMultiplierUp"`
FilterType string `json:"filterType"`
Limit uint `json:"limit"`
MaxNotional string `json:"maxNotional"`
MaxNumAlgoOrders int64 `json:"maxNumAlgoOrders"`
MaxNumOrders int64 `json:"maxNumOrders"`
MaxPrice string `json:"maxPrice"`
MaxQty string `json:"maxQty"`
MaxTrailingAboveDelta int64 `json:"maxTrailingAboveDelta"`
MaxTrailingBelowDelta int64 `json:"maxTrailingBelowDelta"`
MinNotional string `json:"minNotional"`
MinPrice string `json:"minPrice"`
MinQty string `json:"minQty"`
MinTrailingAboveDelta int64 `json:"minTrailingAboveDelta"`
MinTrailingBelowDelta int64 `json:"minTrailingBelowDelta"`
StepSize string `json:"stepSize"`
TickSize string `json:"tickSize"`
}
// Binance Order Book endpoint (GET /api/v3/depth)
type OrderBook struct {
c *Client
symbol string
limit *int
}
// Symbol set symbol
func (s *OrderBook) Symbol(symbol string) *OrderBook {
s.symbol = symbol
return s
}
// Limit set limit
func (s *OrderBook) Limit(limit int) *OrderBook {
s.limit = &limit
return s
}
// Send the request
func (s *OrderBook) Do(ctx context.Context, opts ...RequestOption) (res *OrderBookResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/depth",
secType: secTypeNone,
}
r.setParam("symbol", s.symbol)
if s.limit != nil {
r.setParam("limit", *s.limit)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(OrderBookResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// OrderBookResponse define order book response
type OrderBookResponse struct {
LastUpdateId uint64 `json:"lastUpdateId"`
Bids [][]*big.Float `json:"bids"`
Asks [][]*big.Float `json:"asks"`
}
// Binance Recent Trades List endpoint (GET /api/v3/trades)
type RecentTradesList struct {
c *Client
symbol string
limit *int
}
// Symbol set symbol
func (s *RecentTradesList) Symbol(symbol string) *RecentTradesList {
s.symbol = symbol
return s
}
// Limit set limit
func (s *RecentTradesList) Limit(limit int) *RecentTradesList {
s.limit = &limit
return s
}
// Send the request
func (s *RecentTradesList) Do(ctx context.Context, opts ...RequestOption) (res []*RecentTradesListResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/trades",
secType: secTypeNone,
}
r.setParam("symbol", s.symbol)
if s.limit != nil {
r.setParam("limit", *s.limit)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
err = json.Unmarshal(data, &res)
if err != nil {
return nil, err
}
return res, nil
}
// RecentTradesListResponse define recent trades list response
type RecentTradesListResponse struct {
Id uint64 `json:"id"`
Price string `json:"price"`
Qty string `json:"qty"`
Time uint64 `json:"time"`
QuoteQty string `json:"quoteQty"`
IsBuyerMaker bool `json:"isBuyerMaker"`
IsBest bool `json:"isBestMatch"`
}
// Binance Old Trade Lookup endpoint (GET /api/v3/historicalTrades)
type HistoricalTradeLookup struct {
c *Client
symbol string
limit *uint
fromId *int64
}
// Symbol set symbol
func (s *HistoricalTradeLookup) Symbol(symbol string) *HistoricalTradeLookup {
s.symbol = symbol
return s
}
// Limit set limit
func (s *HistoricalTradeLookup) Limit(limit uint) *HistoricalTradeLookup {
s.limit = &limit
return s
}
// FromId set fromId
func (s *HistoricalTradeLookup) FromId(fromId int64) *HistoricalTradeLookup {
s.fromId = &fromId
return s
}
// Send the request
func (s *HistoricalTradeLookup) Do(ctx context.Context, opts ...RequestOption) (res []*RecentTradesListResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/historicalTrades",
secType: secTypeAPIKey,
}
r.setParam("symbol", s.symbol)
if s.limit != nil {
r.setParam("limit", *s.limit)
}
if s.fromId != nil {
r.setParam("fromId", *s.fromId)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
err = json.Unmarshal(data, &res)
if err != nil {
return nil, err
}
return res, nil
}
// Binance Compressed/Aggregate Trades List endpoint (GET /api/v3/aggTrades)
type AggTradesList struct {
c *Client
symbol string
limit *int
fromId *int
startTime *uint64
endTime *uint64
}
// Symbol set symbol
func (s *AggTradesList) Symbol(symbol string) *AggTradesList {
s.symbol = symbol
return s
}
// Limit set limit
func (s *AggTradesList) Limit(limit int) *AggTradesList {
s.limit = &limit
return s
}
// FromId set fromId
func (s *AggTradesList) FromId(fromId int) *AggTradesList {
s.fromId = &fromId
return s
}
// StartTime set startTime
func (s *AggTradesList) StartTime(startTime uint64) *AggTradesList {
s.startTime = &startTime
return s
}
// EndTime set endTime
func (s *AggTradesList) EndTime(endTime uint64) *AggTradesList {
s.endTime = &endTime
return s
}
// Send the request
func (s *AggTradesList) Do(ctx context.Context, opts ...RequestOption) (res []*AggTradesListResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/aggTrades",
secType: secTypeNone,
}
r.setParam("symbol", s.symbol)
if s.limit != nil {
r.setParam("limit", *s.limit)
}
if s.fromId != nil {
r.setParam("fromId", *s.fromId)
}
if s.startTime != nil {
r.setParam("startTime", *s.startTime)
}
if s.endTime != nil {
r.setParam("endTime", *s.endTime)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
err = json.Unmarshal(data, &res)
if err != nil {
return nil, err
}
return res, nil
}
// AggTradesListResponse define compressed trades list response
type AggTradesListResponse struct {
AggTradeId uint64 `json:"a"`
Price string `json:"p"`
Qty string `json:"q"`
FirstTradeId uint64 `json:"f"`
LastTradeId uint64 `json:"l"`
Time uint64 `json:"T"`
IsBuyer bool `json:"m"`
IsBest bool `json:"M"`
}
// Binance Kline/Candlestick Data endpoint (GET /api/v3/klines)
type Klines struct {
c *Client
symbol string
interval string
limit *int
startTime *uint64
endTime *uint64
}
// Symbol set symbol
func (s *Klines) Symbol(symbol string) *Klines {
s.symbol = symbol
return s
}
// Interval set interval
func (s *Klines) Interval(interval string) *Klines {
s.interval = interval
return s
}
// Limit set limit
func (s *Klines) Limit(limit int) *Klines {
s.limit = &limit
return s
}
// StartTime set startTime
func (s *Klines) StartTime(startTime uint64) *Klines {
s.startTime = &startTime
return s
}
// EndTime set endTime
func (s *Klines) EndTime(endTime uint64) *Klines {
s.endTime = &endTime
return s
}
func (s *Klines) Do(ctx context.Context, opts ...RequestOption) (res []*KlinesResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/klines",
secType: secTypeNone,
}
r.setParam("symbol", s.symbol)
r.setParam("interval", s.interval)
if s.limit != nil {
r.setParam("limit", *s.limit)
}
if s.startTime != nil {
r.setParam("startTime", *s.startTime)
}
if s.endTime != nil {
r.setParam("endTime", *s.endTime)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
var klinesResponseArray KlinesResponseArray
err = json.Unmarshal(data, &klinesResponseArray)
if err != nil {
return nil, err
}
var klines []*KlinesResponse
for _, kline := range klinesResponseArray {
openTime := kline[0].(float64)
open := kline[1].(string)
high := kline[2].(string)
low := kline[3].(string)
close := kline[4].(string)
volume := kline[5].(string)
closeTime := kline[6].(float64)
quoteAssetVolume := kline[7].(string)
numberOfTrades := kline[8].(float64)
takerBuyBaseAssetVolume := kline[9].(string)
takerBuyQuoteAssetVolume := kline[10].(string)
// create a KlinesResponse struct using the parsed fields
klinesResponse := &KlinesResponse{
OpenTime: uint64(openTime),
Open: open,
High: high,
Low: low,
Close: close,
Volume: volume,
CloseTime: uint64(closeTime),
QuoteAssetVolume: quoteAssetVolume,
NumberOfTrades: uint64(numberOfTrades),
TakerBuyBaseAssetVolume: takerBuyBaseAssetVolume,
TakerBuyQuoteAssetVolume: takerBuyQuoteAssetVolume,
}
klines = append(klines, klinesResponse)
}
return klines, nil
}
type KlinesResponseArray [][]interface{}
// Define Klines response data
type KlinesResponse struct {
OpenTime uint64 `json:"openTime"`
Open string `json:"open"`
High string `json:"high"`
Low string `json:"low"`
Close string `json:"close"`
Volume string `json:"volume"`
CloseTime uint64 `json:"closeTime"`
QuoteAssetVolume string `json:"quoteAssetVolume"`
NumberOfTrades uint64 `json:"numberOfTrades"`
TakerBuyBaseAssetVolume string `json:"takerBuyBaseAssetVolume"`
TakerBuyQuoteAssetVolume string `json:"takerBuyQuoteAssetVolume"`
}
// Binance UI Klines GET /api/v3/uiKlines
type UiKlines struct {
c *Client
symbol string
interval string
limit *int
startTime *uint64
endTime *uint64
}
// Symbol set symbol
func (s *UiKlines) Symbol(symbol string) *UiKlines {
s.symbol = symbol
return s
}
// Interval set interval
func (s *UiKlines) Interval(interval string) *UiKlines {
s.interval = interval
return s
}
// Limit set limit
func (s *UiKlines) Limit(limit int) *UiKlines {
s.limit = &limit
return s
}
// StartTime set startTime
func (s *UiKlines) StartTime(startTime uint64) *UiKlines {
s.startTime = &startTime
return s
}
// EndTime set endTime
func (s *UiKlines) EndTime(endTime uint64) *UiKlines {
s.endTime = &endTime
return s
}
// Send the request
func (s *UiKlines) Do(ctx context.Context, opts ...RequestOption) (res []*UiKlinesResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/uiKlines",
secType: secTypeNone,
}
r.setParam("symbol", s.symbol)
r.setParam("interval", s.interval)
if s.limit != nil {
r.setParam("limit", *s.limit)
}
if s.startTime != nil {
r.setParam("startTime", *s.startTime)
}
if s.endTime != nil {
r.setParam("endTime", *s.endTime)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
var uiklinesResponseArray UiKlinesResponseArray
err = json.Unmarshal(data, &uiklinesResponseArray)
if err != nil {
return nil, err
}
var uiklines []*UiKlinesResponse
for _, uikline := range uiklinesResponseArray {
openTime := uikline[0].(float64)
open := uikline[1].(string)
high := uikline[2].(string)
low := uikline[3].(string)
close := uikline[4].(string)
volume := uikline[5].(string)
closeTime := uikline[6].(float64)
quoteAssetVolume := uikline[7].(string)
numberOfTrades := uikline[8].(float64)
takerBuyBaseAssetVolume := uikline[9].(string)
takerBuyQuoteAssetVolume := uikline[10].(string)
// create a KlinesResponse struct using the parsed fields
uiklinesResponse := &UiKlinesResponse{
OpenTime: uint64(openTime),
Open: open,
High: high,
Low: low,
Close: close,
Volume: volume,
CloseTime: uint64(closeTime),
QuoteAssetVolume: quoteAssetVolume,
NumberOfTrades: uint64(numberOfTrades),
TakerBuyBaseAssetVolume: takerBuyBaseAssetVolume,
TakerBuyQuoteAssetVolume: takerBuyQuoteAssetVolume,
}
uiklines = append(uiklines, uiklinesResponse)
}
return uiklines, nil
}
type UiKlinesResponseArray [][]interface{}
// Define UiKlines response data
type UiKlinesResponse struct {
OpenTime uint64 `json:"openTime"`
Open string `json:"open"`
High string `json:"high"`
Low string `json:"low"`
Close string `json:"close"`
Volume string `json:"volume"`
CloseTime uint64 `json:"closeTime"`
QuoteAssetVolume string `json:"quoteAssetVolume"`
NumberOfTrades uint64 `json:"numberOfTrades"`
TakerBuyBaseAssetVolume string `json:"takerBuyBaseAssetVolume"`
TakerBuyQuoteAssetVolume string `json:"takerBuyQuoteAssetVolume"`
}
// Binance Current Average Price (GET /api/v3/avgPrice)
type AvgPrice struct {
c *Client
symbol string
}
// Symbol set symbol
func (s *AvgPrice) Symbol(symbol string) *AvgPrice {
s.symbol = symbol
return s
}
// Send the request
func (s *AvgPrice) Do(ctx context.Context, opts ...RequestOption) (res *AvgPriceResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/avgPrice",
secType: secTypeNone,
}
r.setParam("symbol", s.symbol)
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(AvgPriceResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// Define AvgPrice response data
type AvgPriceResponse struct {
Mins uint64 `json:"mins"`
Price string `json:"price"`
}
// Binance 24hr Ticker Price Change Statistics (GET /api/v3/ticker/24hr)
type Ticker24hr struct {
c *Client
symbol *string
symbols *[]string
}
// Symbol set symbol
func (s *Ticker24hr) Symbol(symbol string) *Ticker24hr {
s.symbol = &symbol
return s
}
// Symbols set symbols
func (s *Ticker24hr) Symbols(symbols []string) *Ticker24hr {
s.symbols = &symbols
return s
}
// Send the request
func (s *Ticker24hr) Do(ctx context.Context, opts ...RequestOption) (res []*Ticker24hrResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/ticker/24hr",
secType: secTypeNone,
}
if s.symbol != nil {
r.setParam("symbol", *s.symbol)
}
if s.symbols != nil {
s, _ := json.Marshal(s.symbols)
r.setParam("symbols", string(s))
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return []*Ticker24hrResponse{}, err
}
var raw json.RawMessage
err = json.Unmarshal(data, &raw)
if err != nil {
return []*Ticker24hrResponse{}, err
}
if raw[0] == '[' {
res = make([]*Ticker24hrResponse, 0)
err = json.Unmarshal(data, &res)
if err != nil {
return []*Ticker24hrResponse{}, err
}
} else {
// The response is a single object, not an array, make sure to add it to the slice
singleRes := new(Ticker24hrResponse)
err = json.Unmarshal(data, &singleRes)
if err != nil {
return []*Ticker24hrResponse{}, err
}
res = append(res, singleRes)
}
return res, nil
}
// Define Ticker24hr response data
type Ticker24hrResponse struct {
Symbol string `json:"symbol"`
PriceChange string `json:"priceChange"`
PriceChangePercent string `json:"priceChangePercent"`
WeightedAvgPrice string `json:"weightedAvgPrice"`
PrevClosePrice string `json:"prevClosePrice"`
LastPrice string `json:"lastPrice"`
LastQty string `json:"lastQty"`
BidPrice string `json:"bidPrice"`
AskPrice string `json:"askPrice"`
OpenPrice string `json:"openPrice"`
HighPrice string `json:"highPrice"`
LowPrice string `json:"lowPrice"`
Volume string `json:"volume"`
QuoteVolume string `json:"quoteVolume"`
OpenTime uint64 `json:"openTime"`
CloseTime uint64 `json:"closeTime"`
FirstId uint64 `json:"firstId"`
LastId uint64 `json:"lastId"`
Count uint64 `json:"count"`
}
// Binance Symbol Price Ticker (GET /api/v3/ticker/price)
type TickerPrice struct {
c *Client
symbol *string
symbols *[]string
}
// Symbol set symbol
func (s *TickerPrice) Symbol(symbol string) *TickerPrice {
s.symbol = &symbol
return s
}
// Symbols set symbols
func (s *TickerPrice) Symbols(symbols []string) *TickerPrice {
s.symbols = &symbols
return s
}
// Send the request
func (s *TickerPrice) Do(ctx context.Context, opts ...RequestOption) (res *TickerPriceResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/ticker/price",
secType: secTypeNone,
}
if s.symbol != nil {
r.setParam("symbol", *s.symbol)
}
if s.symbols != nil {
r.setParam("symbols", *s.symbols)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(TickerPriceResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// Define TickerPrice response data
type TickerPriceResponse struct {
Symbol string `json:"symbol"`
Price string `json:"price"`
}
// Binance Symbol Order Book Ticker (GET /api/v3/ticker/bookTicker)
type TickerBookTicker struct {
c *Client
symbol *string
symbols *[]string
}
// Symbol set symbol
func (s *TickerBookTicker) Symbol(symbol string) *TickerBookTicker {
s.symbol = &symbol
return s
}
// Symbols set symbols
func (s *TickerBookTicker) Symbols(symbols []string) *TickerBookTicker {
s.symbols = &symbols
return s
}
func (s *TickerBookTicker) Do(ctx context.Context, opts ...RequestOption) (res []*TickerBookTickerResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/ticker/bookTicker",
secType: secTypeNone,
}
if s.symbol != nil {
r.setParam("symbol", *s.symbol)
}
if s.symbols != nil {
s, _ := json.Marshal(s.symbols)
r.setParam("symbols", string(s))
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return []*TickerBookTickerResponse{}, err
}
var raw json.RawMessage
err = json.Unmarshal(data, &raw)
if err != nil {
return []*TickerBookTickerResponse{}, err
}
if raw[0] == '[' {
// The response is an array, unmarshal it as before
res = make([]*TickerBookTickerResponse, 0)
err = json.Unmarshal(data, &res)
if err != nil {
return []*TickerBookTickerResponse{}, err
}
} else {
// The response is a single object, not an array, make sure to add it to the slice
singleRes := new(TickerBookTickerResponse)
err = json.Unmarshal(data, &singleRes)
if err != nil {
return []*TickerBookTickerResponse{}, err
}
res = append(res, singleRes)
}
return res, nil
}
// Define TickerBookTicker response data
type TickerBookTickerResponse struct {
Symbol string `json:"symbol"`
BidPrice string `json:"bidPrice"`
BidQty string `json:"bidQty"`
AskPrice string `json:"askPrice"`
AskQty string `json:"askQty"`
}
// Binance Rolling window price change statistics (GET /api/v3/ticker)
type Ticker struct {
c *Client
symbol string
windowSize *string
tickerType *string
}
// Symbol set symbol
func (s *Ticker) Symbol(symbol string) *Ticker {
s.symbol = symbol
return s
}
// WindowSize set windowSize
func (s *Ticker) WindowSize(windowSize string) *Ticker {
s.windowSize = &windowSize
return s
}
// Type set type
func (s *Ticker) Type(tickerType string) *Ticker {
s.tickerType = &tickerType
return s
}
// Send the request
func (s *Ticker) Do(ctx context.Context, opts ...RequestOption) (res *TickerResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v3/ticker",
secType: secTypeNone,
}
r.setParam("symbol", s.symbol)
if s.windowSize != nil {
r.setParam("windowSize", *s.windowSize)
}
if s.tickerType != nil {
r.setParam("type", *s.tickerType)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(TickerResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// Define Ticker response data
type TickerResponse struct {
Symbol string `json:"symbol"`
PriceChange string `json:"priceChange"`
PriceChangePercent string `json:"priceChangePercent"`
WeightedAvgPrice string `json:"weightedAvgPrice"`
PrevClosePrice string `json:"prevClosePrice"`
LastPrice string `json:"lastPrice"`
LastQty string `json:"lastQty"`
BidPrice string `json:"bidPrice"`
AskPrice string `json:"askPrice"`
OpenPrice string `json:"openPrice"`
HighPrice string `json:"highPrice"`
LowPrice string `json:"lowPrice"`
Volume string `json:"volume"`
QuoteVolume string `json:"quoteVolume"`
OpenTime uint64 `json:"openTime"`
CloseTime uint64 `json:"closeTime"`
FirstId uint64 `json:"firstId"`
LastId uint64 `json:"lastId"`
Count uint64 `json:"count"`
}