ccxt 4.5.0__py2.py3-none-any.whl → 4.5.2__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ccxt/__init__.py +1 -5
- ccxt/ascendex.py +1 -1
- ccxt/async_support/__init__.py +1 -5
- ccxt/async_support/ascendex.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/binance.py +17 -12
- ccxt/async_support/bitget.py +1 -1
- ccxt/async_support/coinbase.py +46 -34
- ccxt/async_support/gate.py +31 -17
- ccxt/async_support/gemini.py +1 -1
- ccxt/async_support/hibachi.py +1 -1
- ccxt/async_support/hyperliquid.py +13 -2
- ccxt/async_support/indodax.py +11 -12
- ccxt/async_support/kraken.py +1 -8
- ccxt/async_support/krakenfutures.py +25 -25
- ccxt/async_support/mexc.py +2 -1
- ccxt/async_support/okx.py +2 -2
- ccxt/async_support/poloniex.py +1 -1
- ccxt/async_support/timex.py +35 -0
- ccxt/async_support/tradeogre.py +32 -0
- ccxt/async_support/wavesexchange.py +33 -0
- ccxt/async_support/zonda.py +12 -0
- ccxt/base/exchange.py +7 -1
- ccxt/binance.py +17 -12
- ccxt/bitget.py +1 -1
- ccxt/coinbase.py +46 -34
- ccxt/gate.py +31 -17
- ccxt/gemini.py +1 -1
- ccxt/hibachi.py +1 -1
- ccxt/hyperliquid.py +13 -2
- ccxt/indodax.py +11 -12
- ccxt/kraken.py +1 -8
- ccxt/krakenfutures.py +25 -25
- ccxt/mexc.py +2 -1
- ccxt/okx.py +2 -2
- ccxt/poloniex.py +1 -1
- ccxt/pro/__init__.py +1 -3
- ccxt/pro/bitget.py +328 -75
- ccxt/pro/bitmart.py +1 -1
- ccxt/pro/bybit.py +8 -10
- ccxt/pro/gate.py +8 -1
- ccxt/pro/gemini.py +6 -2
- ccxt/pro/hyperliquid.py +6 -0
- ccxt/pro/kraken.py +4 -6
- ccxt/pro/lbank.py +56 -2
- ccxt/pro/mexc.py +1 -1
- ccxt/test/tests_async.py +2 -25
- ccxt/test/tests_sync.py +2 -25
- ccxt/timex.py +35 -0
- ccxt/tradeogre.py +32 -0
- ccxt/wavesexchange.py +33 -0
- ccxt/zonda.py +12 -0
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/METADATA +111 -113
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/RECORD +57 -64
- ccxt/abstract/ellipx.py +0 -25
- ccxt/abstract/vertex.py +0 -19
- ccxt/async_support/ellipx.py +0 -2029
- ccxt/async_support/vertex.py +0 -3050
- ccxt/ellipx.py +0 -2029
- ccxt/pro/vertex.py +0 -948
- ccxt/vertex.py +0 -3050
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/WHEEL +0 -0
- {ccxt-4.5.0.dist-info → ccxt-4.5.2.dist-info}/top_level.txt +0 -0
ccxt/zonda.py
CHANGED
@@ -41,6 +41,9 @@ class zonda(Exchange, ImplicitAPI):
|
|
41
41
|
'future': False,
|
42
42
|
'option': False,
|
43
43
|
'addMargin': False,
|
44
|
+
'borrowCrossMargin': False,
|
45
|
+
'borrowIsolatedMargin': False,
|
46
|
+
'borrowMargin': False,
|
44
47
|
'cancelAllOrders': False,
|
45
48
|
'cancelOrder': True,
|
46
49
|
'cancelOrders': False,
|
@@ -49,6 +52,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
49
52
|
'createDepositAddress': False,
|
50
53
|
'createOrder': True,
|
51
54
|
'createReduceOnlyOrder': False,
|
55
|
+
'fetchAllGreeks': False,
|
52
56
|
'fetchBalance': True,
|
53
57
|
'fetchBorrowInterest': False,
|
54
58
|
'fetchBorrowRate': False,
|
@@ -79,12 +83,15 @@ class zonda(Exchange, ImplicitAPI):
|
|
79
83
|
'fetchLeverages': False,
|
80
84
|
'fetchLeverageTiers': False,
|
81
85
|
'fetchLiquidations': False,
|
86
|
+
'fetchLongShortRatio': False,
|
87
|
+
'fetchLongShortRatioHistory': False,
|
82
88
|
'fetchMarginAdjustmentHistory': False,
|
83
89
|
'fetchMarginMode': False,
|
84
90
|
'fetchMarginModes': False,
|
85
91
|
'fetchMarketLeverageTiers': False,
|
86
92
|
'fetchMarkets': True,
|
87
93
|
'fetchMarkOHLCV': False,
|
94
|
+
'fetchMarkPrice': False,
|
88
95
|
'fetchMarkPrices': False,
|
89
96
|
'fetchMyLiquidations': False,
|
90
97
|
'fetchMySettlementHistory': False,
|
@@ -92,6 +99,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
92
99
|
'fetchOHLCV': True,
|
93
100
|
'fetchOpenInterest': False,
|
94
101
|
'fetchOpenInterestHistory': False,
|
102
|
+
'fetchOpenInterests': False,
|
95
103
|
'fetchOpenOrder': False,
|
96
104
|
'fetchOpenOrders': True,
|
97
105
|
'fetchOption': False,
|
@@ -99,8 +107,11 @@ class zonda(Exchange, ImplicitAPI):
|
|
99
107
|
'fetchOrderBook': True,
|
100
108
|
'fetchOrderBooks': False,
|
101
109
|
'fetchPosition': False,
|
110
|
+
'fetchPositionHistory': False,
|
102
111
|
'fetchPositionMode': False,
|
103
112
|
'fetchPositions': False,
|
113
|
+
'fetchPositionsForSymbol': False,
|
114
|
+
'fetchPositionsHistory': False,
|
104
115
|
'fetchPositionsRisk': False,
|
105
116
|
'fetchPremiumIndexOHLCV': False,
|
106
117
|
'fetchSettlementHistory': False,
|
@@ -121,6 +132,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
121
132
|
'reduceMargin': False,
|
122
133
|
'repayCrossMargin': False,
|
123
134
|
'repayIsolatedMargin': False,
|
135
|
+
'repayMargin': False,
|
124
136
|
'setLeverage': False,
|
125
137
|
'setMargin': False,
|
126
138
|
'setMarginMode': False,
|