forked from amir-the-h/okex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublicdata_models.go
163 lines (161 loc) · 6.41 KB
/
publicdata_models.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
package publicdata
import (
"github.com/limebear/okex"
)
type (
Instrument struct {
InstID string `json:"instId"`
Uly string `json:"uly,omitempty"`
BaseCcy string `json:"baseCcy,omitempty"`
QuoteCcy string `json:"quoteCcy,omitempty"`
SettleCcy string `json:"settleCcy,omitempty"`
CtValCcy string `json:"ctValCcy,omitempty"`
CtVal okex.JSONFloat64 `json:"ctVal,omitempty"`
CtMult okex.JSONFloat64 `json:"ctMult,omitempty"`
Stk okex.JSONFloat64 `json:"stk,omitempty"`
TickSz okex.JSONFloat64 `json:"tickSz,omitempty"`
LotSz okex.JSONFloat64 `json:"lotSz,omitempty"`
MinSz okex.JSONFloat64 `json:"minSz,omitempty"`
Lever okex.JSONFloat64 `json:"lever"`
InstType okex.InstrumentType `json:"instType"`
Category okex.FeeCategory `json:"category,string"`
OptType okex.OptionType `json:"optType,omitempty"`
ListTime okex.JSONTime `json:"listTime"`
ExpTime okex.JSONTime `json:"expTime,omitempty"`
CtType okex.ContractType `json:"ctType,omitempty"`
Alias okex.AliasType `json:"alias,omitempty"`
State okex.InstrumentState `json:"state"`
}
DeliveryExerciseHistory struct {
Details []*DeliveryExerciseHistoryDetails `json:"details"`
TS okex.JSONTime `json:"ts"`
}
DeliveryExerciseHistoryDetails struct {
InstID string `json:"instId"`
Px okex.JSONFloat64 `json:"px"`
Type okex.DeliveryExerciseType `json:"type"`
}
OpenInterest struct {
InstID string `json:"instId"`
Oi okex.JSONFloat64 `json:"oi"`
OiCcy okex.JSONFloat64 `json:"oiCcy"`
InstType okex.InstrumentType `json:"instType"`
TS okex.JSONTime `json:"ts"`
}
FundingRate struct {
InstID string `json:"instId"`
InstType okex.InstrumentType `json:"instType"`
FundingRate okex.JSONFloat64 `json:"fundingRate"`
NextFundingRate okex.JSONFloat64 `json:"NextFundingRate"`
FundingTime okex.JSONTime `json:"fundingTime"`
NextFundingTime okex.JSONTime `json:"nextFundingTime"`
}
LimitPrice struct {
InstID string `json:"instId"`
InstType okex.InstrumentType `json:"instType"`
BuyLmt okex.JSONFloat64 `json:"buyLmt"`
SellLmt okex.JSONFloat64 `json:"sellLmt"`
TS okex.JSONTime `json:"ts"`
}
EstimatedDeliveryExercisePrice struct {
InstID string `json:"instId"`
InstType okex.InstrumentType `json:"instType"`
SettlePx okex.JSONFloat64 `json:"settlePx"`
TS okex.JSONTime `json:"ts"`
}
OptionMarketData struct {
InstID string `json:"instId"`
Uly string `json:"uly"`
InstType okex.InstrumentType `json:"instType"`
Delta okex.JSONFloat64 `json:"delta"`
Gamma okex.JSONFloat64 `json:"gamma"`
Vega okex.JSONFloat64 `json:"vega"`
Theta okex.JSONFloat64 `json:"theta"`
DeltaBS okex.JSONFloat64 `json:"deltaBS"`
GammaBS okex.JSONFloat64 `json:"gammaBS"`
VegaBS okex.JSONFloat64 `json:"vegaBS"`
ThetaBS okex.JSONFloat64 `json:"thetaBS"`
Lever okex.JSONFloat64 `json:"lever"`
MarkVol okex.JSONFloat64 `json:"markVol"`
BidVol okex.JSONFloat64 `json:"bidVol"`
AskVol okex.JSONFloat64 `json:"askVol"`
RealVol okex.JSONFloat64 `json:"realVol"`
TS okex.JSONTime `json:"ts"`
}
GetDiscountRateAndInterestFreeQuota struct {
Ccy string `json:"ccy"`
Amt okex.JSONFloat64 `json:"amt"`
DiscountLv okex.JSONInt64 `json:"discountLv"`
DiscountInfo []*DiscountInfo `json:"discountInfo"`
}
DiscountInfo struct {
DiscountRate okex.JSONInt64 `json:"discountRate"`
MaxAmt okex.JSONInt64 `json:"maxAmt"`
MinAmt okex.JSONInt64 `json:"minAmt"`
}
SystemTime struct {
TS okex.JSONTime `json:"ts"`
}
LiquidationOrder struct {
InstID string `json:"instId"`
Uly string `json:"uly,omitempty"`
InstType okex.InstrumentType `json:"instType"`
TotalLoss okex.JSONFloat64 `json:"totalLoss"`
Details []*LiquidationOrderDetail `json:"details"`
}
LiquidationOrderDetail struct {
Ccy string `json:"ccy,omitempty"`
Side okex.OrderSide `json:"side"`
OosSide okex.PositionSide `json:"posSide"`
BkPx okex.JSONFloat64 `json:"bkPx"`
Sz okex.JSONFloat64 `json:"sz"`
BkLoss okex.JSONFloat64 `json:"bkLoss"`
TS okex.JSONTime `json:"ts"`
}
MarkPrice struct {
InstID string `json:"instId"`
InstType okex.InstrumentType `json:"instType"`
MarkPx okex.JSONFloat64 `json:"markPx"`
TS okex.JSONTime `json:"ts"`
}
PositionTier struct {
InstID string `json:"instId"`
Uly string `json:"uly,omitempty"`
InstType okex.InstrumentType `json:"instType"`
Tier okex.JSONInt64 `json:"tier"`
MinSz okex.JSONFloat64 `json:"minSz"`
MaxSz okex.JSONFloat64 `json:"maxSz"`
Mmr okex.JSONFloat64 `json:"mmr"`
Imr okex.JSONFloat64 `json:"imr"`
OptMgnFactor okex.JSONFloat64 `json:"optMgnFactor,omitempty"`
QuoteMaxLoan okex.JSONFloat64 `json:"quoteMaxLoan,omitempty"`
BaseMaxLoan okex.JSONFloat64 `json:"baseMaxLoan,omitempty"`
MaxLever okex.JSONFloat64 `json:"maxLever"`
TS okex.JSONTime `json:"ts"`
}
InterestRateAndLoanQuota struct {
Basic []*InterestRateAndLoanBasic `json:"basic"`
Vip []*InterestRateAndLoanUser `json:"vip"`
Regular []*InterestRateAndLoanUser `json:"regular"`
}
InterestRateAndLoanBasic struct {
Ccy string `json:"ccy"`
Rate okex.JSONFloat64 `json:"rate"`
Quota okex.JSONFloat64 `json:"quota"`
}
InterestRateAndLoanUser struct {
Level string `json:"level"`
IrDiscount okex.JSONFloat64 `json:"irDiscount"`
LoanQuotaCoef int `json:"loanQuotaCoef,string"`
}
State struct {
Title string `json:"title"`
State string `json:"state"`
Href string `json:"href"`
ServiceType string `json:"serviceType"`
System string `json:"system"`
ScheDesc string `json:"scheDesc"`
Begin okex.JSONTime `json:"begin"`
End okex.JSONTime `json:"end"`
}
)