-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfutures.go
291 lines (250 loc) · 8.27 KB
/
futures.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
package goftx
import (
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/pkg/errors"
"github.com/shopspring/decimal"
)
type Future struct {
Ask decimal.Decimal `json:"ask"`
Bid decimal.Decimal `json:"bid"`
Change1h decimal.Decimal `json:"change1h"`
Change24h decimal.Decimal `json:"change24h"`
ChangeBod decimal.Decimal `json:"changeBod"`
VolumeUsd24h float64 `json:"volumeUsd24h"`
Volume float64 `json:"volume"`
Description string `json:"description"`
Enabled bool `json:"enabled"`
Expired bool `json:"expired"`
Expiry time.Time `json:"expiry"`
Index float64 `json:"index"`
ImfFactor float64 `json:"imfFactor"`
Last decimal.Decimal `json:"last"`
LowerBound decimal.Decimal `json:"lowerBound"`
Mark decimal.Decimal `json:"mark"`
Name string `json:"name"`
Perpetual bool `json:"perpetual"`
PositionLimitWeight float64 `json:"positionLimitWeight"`
PostOnly bool `json:"postOnly"`
PriceIncrement decimal.Decimal `json:"priceIncrement"`
SizeIncrement decimal.Decimal `json:"sizeIncrement"`
Underlying string `json:"underlying"`
UpperBound decimal.Decimal `json:"upperBound"`
Type string `json:"type"`
}
type FutureExpired struct {
Ask decimal.Decimal `json:"ask"`
Bid decimal.Decimal `json:"bid"`
Description string `json:"description"`
Enabled bool `json:"enabled"`
Expired bool `json:"expired"`
Expiry time.Time `json:"expiry"`
ExpiryDescription string `json:"expiryDescription"`
Group string `json:"group"`
ImfFactor decimal.Decimal `json:"imfFactor"`
Index decimal.Decimal `json:"index"`
Last decimal.Decimal `json:"last"`
LowerBound decimal.Decimal `json:"lowerBound"`
MarginPrice decimal.Decimal `json:"marginPrice"`
Mark decimal.Decimal `json:"mark"`
MoveStart string `json:"moveStart"`
Name string `json:"name"`
Perpetual bool `json:"perpetual"`
PositionLimitWeight decimal.Decimal `json:"positionLimitWeight"`
PostOnly bool `json:"postOnly"`
PriceIncrement decimal.Decimal `json:"priceIncrement"`
SizeIncrement decimal.Decimal `json:"sizeIncrement"`
Type string `json:"type"`
Underlying string `json:"underlying"`
UnderlyingDescription string `json:"underlyingDescription"`
UpperBound decimal.Decimal `json:"upperBound"`
}
type FutureStats struct {
Volume decimal.Decimal `json:"volume"`
NextFundingRate float64 `json:"nextFundingRate"`
NextFundingTime time.Time `json:"nextFundingTime"`
ExpirationPrice decimal.Decimal `json:"expirationPrice"`
PredictedExpirationPrice decimal.Decimal `json:"predictedExpirationPrice"`
StrikePrice decimal.Decimal `json:"strikePrice"`
OpenInterest float64 `json:"openInterest"`
}
type GetFundingRatesParams struct {
StartTime *int `json:"start_time"`
EndTime *int `json:"end_time"`
Future *string `json:"future"`
}
type FundingRate struct {
Future string `json:"future"`
Rate decimal.Decimal `json:"rate"`
Time time.Time `json:"time"`
}
type GetHistoricalIndexParams struct {
IndexName string `json:"index_name"`
Resolution int `json:"resolution"`
Limit *int `json:"limit"`
StartTime *int `json:"start_time"`
EndTime *int `json:"end_time"`
}
type HistoricalIndex struct {
Open decimal.Decimal `json:"open"`
High decimal.Decimal `json:"high"`
Low decimal.Decimal `json:"low"`
Close decimal.Decimal `json:"close"`
StartTime time.Time `json:"startTime"`
Volume decimal.Decimal `json:"volume"`
}
const (
apiFutures = "/futures"
apiFundingRates = "/funding_rates"
apiIndexWeights = "/indexes/%s/weights"
apiIndexCandles = "/indexes/%s/candles"
apiExpiredFutures = "expired_futures"
)
type Futures struct {
client *Client
}
func (f *Futures) GetFutures() ([]Future, error) {
request, err := f.client.prepareRequest(Request{
Method: http.MethodGet,
URL: fmt.Sprintf("%s%s", apiUrl, apiFutures),
})
if err != nil {
return nil, errors.WithStack(err)
}
response, err := f.client.do(request)
if err != nil {
return nil, errors.WithStack(err)
}
var result []Future
err = json.Unmarshal(response, &result)
if err != nil {
return nil, errors.WithStack(err)
}
return result, nil
}
func (f *Futures) GetFuture(name string) (*Future, error) {
request, err := f.client.prepareRequest(Request{
Method: http.MethodGet,
URL: fmt.Sprintf("%s%s/%s", apiUrl, apiFutures, name),
})
if err != nil {
return nil, errors.WithStack(err)
}
response, err := f.client.do(request)
if err != nil {
return nil, errors.WithStack(err)
}
var result *Future
err = json.Unmarshal(response, &result)
if err != nil {
return nil, errors.WithStack(err)
}
return result, nil
}
func (f *Futures) GetFutureStats(name string) (*FutureStats, error) {
request, err := f.client.prepareRequest(Request{
Method: http.MethodGet,
URL: fmt.Sprintf("%s%s/%s/stats", apiUrl, apiFutures, name),
})
if err != nil {
return nil, errors.WithStack(err)
}
response, err := f.client.do(request)
if err != nil {
return nil, errors.WithStack(err)
}
var result *FutureStats
err = json.Unmarshal(response, &result)
if err != nil {
return nil, errors.WithStack(err)
}
return result, nil
}
func (f *Futures) GetFundingRates(params *GetFundingRatesParams) ([]FundingRate, error) {
queryParams, err := PrepareQueryParams(params)
if err != nil {
return nil, errors.WithStack(err)
}
request, err := f.client.prepareRequest(Request{
Method: http.MethodGet,
URL: fmt.Sprintf("%s%s", apiUrl, apiFundingRates),
Params: queryParams,
})
if err != nil {
return nil, errors.WithStack(err)
}
response, err := f.client.do(request)
if err != nil {
return nil, errors.WithStack(err)
}
var result []FundingRate
err = json.Unmarshal(response, &result)
if err != nil {
return nil, errors.WithStack(err)
}
return result, nil
}
func (f *Futures) GetIndexWeights(indexName string) (map[string]decimal.Decimal, error) {
request, err := f.client.prepareRequest(Request{
Method: http.MethodGet,
URL: fmt.Sprintf("%s%s", apiUrl, fmt.Sprintf(apiIndexWeights, indexName)),
})
if err != nil {
return nil, errors.WithStack(err)
}
response, err := f.client.do(request)
if err != nil {
return nil, errors.WithStack(err)
}
result := make(map[string]decimal.Decimal)
err = json.Unmarshal(response, &result)
if err != nil {
return nil, errors.WithStack(err)
}
return result, nil
}
func (f *Futures) GetExpiredFutures() ([]FutureExpired, error) {
request, err := f.client.prepareRequest(Request{
Method: http.MethodGet,
URL: fmt.Sprintf("%s%s", apiUrl, apiExpiredFutures),
})
if err != nil {
return nil, errors.WithStack(err)
}
response, err := f.client.do(request)
if err != nil {
return nil, errors.WithStack(err)
}
var result []FutureExpired
err = json.Unmarshal(response, &result)
if err != nil {
return nil, errors.WithStack(err)
}
return result, nil
}
func (f *Futures) GetHistoricalIndex(market string, params *GetHistoricalIndexParams) ([]HistoricalIndex, error) {
queryParams, err := PrepareQueryParams(params)
if err != nil {
return nil, errors.WithStack(err)
}
request, err := f.client.prepareRequest(Request{
Method: http.MethodGet,
URL: fmt.Sprintf("%s%s", apiUrl, fmt.Sprintf(apiIndexCandles, market)),
Params: queryParams,
})
if err != nil {
return nil, errors.WithStack(err)
}
response, err := f.client.do(request)
if err != nil {
return nil, errors.WithStack(err)
}
var result []HistoricalIndex
err = json.Unmarshal(response, &result)
if err != nil {
return nil, errors.WithStack(err)
}
return result, nil
}