-
Notifications
You must be signed in to change notification settings - Fork 3
/
account_service.go
448 lines (395 loc) · 11.3 KB
/
account_service.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
package okex
import (
"context"
"encoding/json"
"net/http"
)
// GetBalanceService get account balance
type GetBalanceService struct {
c *Client
ccy *string
}
// Set currency ccy
func (s *GetBalanceService) Currencies(ccy string) *GetBalanceService {
s.ccy = &ccy
return s
}
// Do send request
func (s *GetBalanceService) Do(ctx context.Context, opts ...RequestOption) (res *GetBalanceServiceResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v5/account/balance",
secType: secTypeSigned,
}
if s.ccy != nil {
r.setParam("ccy", *s.ccy)
//r.query.Add("ccy", *s.ccy)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(GetBalanceServiceResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// Balance define user balance of your account
type GetBalanceServiceResponse struct {
Code string `json:"code"`
Data []*Balance `json:"data"`
Msg string `json:"msg"`
}
// Balance define account info
type BalanceDetail struct {
AvailBal string `json:"availBal"`
AvailEq string `json:"availEq"`
CashBal string `json:"cashBal"`
Ccy string `json:"ccy"`
CrossLiab string `json:"crossLiab"`
DisEq string `json:"disEq"`
Eq string `json:"eq"`
EqUsd string `json:"eqUsd"`
FrozenBal string `json:"frozenBal"`
Interest string `json:"interest"`
IsoEq string `json:"isoEq"`
IsoLiab string `json:"isoLiab"`
Liab string `json:"liab"`
MaxLoan string `json:"maxLoan"`
MgnRatio string `json:"mgnRatio"`
NotionalLever string `json:"notionalLever"`
OrdFrozen string `json:"ordFrozen"`
Twap string `json:"twap"`
UTime string `json:"uTime"`
Upl string `json:"upl"`
PplLiab string `json:"uplLiab"`
StgyEq string `json:"stgyEq"`
}
type Balance struct {
AdjEq string `json:"adjEq"`
Details []*BalanceDetail `json:"details"`
Imr string `json:"imr"`
IsoEq string `json:"isoEq"`
MgnRatio string `json:"mgnRatio"`
Mnr string `json:"mnr"`
NotionalUsd string `json:"notionalUsd"`
OrdFroz string `json:"ordFroz"`
TotalEq string `json:"totalEq"`
UTime string `json:"uTime"`
}
// GetPositionsService
type GetPositionsService struct {
c *Client
instType *string
instId *string
posId *string
}
// Set Instrument Type
func (s *GetPositionsService) InstrumentType(instType string) *GetPositionsService {
s.instType = &instType
return s
}
// Set Instrument Id
func (s *GetPositionsService) InstrumentId(instId string) *GetPositionsService {
s.instId = &instId
return s
}
// Set Position Id
func (s *GetPositionsService) PositionId(posId string) *GetPositionsService {
s.posId = &posId
return s
}
// Do send request
func (s *GetPositionsService) Do(ctx context.Context, opts ...RequestOption) (res *GetPositionsServiceResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v5/account/positions",
secType: secTypeSigned,
}
if s.instType != nil {
r.setParam("instType", *s.instType)
}
if s.instId != nil {
r.setParam("instId", *s.instId)
}
if s.posId != nil {
r.setParam("posId", *s.posId)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(GetPositionsServiceResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// GetPositionsServiceResponse struct as https://www.okex.com/docs-v5/en/#rest-api-account-get-positions
type GetPositionsServiceResponse struct {
Code string `json:"code"`
Data []*PositionDetail `json:"data"`
Msg string `json:"msg"`
}
// Position detail inside the positions
type PositionDetail struct {
Adl string `json:"adl"`
AvailPos string `json:"availPos"`
AvgPx string `json:"avgPx"`
CTime string `json:"cTime"`
Ccy string `json:"ccy"`
DeltaBS string `json:"deltaBS"`
DeltaPA string `json:"deltaPA"`
GammaBS string `json:"gammaBS"`
GammaPA string `json:"gammaPA"`
Imr string `json:"imr"`
InstId string `json:"instId"`
InstType string `json:"instType"`
Interest string `json:"interest"`
Last string `json:"last"`
Lever string `json:"lever"`
Liab string `json:"liab"`
LiabCcy string `json:"liabCcy"`
LiqPx string `json:"liqPx"`
Margin string `json:"margin"`
MgnMode string `json:"mgnMode"`
MgnRatio string `json:"mgnRatio"`
Mmr string `json:"mmr"`
NotionalCcy string `json:"notionalCcy"` // this is for AccountAndPositionRisk
NotionalUsd string `json:"notionalUsd"`
OptVal string `json:"optVal"`
PTime string `json:"pTime"`
Pos string `json:"pos"`
PosCcy string `json:"posCcy"`
PosId string `json:"posId"`
PosSide string `json:"posSide"`
ThetaBS string `json:"thetaBS"`
TradeId string `json:"tradeId"`
UTime string `json:"uTime"`
Upl string `json:"upl"`
UplRatio string `json:"uplRatio"`
VegaBS string `json:"vegaBS"`
VegaPA string `json:"vegaPA"`
}
// GetAccountAndPositionRiskService
type GetAccountAndPositionRiskService struct {
c *Client
instType *string
}
// Do send request
func (s *GetAccountAndPositionRiskService) Do(ctx context.Context, opts ...RequestOption) (res *GetAccountAndPositionRiskServiceResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v5/account/account-position-risk",
secType: secTypeSigned,
}
if s.instType != nil {
r.setParam("instType", *s.instType)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(GetAccountAndPositionRiskServiceResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// Response to GetAccountAndPositionRiskService
type GetAccountAndPositionRiskServiceResponse struct {
Code string `json:"code"`
Data []*AccountAndPositionRisk `json:"data"`
Msg string `json:"msg"`
}
type AccountAndPositionRisk struct {
Ts string `json:"ts"`
AdjEq string `json:"adjEq"`
BalData []BalanceDetail `json:"balData"`
PosData []PositionDetail `json:"posData"`
}
// GetAccountConfigurationService
type GetAccountConfigurationService struct {
c *Client
}
// Do send request
func (s *GetAccountConfigurationService) Do(ctx context.Context, opts ...RequestOption) (res *GetAccountConfigurationServiceResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v5/account/config",
secType: secTypeSigned,
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(GetAccountConfigurationServiceResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// Response to GetAccountConfigurationService
type GetAccountConfigurationServiceResponse struct {
Code string `json:"code"`
Data []*AccountConfiguration `json:"data"`
Msg string `json:"msg"`
}
type AccountConfiguration struct {
Uid string `json:"udi"`
AcctLv string `json:"acctLc"`
PosMode string `json:"posMode"`
AutoLoan bool `json:"autoLoan"`
GreeksType string `json:"greeksType"`
Level string `json:"level"`
LevelTmp string `json:"levelTmp"`
}
// SetAccountPositionModeService
type SetAccountPositionModeService struct {
c *Client
posMode string
}
// Set pos Mode 'long_short_mode' or 'net_mode'
func (s *SetAccountPositionModeService) PosMode(posMode string) *SetAccountPositionModeService {
s.posMode = posMode
return s
}
// Do send request
func (s *SetAccountPositionModeService) Do(ctx context.Context, opts ...RequestOption) (res *SetAccountPositionModeServiceResponse, err error) {
r := &request{
method: http.MethodPost,
endpoint: "/api/v5/account/set-position-mode",
secType: secTypeSigned,
}
r.setBodyParam("posMode", s.posMode)
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(SetAccountPositionModeServiceResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// Response to SetAccountPositionModeServiceService
type SetAccountPositionModeServiceResponse struct {
Code string `json:"code"`
Data []*interface{} `json:"data"`
Msg string `json:"msg"`
}
// GetLeverageService get account balance
type GetLeverageService struct {
c *Client
instId *string
mgnMode *string
}
// Set Instrument
func (s *GetLeverageService) InstrumentId(instId string) *GetLeverageService {
s.instId = &instId
return s
}
// Set Margin Mode
func (s *GetLeverageService) MarginMode(mgnMode string) *GetLeverageService {
s.mgnMode = &mgnMode
return s
}
// Do send request
func (s *GetLeverageService) Do(ctx context.Context, opts ...RequestOption) (res *GetLeverageServiceResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v5/account/leverage-info",
secType: secTypeSigned,
}
if s.instId != nil {
r.setParam("instId", *s.instId)
}
if s.mgnMode != nil {
r.setParam("mgnMode", *s.mgnMode)
}
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(GetLeverageServiceResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// Balance define user balance of your account
type GetLeverageServiceResponse struct {
Code string `json:"code"`
Data []*LeverageDetail `json:"data"`
Msg string `json:"msg"`
}
type LeverageDetail struct {
InstId string `json:"instId"`
MgnMode string `json:"mgnMode"`
PosSide string `json:"posSide"`
Lever string `json:"lever"`
}
// GetMaximumLoanService get account balance
type GetMaximumLoanService struct {
c *Client
instId string
mgnMode string
mgnCcy string
}
// Set currency instId
func (s *GetMaximumLoanService) InstrumentId(instId string) *GetMaximumLoanService {
s.instId = instId
return s
}
// Set currency mgnMode
func (s *GetMaximumLoanService) ManagementMode(mgnMode string) *GetMaximumLoanService {
s.mgnMode = mgnMode
return s
}
// Set currency mgnMode
func (s *GetMaximumLoanService) ManagementCurrency(mgnCcy string) *GetMaximumLoanService {
s.mgnCcy = mgnCcy
return s
}
// Do send request
func (s *GetMaximumLoanService) Do(ctx context.Context, opts ...RequestOption) (res *GetMaximumLoanServiceResponse, err error) {
r := &request{
method: http.MethodGet,
endpoint: "/api/v5/account/max-loan",
secType: secTypeSigned,
}
r.setParam("instId", s.instId)
r.setParam("mgnMode", s.mgnMode)
r.setParam("mgnCcy", s.mgnCcy)
data, err := s.c.callAPI(ctx, r, opts...)
if err != nil {
return nil, err
}
res = new(GetMaximumLoanServiceResponse)
err = json.Unmarshal(data, res)
if err != nil {
return nil, err
}
return res, nil
}
// Get the maximum loan of instrument response
type GetMaximumLoanServiceResponse struct {
Code string `json:"code"`
Data []*MaxLoan `json:"data"`
Msg string `json:"msg"`
}
type MaxLoan struct {
InstId string `json:"instId"`
MgnMode string `json:"mgnMode"`
MgnCcy string `json:"mgnCcy"`
MaxLoan string `json:"maxLoan"`
Ccy string `json:"ccy"`
Side string `json:"side"`
}