-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
enum_derivative_common.go
49 lines (41 loc) · 1.44 KB
/
enum_derivative_common.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
package bybit
// SymbolDerivative :
type SymbolDerivative string
const (
// SymbolDerivativeBTCUSDT :
SymbolDerivativeBTCUSDT = SymbolDerivative("BTCUSDT")
// SymbolDerivativeBTC31MAR23_40000C :
SymbolDerivativeBTC31MAR23_40000C = SymbolDerivative("BTC-31MAR23-40000-C")
)
// CategoryDerivative :
type CategoryDerivative string
const (
// CategoryDerivativeLinear :
CategoryDerivativeLinear = CategoryDerivative("linear")
// CategoryDerivativeInverse :
CategoryDerivativeInverse = CategoryDerivative("inverse")
// CategoryDerivativeOption :
CategoryDerivativeOption = CategoryDerivative("option")
)
// ContractTypeDerivative :
type ContractTypeDerivative string
const (
// ContractTypeDerivativeInversePerpetual :
ContractTypeDerivativeInversePerpetual = ContractTypeDerivative("InversePerpetual")
// ContractTypeDerivativeLinearPerpetual :
ContractTypeDerivativeLinearPerpetual = ContractTypeDerivative("LinearPerpetual")
// ContractTypeDerivativeInverseFutures :
ContractTypeDerivativeInverseFutures = ContractTypeDerivative("InverseFutures")
)
// StatusDerivative :
type StatusDerivative string
const (
// StatusDerivativePending :
StatusDerivativePending = StatusDerivative("Pending")
// StatusDerivativeTrading :
StatusDerivativeTrading = StatusDerivative("Trading")
// StatusDerivativeSettling :
StatusDerivativeSettling = StatusDerivative("Settling")
// StatusDerivativeClosed :
StatusDerivativeClosed = StatusDerivative("Closed")
)