ccxt 4.4.95__py2.py3-none-any.whl → 4.4.96__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 +3 -1
- ccxt/abstract/foxbit.py +26 -0
- ccxt/abstract/hyperliquid.py +1 -1
- ccxt/apex.py +3 -3
- ccxt/ascendex.py +2 -2
- ccxt/async_support/__init__.py +3 -1
- ccxt/async_support/apex.py +3 -3
- ccxt/async_support/ascendex.py +2 -2
- ccxt/async_support/base/exchange.py +5 -3
- ccxt/async_support/base/ws/future.py +5 -3
- ccxt/async_support/bitget.py +30 -143
- ccxt/async_support/bitmart.py +2 -2
- ccxt/async_support/bitrue.py +13 -8
- ccxt/async_support/bybit.py +14 -5
- ccxt/async_support/coinbaseexchange.py +4 -2
- ccxt/async_support/coinbaseinternational.py +2 -2
- ccxt/async_support/coinspot.py +36 -1
- ccxt/async_support/cryptocom.py +2 -1
- ccxt/async_support/cryptomus.py +41 -1
- ccxt/async_support/defx.py +1 -1
- ccxt/async_support/derive.py +1 -1
- ccxt/async_support/ellipx.py +40 -0
- ccxt/async_support/foxbit.py +1935 -0
- ccxt/async_support/hyperliquid.py +2 -2
- ccxt/async_support/kucoin.py +1 -1
- ccxt/async_support/kucoinfutures.py +3 -2
- ccxt/async_support/mexc.py +28 -13
- ccxt/async_support/modetrade.py +3 -3
- ccxt/async_support/okcoin.py +1 -1
- ccxt/async_support/okx.py +10 -3
- ccxt/async_support/onetrading.py +1 -1
- ccxt/async_support/oxfun.py +2 -1
- ccxt/async_support/paradex.py +2 -2
- ccxt/async_support/vertex.py +3 -2
- ccxt/async_support/woo.py +6 -2
- ccxt/async_support/woofipro.py +2 -2
- ccxt/base/errors.py +6 -0
- ccxt/base/exchange.py +6 -3
- ccxt/bitget.py +30 -143
- ccxt/bitmart.py +2 -2
- ccxt/bitrue.py +13 -8
- ccxt/bybit.py +14 -5
- ccxt/coinbaseexchange.py +4 -2
- ccxt/coinbaseinternational.py +2 -2
- ccxt/coinspot.py +36 -1
- ccxt/cryptocom.py +2 -1
- ccxt/cryptomus.py +41 -1
- ccxt/defx.py +1 -1
- ccxt/derive.py +1 -1
- ccxt/ellipx.py +40 -0
- ccxt/foxbit.py +1935 -0
- ccxt/hyperliquid.py +2 -2
- ccxt/kucoin.py +1 -1
- ccxt/kucoinfutures.py +3 -2
- ccxt/mexc.py +28 -13
- ccxt/modetrade.py +3 -3
- ccxt/okcoin.py +1 -1
- ccxt/okx.py +10 -3
- ccxt/onetrading.py +1 -1
- ccxt/oxfun.py +2 -1
- ccxt/paradex.py +2 -2
- ccxt/pro/__init__.py +1 -1
- ccxt/test/tests_async.py +15 -0
- ccxt/test/tests_sync.py +15 -0
- ccxt/vertex.py +3 -2
- ccxt/woo.py +6 -2
- ccxt/woofipro.py +2 -2
- {ccxt-4.4.95.dist-info → ccxt-4.4.96.dist-info}/METADATA +8 -8
- {ccxt-4.4.95.dist-info → ccxt-4.4.96.dist-info}/RECORD +72 -69
- {ccxt-4.4.95.dist-info → ccxt-4.4.96.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.95.dist-info → ccxt-4.4.96.dist-info}/WHEEL +0 -0
- {ccxt-4.4.95.dist-info → ccxt-4.4.96.dist-info}/top_level.txt +0 -0
ccxt/bitrue.py
CHANGED
@@ -394,11 +394,9 @@ class bitrue(Exchange, ImplicitAPI):
|
|
394
394
|
# exchange-specific options
|
395
395
|
'options': {
|
396
396
|
'createMarketBuyOrderRequiresPrice': True,
|
397
|
-
'fetchMarkets':
|
398
|
-
'spot',
|
399
|
-
|
400
|
-
'inverse',
|
401
|
-
],
|
397
|
+
'fetchMarkets': {
|
398
|
+
'types': ['spot', 'linear', 'inverse'],
|
399
|
+
},
|
402
400
|
# 'fetchTradesMethod': 'publicGetAggTrades', # publicGetTrades, publicGetHistoricalTrades
|
403
401
|
'fetchMyTradesMethod': 'v2PrivateGetMyTrades', # spotV1PrivateGetMyTrades
|
404
402
|
'hasAlreadyAuthenticatedSuccessfully': False,
|
@@ -844,9 +842,16 @@ class bitrue(Exchange, ImplicitAPI):
|
|
844
842
|
:returns dict[]: an array of objects representing market data
|
845
843
|
"""
|
846
844
|
promisesRaw = []
|
847
|
-
|
848
|
-
|
849
|
-
|
845
|
+
types = None
|
846
|
+
defaultTypes = ['spot', 'linear', 'inverse']
|
847
|
+
fetchMarketsOptions = self.safe_dict(self.options, 'fetchMarkets')
|
848
|
+
if fetchMarketsOptions is not None:
|
849
|
+
types = self.safe_list(fetchMarketsOptions, 'types', defaultTypes)
|
850
|
+
else:
|
851
|
+
# for backward-compatibility
|
852
|
+
types = self.safe_list(self.options, 'fetchMarkets', defaultTypes)
|
853
|
+
for i in range(0, len(types)):
|
854
|
+
marketType = types[i]
|
850
855
|
if marketType == 'spot':
|
851
856
|
promisesRaw.append(self.spotV1PublicGetExchangeInfo(params))
|
852
857
|
elif marketType == 'linear':
|
ccxt/bybit.py
CHANGED
@@ -1040,7 +1040,9 @@ class bybit(Exchange, ImplicitAPI):
|
|
1040
1040
|
'options': {
|
1041
1041
|
'usePrivateInstrumentsInfo': False,
|
1042
1042
|
'enableDemoTrading': False,
|
1043
|
-
'fetchMarkets':
|
1043
|
+
'fetchMarkets': {
|
1044
|
+
'types': ['spot', 'linear', 'inverse', 'option'],
|
1045
|
+
},
|
1044
1046
|
'enableUnifiedMargin': None,
|
1045
1047
|
'enableUnifiedAccount': None,
|
1046
1048
|
'unifiedMarginStatus': None,
|
@@ -1701,9 +1703,16 @@ class bybit(Exchange, ImplicitAPI):
|
|
1701
1703
|
if self.options['adjustForTimeDifference']:
|
1702
1704
|
self.load_time_difference()
|
1703
1705
|
promisesUnresolved = []
|
1704
|
-
|
1705
|
-
|
1706
|
-
|
1706
|
+
types = None
|
1707
|
+
defaultTypes = ['spot', 'linear', 'inverse', 'option']
|
1708
|
+
fetchMarketsOptions = self.safe_dict(self.options, 'fetchMarkets')
|
1709
|
+
if fetchMarketsOptions is not None:
|
1710
|
+
types = self.safe_list(fetchMarketsOptions, 'types', defaultTypes)
|
1711
|
+
else:
|
1712
|
+
# for backward-compatibility
|
1713
|
+
types = self.safe_list(self.options, 'fetchMarkets', defaultTypes)
|
1714
|
+
for i in range(0, len(types)):
|
1715
|
+
marketType = types[i]
|
1707
1716
|
if marketType == 'spot':
|
1708
1717
|
promisesUnresolved.append(self.fetch_spot_markets(params))
|
1709
1718
|
elif marketType == 'linear':
|
@@ -4576,7 +4585,7 @@ class bybit(Exchange, ImplicitAPI):
|
|
4576
4585
|
result = self.safe_dict(response, 'result', {})
|
4577
4586
|
orders = self.safe_list(result, 'list')
|
4578
4587
|
if not isinstance(orders, list):
|
4579
|
-
return response
|
4588
|
+
return [self.safe_order({'info': response})]
|
4580
4589
|
return self.parse_orders(orders, market)
|
4581
4590
|
|
4582
4591
|
def fetch_order_classic(self, id: str, symbol: Str = None, params={}) -> Order:
|
ccxt/coinbaseexchange.py
CHANGED
@@ -1541,7 +1541,8 @@ class coinbaseexchange(Exchange, ImplicitAPI):
|
|
1541
1541
|
if symbol is not None:
|
1542
1542
|
market = self.market(symbol)
|
1543
1543
|
request['product_id'] = market['symbol'] # the request will be more performant if you include it
|
1544
|
-
|
1544
|
+
response = getattr(self, method)(self.extend(request, params))
|
1545
|
+
return self.safe_order({'info': response})
|
1545
1546
|
|
1546
1547
|
def cancel_all_orders(self, symbol: Str = None, params={}):
|
1547
1548
|
"""
|
@@ -1559,7 +1560,8 @@ class coinbaseexchange(Exchange, ImplicitAPI):
|
|
1559
1560
|
if symbol is not None:
|
1560
1561
|
market = self.market(symbol)
|
1561
1562
|
request['product_id'] = market['symbol'] # the request will be more performant if you include it
|
1562
|
-
|
1563
|
+
response = self.privateDeleteOrders(self.extend(request, params))
|
1564
|
+
return [self.safe_order({'info': response})]
|
1563
1565
|
|
1564
1566
|
def fetch_payment_methods(self, params={}):
|
1565
1567
|
return self.privateGetPaymentMethods(params)
|
ccxt/coinbaseinternational.py
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
from ccxt.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.coinbaseinternational import ImplicitAPI
|
8
8
|
import hashlib
|
9
|
-
from ccxt.base.types import Any, Balances, Currencies, Currency, DepositAddress, Int, Market, Order, OrderSide, OrderType, Position, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
9
|
+
from ccxt.base.types import Any, Balances, Currencies, Currency, DepositAddress, Int, MarginModification, Market, Order, OrderSide, OrderType, Position, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import AuthenticationError
|
@@ -875,7 +875,7 @@ class coinbaseinternational(Exchange, ImplicitAPI):
|
|
875
875
|
},
|
876
876
|
})
|
877
877
|
|
878
|
-
def set_margin(self, symbol: str, amount: float, params={}) ->
|
878
|
+
def set_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
879
879
|
"""
|
880
880
|
Either adds or reduces margin in order to set the margin to a specific value
|
881
881
|
|
ccxt/coinspot.py
CHANGED
@@ -31,33 +31,61 @@ class coinspot(Exchange, ImplicitAPI):
|
|
31
31
|
'future': False,
|
32
32
|
'option': False,
|
33
33
|
'addMargin': False,
|
34
|
+
'borrowCrossMargin': False,
|
35
|
+
'borrowIsolatedMargin': False,
|
36
|
+
'borrowMargin': False,
|
34
37
|
'cancelOrder': True,
|
35
38
|
'closeAllPositions': False,
|
36
39
|
'closePosition': False,
|
37
40
|
'createMarketOrder': False,
|
38
41
|
'createOrder': True,
|
42
|
+
'createOrderWithTakeProfitAndStopLoss': False,
|
43
|
+
'createOrderWithTakeProfitAndStopLossWs': False,
|
44
|
+
'createPostOnlyOrder': False,
|
39
45
|
'createReduceOnlyOrder': False,
|
40
46
|
'createStopLimitOrder': False,
|
41
47
|
'createStopMarketOrder': False,
|
42
48
|
'createStopOrder': False,
|
43
49
|
'fetchBalance': True,
|
50
|
+
'fetchBorrowInterest': False,
|
51
|
+
'fetchBorrowRate': False,
|
44
52
|
'fetchBorrowRateHistories': False,
|
45
53
|
'fetchBorrowRateHistory': False,
|
54
|
+
'fetchBorrowRates': False,
|
55
|
+
'fetchBorrowRatesPerSymbol': False,
|
46
56
|
'fetchCrossBorrowRate': False,
|
47
57
|
'fetchCrossBorrowRates': False,
|
48
58
|
'fetchFundingHistory': False,
|
59
|
+
'fetchFundingInterval': False,
|
60
|
+
'fetchFundingIntervals': False,
|
49
61
|
'fetchFundingRate': False,
|
50
62
|
'fetchFundingRateHistory': False,
|
51
63
|
'fetchFundingRates': False,
|
64
|
+
'fetchGreeks': False,
|
52
65
|
'fetchIndexOHLCV': False,
|
53
66
|
'fetchIsolatedBorrowRate': False,
|
54
67
|
'fetchIsolatedBorrowRates': False,
|
68
|
+
'fetchIsolatedPositions': False,
|
55
69
|
'fetchLeverage': False,
|
70
|
+
'fetchLeverages': False,
|
56
71
|
'fetchLeverageTiers': False,
|
72
|
+
'fetchLiquidations': False,
|
73
|
+
'fetchLongShortRatio': False,
|
74
|
+
'fetchLongShortRatioHistory': False,
|
75
|
+
'fetchMarginAdjustmentHistory': False,
|
57
76
|
'fetchMarginMode': False,
|
77
|
+
'fetchMarginModes': False,
|
78
|
+
'fetchMarketLeverageTiers': False,
|
58
79
|
'fetchMarkOHLCV': False,
|
80
|
+
'fetchMarkPrices': False,
|
81
|
+
'fetchMyLiquidations': False,
|
82
|
+
'fetchMySettlementHistory': False,
|
59
83
|
'fetchMyTrades': True,
|
84
|
+
'fetchOpenInterest': False,
|
60
85
|
'fetchOpenInterestHistory': False,
|
86
|
+
'fetchOpenInterests': False,
|
87
|
+
'fetchOption': False,
|
88
|
+
'fetchOptionChain': False,
|
61
89
|
'fetchOrderBook': True,
|
62
90
|
'fetchPosition': False,
|
63
91
|
'fetchPositionHistory': False,
|
@@ -67,13 +95,19 @@ class coinspot(Exchange, ImplicitAPI):
|
|
67
95
|
'fetchPositionsHistory': False,
|
68
96
|
'fetchPositionsRisk': False,
|
69
97
|
'fetchPremiumIndexOHLCV': False,
|
98
|
+
'fetchSettlementHistory': False,
|
70
99
|
'fetchTicker': True,
|
71
100
|
'fetchTickers': True,
|
72
101
|
'fetchTrades': True,
|
73
102
|
'fetchTradingFee': False,
|
74
103
|
'fetchTradingFees': False,
|
104
|
+
'fetchVolatilityHistory': False,
|
75
105
|
'reduceMargin': False,
|
106
|
+
'repayCrossMargin': False,
|
107
|
+
'repayIsolatedMargin': False,
|
108
|
+
'repayMargin': False,
|
76
109
|
'setLeverage': False,
|
110
|
+
'setMargin': False,
|
77
111
|
'setMarginMode': False,
|
78
112
|
'setPositionMode': False,
|
79
113
|
'ws': False,
|
@@ -551,7 +585,8 @@ class coinspot(Exchange, ImplicitAPI):
|
|
551
585
|
'amount': amount,
|
552
586
|
'rate': price,
|
553
587
|
}
|
554
|
-
|
588
|
+
response = getattr(self, method)(self.extend(request, params))
|
589
|
+
return self.parse_order(response)
|
555
590
|
|
556
591
|
def cancel_order(self, id: str, symbol: Str = None, params={}):
|
557
592
|
"""
|
ccxt/cryptocom.py
CHANGED
@@ -1631,7 +1631,8 @@ class cryptocom(Exchange, ImplicitAPI):
|
|
1631
1631
|
if symbol is not None:
|
1632
1632
|
market = self.market(symbol)
|
1633
1633
|
request['instrument_name'] = market['id']
|
1634
|
-
|
1634
|
+
response = self.v1PrivatePostPrivateCancelAllOrders(self.extend(request, params))
|
1635
|
+
return [self.safe_order({'info': response})]
|
1635
1636
|
|
1636
1637
|
def cancel_order(self, id: str, symbol: Str = None, params={}):
|
1637
1638
|
"""
|
ccxt/cryptomus.py
CHANGED
@@ -34,11 +34,15 @@ class cryptomus(Exchange, ImplicitAPI):
|
|
34
34
|
'future': False,
|
35
35
|
'option': False,
|
36
36
|
'addMargin': False,
|
37
|
+
'borrowCrossMargin': False,
|
38
|
+
'borrowIsolatedMargin': False,
|
39
|
+
'borrowMargin': False,
|
37
40
|
'cancelAllOrders': False,
|
38
41
|
'cancelAllOrdersAfter': False,
|
39
42
|
'cancelOrder': True,
|
40
43
|
'cancelOrders': False,
|
41
44
|
'cancelWithdraw': False,
|
45
|
+
'closeAllPositions': False,
|
42
46
|
'closePosition': False,
|
43
47
|
'createConvertTrade': False,
|
44
48
|
'createDepositAddress': False,
|
@@ -48,6 +52,8 @@ class cryptomus(Exchange, ImplicitAPI):
|
|
48
52
|
'createMarketSellOrderWithCost': False,
|
49
53
|
'createOrder': True,
|
50
54
|
'createOrderWithTakeProfitAndStopLoss': False,
|
55
|
+
'createOrderWithTakeProfitAndStopLossWs': False,
|
56
|
+
'createPostOnlyOrder': False,
|
51
57
|
'createReduceOnlyOrder': False,
|
52
58
|
'createStopLimitOrder': False,
|
53
59
|
'createStopLossOrder': False,
|
@@ -59,6 +65,12 @@ class cryptomus(Exchange, ImplicitAPI):
|
|
59
65
|
'createTriggerOrder': False,
|
60
66
|
'fetchAccounts': False,
|
61
67
|
'fetchBalance': True,
|
68
|
+
'fetchBorrowInterest': False,
|
69
|
+
'fetchBorrowRate': False,
|
70
|
+
'fetchBorrowRateHistories': False,
|
71
|
+
'fetchBorrowRateHistory': False,
|
72
|
+
'fetchBorrowRates': False,
|
73
|
+
'fetchBorrowRatesPerSymbol': False,
|
62
74
|
'fetchCanceledAndClosedOrders': True,
|
63
75
|
'fetchCanceledOrders': False,
|
64
76
|
'fetchClosedOrder': False,
|
@@ -67,27 +79,48 @@ class cryptomus(Exchange, ImplicitAPI):
|
|
67
79
|
'fetchConvertQuote': False,
|
68
80
|
'fetchConvertTrade': False,
|
69
81
|
'fetchConvertTradeHistory': False,
|
82
|
+
'fetchCrossBorrowRate': False,
|
83
|
+
'fetchCrossBorrowRates': False,
|
70
84
|
'fetchCurrencies': True,
|
71
85
|
'fetchDepositAddress': False,
|
72
86
|
'fetchDeposits': False,
|
73
87
|
'fetchDepositsWithdrawals': False,
|
74
88
|
'fetchFundingHistory': False,
|
89
|
+
'fetchFundingInterval': False,
|
90
|
+
'fetchFundingIntervals': False,
|
75
91
|
'fetchFundingRate': False,
|
76
92
|
'fetchFundingRateHistory': False,
|
77
93
|
'fetchFundingRates': False,
|
94
|
+
'fetchGreeks': False,
|
78
95
|
'fetchIndexOHLCV': False,
|
96
|
+
'fetchIsolatedBorrowRate': False,
|
97
|
+
'fetchIsolatedBorrowRates': False,
|
98
|
+
'fetchIsolatedPositions': False,
|
79
99
|
'fetchLedger': False,
|
80
100
|
'fetchLeverage': False,
|
101
|
+
'fetchLeverages': False,
|
81
102
|
'fetchLeverageTiers': False,
|
103
|
+
'fetchLiquidations': False,
|
104
|
+
'fetchLongShortRatio': False,
|
105
|
+
'fetchLongShortRatioHistory': False,
|
82
106
|
'fetchMarginAdjustmentHistory': False,
|
83
107
|
'fetchMarginMode': False,
|
108
|
+
'fetchMarginModes': False,
|
109
|
+
'fetchMarketLeverageTiers': False,
|
84
110
|
'fetchMarkets': True,
|
85
111
|
'fetchMarkOHLCV': False,
|
112
|
+
'fetchMarkPrices': False,
|
113
|
+
'fetchMyLiquidations': False,
|
114
|
+
'fetchMySettlementHistory': False,
|
86
115
|
'fetchMyTrades': False,
|
87
116
|
'fetchOHLCV': False,
|
117
|
+
'fetchOpenInterest': False,
|
88
118
|
'fetchOpenInterestHistory': False,
|
119
|
+
'fetchOpenInterests': False,
|
89
120
|
'fetchOpenOrder': False,
|
90
121
|
'fetchOpenOrders': True,
|
122
|
+
'fetchOption': False,
|
123
|
+
'fetchOptionChain': False,
|
91
124
|
'fetchOrder': True,
|
92
125
|
'fetchOrderBook': True,
|
93
126
|
'fetchOrders': False,
|
@@ -98,7 +131,9 @@ class cryptomus(Exchange, ImplicitAPI):
|
|
98
131
|
'fetchPositions': False,
|
99
132
|
'fetchPositionsForSymbol': False,
|
100
133
|
'fetchPositionsHistory': False,
|
134
|
+
'fetchPositionsRisk': False,
|
101
135
|
'fetchPremiumIndexOHLCV': False,
|
136
|
+
'fetchSettlementHistory': False,
|
102
137
|
'fetchStatus': False,
|
103
138
|
'fetchTicker': False,
|
104
139
|
'fetchTickers': True,
|
@@ -108,11 +143,16 @@ class cryptomus(Exchange, ImplicitAPI):
|
|
108
143
|
'fetchTradingFees': True,
|
109
144
|
'fetchTransactions': False,
|
110
145
|
'fetchTransfers': False,
|
146
|
+
'fetchVolatilityHistory': False,
|
111
147
|
'fetchWithdrawals': False,
|
112
148
|
'reduceMargin': False,
|
149
|
+
'repayCrossMargin': False,
|
150
|
+
'repayIsolatedMargin': False,
|
151
|
+
'repayMargin': False,
|
113
152
|
'sandbox': False,
|
114
153
|
'setLeverage': False,
|
115
154
|
'setMargin': False,
|
155
|
+
'setMarginMode': False,
|
116
156
|
'setPositionMode': False,
|
117
157
|
'transfer': False,
|
118
158
|
'withdraw': False,
|
@@ -712,7 +752,7 @@ class cryptomus(Exchange, ImplicitAPI):
|
|
712
752
|
# "success": True
|
713
753
|
# }
|
714
754
|
#
|
715
|
-
return response
|
755
|
+
return self.safe_order({'info': response})
|
716
756
|
|
717
757
|
def fetch_canceled_and_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
718
758
|
"""
|
ccxt/defx.py
CHANGED
ccxt/derive.py
CHANGED
@@ -1629,7 +1629,7 @@ class derive(Exchange, ImplicitAPI):
|
|
1629
1629
|
# "result": "ok"
|
1630
1630
|
# }
|
1631
1631
|
#
|
1632
|
-
return response
|
1632
|
+
return [self.safe_order({'info': response})]
|
1633
1633
|
|
1634
1634
|
def fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
1635
1635
|
"""
|
ccxt/ellipx.py
CHANGED
@@ -38,11 +38,15 @@ class ellipx(Exchange, ImplicitAPI):
|
|
38
38
|
'future': False,
|
39
39
|
'option': False,
|
40
40
|
'addMargin': False,
|
41
|
+
'borrowCrossMargin': False,
|
42
|
+
'borrowIsolatedMargin': False,
|
43
|
+
'borrowMargin': False,
|
41
44
|
'cancelAllOrders': False,
|
42
45
|
'cancelAllOrdersAfter': False,
|
43
46
|
'cancelOrder': True,
|
44
47
|
'cancelOrders': False,
|
45
48
|
'cancelWithdraw': False,
|
49
|
+
'closeAllPositions': False,
|
46
50
|
'closePosition': False,
|
47
51
|
'createConvertTrade': False,
|
48
52
|
'createDepositAddress': False,
|
@@ -52,6 +56,8 @@ class ellipx(Exchange, ImplicitAPI):
|
|
52
56
|
'createMarketSellOrderWithCost': False,
|
53
57
|
'createOrder': True,
|
54
58
|
'createOrderWithTakeProfitAndStopLoss': False,
|
59
|
+
'createOrderWithTakeProfitAndStopLossWs': False,
|
60
|
+
'createPostOnlyOrder': False,
|
55
61
|
'createReduceOnlyOrder': False,
|
56
62
|
'createStopLimitOrder': False,
|
57
63
|
'createStopLossOrder': False,
|
@@ -63,6 +69,12 @@ class ellipx(Exchange, ImplicitAPI):
|
|
63
69
|
'createTriggerOrder': False,
|
64
70
|
'fetchAccounts': False,
|
65
71
|
'fetchBalance': True,
|
72
|
+
'fetchBorrowInterest': False,
|
73
|
+
'fetchBorrowRate': False,
|
74
|
+
'fetchBorrowRateHistories': False,
|
75
|
+
'fetchBorrowRateHistory': False,
|
76
|
+
'fetchBorrowRates': False,
|
77
|
+
'fetchBorrowRatesPerSymbol': False,
|
66
78
|
'fetchCanceledAndClosedOrders': False,
|
67
79
|
'fetchCanceledOrders': False,
|
68
80
|
'fetchClosedOrder': False,
|
@@ -71,27 +83,48 @@ class ellipx(Exchange, ImplicitAPI):
|
|
71
83
|
'fetchConvertQuote': False,
|
72
84
|
'fetchConvertTrade': False,
|
73
85
|
'fetchConvertTradeHistory': False,
|
86
|
+
'fetchCrossBorrowRate': False,
|
87
|
+
'fetchCrossBorrowRates': False,
|
74
88
|
'fetchCurrencies': True,
|
75
89
|
'fetchDepositAddress': True,
|
76
90
|
'fetchDeposits': False,
|
77
91
|
'fetchDepositsWithdrawals': False,
|
78
92
|
'fetchFundingHistory': False,
|
93
|
+
'fetchFundingInterval': False,
|
94
|
+
'fetchFundingIntervals': False,
|
79
95
|
'fetchFundingRate': False,
|
80
96
|
'fetchFundingRateHistory': False,
|
81
97
|
'fetchFundingRates': False,
|
98
|
+
'fetchGreeks': False,
|
82
99
|
'fetchIndexOHLCV': False,
|
100
|
+
'fetchIsolatedBorrowRate': False,
|
101
|
+
'fetchIsolatedBorrowRates': False,
|
102
|
+
'fetchIsolatedPositions': False,
|
83
103
|
'fetchLedger': False,
|
84
104
|
'fetchLeverage': False,
|
105
|
+
'fetchLeverages': False,
|
85
106
|
'fetchLeverageTiers': False,
|
107
|
+
'fetchLiquidations': False,
|
108
|
+
'fetchLongShortRatio': False,
|
109
|
+
'fetchLongShortRatioHistory': False,
|
86
110
|
'fetchMarginAdjustmentHistory': False,
|
87
111
|
'fetchMarginMode': False,
|
112
|
+
'fetchMarginModes': False,
|
113
|
+
'fetchMarketLeverageTiers': False,
|
88
114
|
'fetchMarkets': True,
|
89
115
|
'fetchMarkOHLCV': False,
|
116
|
+
'fetchMarkPrices': False,
|
117
|
+
'fetchMyLiquidations': False,
|
118
|
+
'fetchMySettlementHistory': False,
|
90
119
|
'fetchMyTrades': False,
|
91
120
|
'fetchOHLCV': True,
|
121
|
+
'fetchOpenInterest': False,
|
92
122
|
'fetchOpenInterestHistory': False,
|
123
|
+
'fetchOpenInterests': False,
|
93
124
|
'fetchOpenOrder': False,
|
94
125
|
'fetchOpenOrders': True,
|
126
|
+
'fetchOption': False,
|
127
|
+
'fetchOptionChain': False,
|
95
128
|
'fetchOrder': True,
|
96
129
|
'fetchOrderBook': True,
|
97
130
|
'fetchOrders': True,
|
@@ -102,7 +135,9 @@ class ellipx(Exchange, ImplicitAPI):
|
|
102
135
|
'fetchPositions': False,
|
103
136
|
'fetchPositionsForSymbol': False,
|
104
137
|
'fetchPositionsHistory': False,
|
138
|
+
'fetchPositionsRisk': False,
|
105
139
|
'fetchPremiumIndexOHLCV': False,
|
140
|
+
'fetchSettlementHistory': False,
|
106
141
|
'fetchStatus': False,
|
107
142
|
'fetchTicker': True,
|
108
143
|
'fetchTickers': False,
|
@@ -112,11 +147,16 @@ class ellipx(Exchange, ImplicitAPI):
|
|
112
147
|
'fetchTradingFees': False,
|
113
148
|
'fetchTransactions': False,
|
114
149
|
'fetchTransfers': False,
|
150
|
+
'fetchVolatilityHistory': False,
|
115
151
|
'fetchWithdrawals': False,
|
116
152
|
'reduceMargin': False,
|
153
|
+
'repayCrossMargin': False,
|
154
|
+
'repayIsolatedMargin': False,
|
155
|
+
'repayMargin': False,
|
117
156
|
'sandbox': False,
|
118
157
|
'setLeverage': False,
|
119
158
|
'setMargin': False,
|
159
|
+
'setMarginMode': False,
|
120
160
|
'setPositionMode': False,
|
121
161
|
'transfer': False,
|
122
162
|
'withdraw': True,
|