-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexchange_info.go
65 lines (55 loc) · 1.41 KB
/
exchange_info.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
package binance
import (
"encoding/json"
"time"
)
type ExchangeInfo struct {
Timezone string
ServerTime time.Duration
RateLimits []RateLimits
ExchangeFilters []string
Symbols []Symbol
}
type RateLimits struct {
RateLimitType string
Interval string
Limit int
}
type Symbol struct {
Symbol string
Status string
BaseAsset string
BaseAssetPrecision int
QuoteAsset string
QuotePrecision int
OrderTypes []string
IcebergAllowed bool
Filters []Filter
}
type Filter struct {
FilterType string
MinPrice float64 `json:",omitempty,string"`
MaxPrice float64 `json:",omitempty,string"`
TickSize float64 `json:",omitempty,string"`
MinQuantity float64 `json:"minQty,omitempty,string"`
MaxQuantity float64 `json:"maxQty,omitempty,string"`
StepSize float64 `json:",omitempty,string"`
MinNotional float64 `json:",omitempty,string"`
}
func parseExchangeInfo(jsonContent []byte) (*ExchangeInfo, error) {
exchange := &ExchangeInfo{}
err := json.Unmarshal(jsonContent, &exchange)
return exchange, err
}
func (sdk Sdk) ExchangeInfo() (*ExchangeInfo, error) {
request := newRequest("GET", "/api/v1/exchangeInfo")
response, err := sdk.client.Do(request)
if err != nil {
return nil, err
}
exchangeInfo, err := parseExchangeInfo(response)
if err != nil {
return nil, err
}
return exchangeInfo, nil
}