ccxt 4.4.30__py2.py3-none-any.whl → 4.4.32__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 -1
- ccxt/ace.py +36 -12
- ccxt/alpaca.py +62 -22
- ccxt/ascendex.py +65 -30
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/ace.py +36 -12
- ccxt/async_support/alpaca.py +62 -22
- ccxt/async_support/ascendex.py +65 -30
- ccxt/async_support/base/exchange.py +3 -3
- ccxt/async_support/base/ws/aiohttp_client.py +25 -3
- ccxt/async_support/bigone.py +71 -27
- ccxt/async_support/binance.py +555 -323
- ccxt/async_support/bingx.py +208 -108
- ccxt/async_support/bit2c.py +34 -12
- ccxt/async_support/bitbank.py +42 -14
- ccxt/async_support/bitbns.py +17 -9
- ccxt/async_support/bitfinex.py +68 -24
- ccxt/async_support/bitfinex2.py +116 -44
- ccxt/async_support/bitflyer.py +54 -18
- ccxt/async_support/bitget.py +277 -145
- ccxt/async_support/bithumb.py +39 -14
- ccxt/async_support/bitmart.py +145 -79
- ccxt/async_support/bitmex.py +90 -30
- ccxt/async_support/bitopro.py +66 -22
- ccxt/async_support/bitrue.py +109 -57
- ccxt/async_support/bitso.py +55 -19
- ccxt/async_support/bitstamp.py +84 -36
- ccxt/async_support/bitteam.py +51 -17
- ccxt/async_support/bitvavo.py +57 -22
- ccxt/async_support/bl3p.py +26 -10
- ccxt/async_support/blockchaincom.py +63 -21
- ccxt/async_support/blofin.py +95 -38
- ccxt/async_support/btcalpha.py +48 -16
- ccxt/async_support/btcbox.py +27 -9
- ccxt/async_support/btcmarkets.py +57 -19
- ccxt/async_support/btcturk.py +36 -12
- ccxt/async_support/bybit.py +251 -95
- ccxt/async_support/cex.py +65 -22
- ccxt/async_support/coinbase.py +138 -56
- ccxt/async_support/coinbaseexchange.py +76 -28
- ccxt/async_support/coinbaseinternational.py +75 -27
- ccxt/async_support/coincatch.py +191 -97
- ccxt/async_support/coincheck.py +33 -11
- ccxt/async_support/coinex.py +212 -101
- ccxt/async_support/coinlist.py +87 -30
- ccxt/async_support/coinmate.py +55 -24
- ccxt/async_support/coinmetro.py +52 -18
- ccxt/async_support/coinone.py +27 -10
- ccxt/async_support/coinsph.py +73 -27
- ccxt/async_support/coinspot.py +25 -9
- ccxt/async_support/cryptocom.py +103 -38
- ccxt/async_support/currencycom.py +70 -23
- ccxt/async_support/delta.py +90 -30
- ccxt/async_support/deribit.py +131 -50
- ccxt/async_support/digifinex.py +114 -51
- ccxt/async_support/exmo.py +104 -45
- ccxt/async_support/gate.py +313 -157
- ccxt/async_support/gemini.py +57 -20
- ccxt/async_support/hashkey.py +151 -66
- ccxt/async_support/hitbtc.py +157 -74
- ccxt/async_support/hollaex.py +76 -25
- ccxt/async_support/htx.py +297 -240
- ccxt/async_support/huobijp.py +1 -0
- ccxt/async_support/hyperliquid.py +94 -38
- ccxt/async_support/idex.py +73 -24
- ccxt/async_support/independentreserve.py +12 -5
- ccxt/async_support/indodax.py +54 -17
- ccxt/async_support/kraken.py +108 -36
- ccxt/async_support/krakenfutures.py +88 -34
- ccxt/async_support/kucoin.py +214 -110
- ccxt/async_support/kucoinfutures.py +209 -64
- ccxt/async_support/kuna.py +80 -39
- ccxt/async_support/latoken.py +70 -33
- ccxt/async_support/lbank.py +89 -38
- ccxt/async_support/luno.py +54 -19
- ccxt/async_support/lykke.py +54 -19
- ccxt/async_support/mercado.py +1 -0
- ccxt/async_support/mexc.py +226 -108
- ccxt/async_support/ndax.py +58 -19
- ccxt/async_support/novadax.py +67 -22
- ccxt/async_support/oceanex.py +58 -19
- ccxt/async_support/okcoin.py +81 -38
- ccxt/async_support/okx.py +270 -109
- ccxt/async_support/onetrading.py +3 -1
- ccxt/async_support/oxfun.py +95 -36
- ccxt/async_support/p2b.py +49 -23
- ccxt/async_support/paradex.py +75 -27
- ccxt/async_support/paymium.py +31 -11
- ccxt/async_support/phemex.py +108 -56
- ccxt/async_support/poloniex.py +80 -30
- ccxt/async_support/poloniexfutures.py +72 -30
- ccxt/async_support/probit.py +64 -22
- ccxt/async_support/timex.py +58 -19
- ccxt/async_support/tokocrypto.py +63 -22
- ccxt/async_support/tradeogre.py +7 -2
- ccxt/async_support/upbit.py +72 -25
- ccxt/async_support/vertex.py +74 -28
- ccxt/async_support/wavesexchange.py +32 -8
- ccxt/async_support/wazirx.py +51 -17
- ccxt/async_support/whitebit.py +105 -41
- ccxt/async_support/woo.py +162 -65
- ccxt/async_support/woofipro.py +119 -50
- ccxt/async_support/xt.py +150 -73
- ccxt/async_support/yobit.py +49 -16
- ccxt/async_support/zaif.py +30 -10
- ccxt/async_support/zonda.py +46 -16
- ccxt/base/exchange.py +47 -35
- ccxt/base/types.py +1 -0
- ccxt/bigone.py +71 -27
- ccxt/binance.py +555 -323
- ccxt/bingx.py +208 -108
- ccxt/bit2c.py +34 -12
- ccxt/bitbank.py +42 -14
- ccxt/bitbns.py +17 -9
- ccxt/bitfinex.py +68 -24
- ccxt/bitfinex2.py +116 -44
- ccxt/bitflyer.py +54 -18
- ccxt/bitget.py +277 -145
- ccxt/bithumb.py +39 -14
- ccxt/bitmart.py +145 -79
- ccxt/bitmex.py +90 -30
- ccxt/bitopro.py +66 -22
- ccxt/bitrue.py +109 -57
- ccxt/bitso.py +55 -19
- ccxt/bitstamp.py +84 -36
- ccxt/bitteam.py +51 -17
- ccxt/bitvavo.py +57 -22
- ccxt/bl3p.py +26 -10
- ccxt/blockchaincom.py +63 -21
- ccxt/blofin.py +95 -38
- ccxt/btcalpha.py +48 -16
- ccxt/btcbox.py +27 -9
- ccxt/btcmarkets.py +57 -19
- ccxt/btcturk.py +36 -12
- ccxt/bybit.py +251 -95
- ccxt/cex.py +65 -22
- ccxt/coinbase.py +138 -56
- ccxt/coinbaseexchange.py +76 -28
- ccxt/coinbaseinternational.py +75 -27
- ccxt/coincatch.py +191 -97
- ccxt/coincheck.py +33 -11
- ccxt/coinex.py +212 -101
- ccxt/coinlist.py +87 -30
- ccxt/coinmate.py +55 -24
- ccxt/coinmetro.py +52 -18
- ccxt/coinone.py +27 -10
- ccxt/coinsph.py +73 -27
- ccxt/coinspot.py +25 -9
- ccxt/cryptocom.py +103 -38
- ccxt/currencycom.py +70 -23
- ccxt/delta.py +90 -30
- ccxt/deribit.py +131 -50
- ccxt/digifinex.py +114 -51
- ccxt/exmo.py +104 -45
- ccxt/gate.py +313 -157
- ccxt/gemini.py +57 -20
- ccxt/hashkey.py +151 -66
- ccxt/hitbtc.py +157 -74
- ccxt/hollaex.py +76 -25
- ccxt/htx.py +297 -240
- ccxt/huobijp.py +1 -0
- ccxt/hyperliquid.py +94 -38
- ccxt/idex.py +73 -24
- ccxt/independentreserve.py +12 -5
- ccxt/indodax.py +54 -17
- ccxt/kraken.py +108 -36
- ccxt/krakenfutures.py +88 -34
- ccxt/kucoin.py +214 -110
- ccxt/kucoinfutures.py +209 -64
- ccxt/kuna.py +80 -39
- ccxt/latoken.py +70 -33
- ccxt/lbank.py +89 -38
- ccxt/luno.py +54 -19
- ccxt/lykke.py +54 -19
- ccxt/mercado.py +1 -0
- ccxt/mexc.py +226 -108
- ccxt/ndax.py +58 -19
- ccxt/novadax.py +67 -22
- ccxt/oceanex.py +58 -19
- ccxt/okcoin.py +81 -38
- ccxt/okx.py +270 -109
- ccxt/onetrading.py +3 -1
- ccxt/oxfun.py +95 -36
- ccxt/p2b.py +49 -23
- ccxt/paradex.py +75 -27
- ccxt/paymium.py +31 -11
- ccxt/phemex.py +108 -56
- ccxt/poloniex.py +80 -30
- ccxt/poloniexfutures.py +72 -30
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/alpaca.py +15 -5
- ccxt/pro/ascendex.py +18 -6
- ccxt/pro/binance.py +204 -123
- ccxt/pro/bingx.py +44 -24
- ccxt/pro/bitfinex.py +13 -5
- ccxt/pro/bitget.py +76 -37
- ccxt/pro/bithumb.py +12 -4
- ccxt/pro/bitmart.py +44 -20
- ccxt/pro/bitmex.py +42 -14
- ccxt/pro/bitopro.py +15 -5
- ccxt/pro/bitrue.py +7 -3
- ccxt/pro/bitvavo.py +97 -62
- ccxt/pro/blockchaincom.py +18 -6
- ccxt/pro/blofin.py +36 -12
- ccxt/pro/bybit.py +100 -42
- ccxt/pro/cex.py +48 -16
- ccxt/pro/coinbase.py +32 -12
- ccxt/pro/coinbaseexchange.py +1 -1
- ccxt/pro/coinbaseinternational.py +34 -14
- ccxt/pro/coincatch.py +54 -19
- ccxt/pro/coincheck.py +6 -2
- ccxt/pro/coinex.py +40 -20
- ccxt/pro/coinone.py +9 -3
- ccxt/pro/cryptocom.py +71 -27
- ccxt/pro/deribit.py +36 -12
- ccxt/pro/exmo.py +10 -4
- ccxt/pro/gate.py +65 -31
- ccxt/pro/gemini.py +21 -7
- ccxt/pro/hashkey.py +27 -9
- ccxt/pro/hitbtc.py +61 -37
- ccxt/pro/hollaex.py +15 -5
- ccxt/pro/htx.py +39 -21
- ccxt/pro/hyperliquid.py +41 -14
- ccxt/pro/kraken.py +49 -17
- ccxt/pro/krakenfutures.py +47 -24
- ccxt/pro/kucoin.py +60 -31
- ccxt/pro/kucoinfutures.py +41 -19
- ccxt/pro/lbank.py +27 -9
- ccxt/pro/luno.py +3 -1
- ccxt/pro/mexc.py +36 -19
- ccxt/pro/ndax.py +12 -4
- ccxt/pro/okcoin.py +18 -6
- ccxt/pro/okx.py +76 -28
- ccxt/pro/onetrading.py +21 -7
- ccxt/pro/oxfun.py +54 -20
- ccxt/pro/p2b.py +23 -11
- ccxt/pro/paradex.py +12 -4
- ccxt/pro/phemex.py +31 -19
- ccxt/pro/poloniex.py +50 -22
- ccxt/pro/poloniexfutures.py +17 -7
- ccxt/pro/probit.py +18 -6
- ccxt/pro/upbit.py +25 -9
- ccxt/pro/vertex.py +20 -6
- ccxt/pro/wazirx.py +21 -7
- ccxt/pro/whitebit.py +25 -9
- ccxt/pro/woo.py +32 -12
- ccxt/pro/woofipro.py +35 -13
- ccxt/pro/xt.py +46 -26
- ccxt/probit.py +64 -22
- ccxt/timex.py +58 -19
- ccxt/tokocrypto.py +63 -22
- ccxt/tradeogre.py +7 -2
- ccxt/upbit.py +72 -25
- ccxt/vertex.py +74 -28
- ccxt/wavesexchange.py +32 -8
- ccxt/wazirx.py +51 -17
- ccxt/whitebit.py +105 -41
- ccxt/woo.py +162 -65
- ccxt/woofipro.py +119 -50
- ccxt/xt.py +150 -73
- ccxt/yobit.py +49 -16
- ccxt/zaif.py +30 -10
- ccxt/zonda.py +46 -16
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/METADATA +11 -5
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/RECORD +268 -268
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/WHEEL +0 -0
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/top_level.txt +0 -0
ccxt/async_support/huobijp.py
CHANGED
@@ -1117,6 +1117,7 @@ class huobijp(Exchange, ImplicitAPI):
|
|
1117
1117
|
async def fetch_order(self, id: str, symbol: Str = None, params={}):
|
1118
1118
|
"""
|
1119
1119
|
fetches information on an order made by the user
|
1120
|
+
:param str id: order id
|
1120
1121
|
:param str symbol: unified symbol of the market the order was made in
|
1121
1122
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1122
1123
|
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
@@ -229,7 +229,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
229
229
|
async def fetch_currencies(self, params={}) -> Currencies:
|
230
230
|
"""
|
231
231
|
fetches all available currencies on an exchange
|
232
|
-
|
232
|
+
|
233
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/perpetuals#retrieve-perpetuals-metadata
|
234
|
+
|
233
235
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
234
236
|
:returns dict: an associative dictionary of currencies
|
235
237
|
"""
|
@@ -285,8 +287,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
285
287
|
async def fetch_markets(self, params={}) -> List[Market]:
|
286
288
|
"""
|
287
289
|
retrieves data on all markets for hyperliquid
|
288
|
-
|
289
|
-
|
290
|
+
|
291
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/perpetuals#retrieve-perpetuals-asset-contexts-includes-mark-price-current-funding-open-interest-etc
|
292
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/spot#retrieve-spot-asset-contexts
|
293
|
+
|
290
294
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
291
295
|
:returns dict[]: an array of objects representing market data
|
292
296
|
"""
|
@@ -302,7 +306,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
302
306
|
async def fetch_swap_markets(self, params={}) -> List[Market]:
|
303
307
|
"""
|
304
308
|
retrieves data on all swap markets for hyperliquid
|
305
|
-
|
309
|
+
|
310
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/perpetuals#retrieve-perpetuals-asset-contexts-includes-mark-price-current-funding-open-interest-etc
|
311
|
+
|
306
312
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
307
313
|
:returns dict[]: an array of objects representing market data
|
308
314
|
"""
|
@@ -357,7 +363,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
357
363
|
async def fetch_spot_markets(self, params={}) -> List[Market]:
|
358
364
|
"""
|
359
365
|
retrieves data on all spot markets for hyperliquid
|
360
|
-
|
366
|
+
|
367
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/spot#retrieve-spot-asset-contexts
|
368
|
+
|
361
369
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
362
370
|
:returns dict[]: an array of objects representing market data
|
363
371
|
"""
|
@@ -416,7 +424,8 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
416
424
|
markets = []
|
417
425
|
for i in range(0, len(meta)):
|
418
426
|
market = self.safe_dict(meta, i, {})
|
419
|
-
|
427
|
+
index = self.safe_integer(market, 'index')
|
428
|
+
extraData = self.safe_dict(second, index, {})
|
420
429
|
marketName = self.safe_string(market, 'name')
|
421
430
|
# if marketName.find('/') < 0:
|
422
431
|
# # there are some weird spot markets in testnet, eg @2
|
@@ -589,8 +598,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
589
598
|
async def fetch_balance(self, params={}) -> Balances:
|
590
599
|
"""
|
591
600
|
query for balance and get the amount of funds available for trading or funds locked in orders
|
592
|
-
|
593
|
-
|
601
|
+
|
602
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/spot#retrieve-a-users-token-balances
|
603
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/perpetuals#retrieve-users-perpetuals-account-summary
|
604
|
+
|
594
605
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
595
606
|
:param str [params.user]: user address, will default to self.walletAddress if not provided
|
596
607
|
:param str [params.type]: wallet type, ['spot', 'swap'], defaults to swap
|
@@ -671,7 +682,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
671
682
|
async def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
672
683
|
"""
|
673
684
|
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
674
|
-
|
685
|
+
|
686
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint#l2-book-snapshot
|
687
|
+
|
675
688
|
:param str symbol: unified symbol of the market to fetch the order book for
|
676
689
|
:param int [limit]: the maximum amount of order book entries to return
|
677
690
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -717,8 +730,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
717
730
|
async def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
718
731
|
"""
|
719
732
|
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
|
720
|
-
|
721
|
-
|
733
|
+
|
734
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/perpetuals#retrieve-perpetuals-asset-contexts-includes-mark-price-current-funding-open-interest-etc
|
735
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/spot#retrieve-spot-asset-contexts
|
736
|
+
|
722
737
|
:param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
|
723
738
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
724
739
|
:returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -740,7 +755,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
740
755
|
async def fetch_funding_rates(self, symbols: Strings = None, params={}) -> FundingRates:
|
741
756
|
"""
|
742
757
|
retrieves data on all swap markets for hyperliquid
|
743
|
-
|
758
|
+
|
759
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/perpetuals#retrieve-perpetuals-asset-contexts-includes-mark-price-current-funding-open-interest-etc
|
760
|
+
|
761
|
+
:param str[] [symbols]: list of unified market symbols
|
744
762
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
745
763
|
:returns dict[]: an array of objects representing market data
|
746
764
|
"""
|
@@ -873,7 +891,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
873
891
|
async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
874
892
|
"""
|
875
893
|
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
876
|
-
|
894
|
+
|
895
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint#candle-snapshot
|
896
|
+
|
877
897
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
878
898
|
:param str timeframe: the length of time each candle represents, support '1m', '15m', '1h', '1d'
|
879
899
|
:param int [since]: timestamp in ms of the earliest candle to fetch
|
@@ -951,8 +971,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
951
971
|
async def fetch_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
952
972
|
"""
|
953
973
|
get the list of most recent trades for a particular symbol
|
954
|
-
|
955
|
-
|
974
|
+
|
975
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint#retrieve-a-users-fills
|
976
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint#retrieve-a-users-fills-by-time
|
977
|
+
|
956
978
|
:param str symbol: unified market symbol
|
957
979
|
:param int [since]: the earliest time in ms to fetch trades for
|
958
980
|
:param int [limit]: the maximum number of trades structures to retrieve
|
@@ -1127,7 +1149,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1127
1149
|
async def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
|
1128
1150
|
"""
|
1129
1151
|
create a trade order
|
1130
|
-
|
1152
|
+
|
1153
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#place-an-order
|
1154
|
+
|
1131
1155
|
:param str symbol: unified symbol of the market to create an order in
|
1132
1156
|
:param str type: 'market' or 'limit'
|
1133
1157
|
:param str side: 'buy' or 'sell'
|
@@ -1151,8 +1175,11 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1151
1175
|
async def create_orders(self, orders: List[OrderRequest], params={}):
|
1152
1176
|
"""
|
1153
1177
|
create a list of trade orders
|
1154
|
-
|
1178
|
+
|
1179
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#place-an-order
|
1180
|
+
|
1155
1181
|
:param Array orders: list of orders to create, each object should contain the parameters required by createOrder, namely symbol, type, side, amount, price and params
|
1182
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1156
1183
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
1157
1184
|
"""
|
1158
1185
|
await self.load_markets()
|
@@ -1183,7 +1210,7 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1183
1210
|
def create_orders_request(self, orders, params={}) -> dict:
|
1184
1211
|
"""
|
1185
1212
|
create a list of trade orders
|
1186
|
-
|
1213
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#place-an-order
|
1187
1214
|
:param Array orders: list of orders to create, each object should contain the parameters required by createOrder, namely symbol, type, side, amount, price and params
|
1188
1215
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
1189
1216
|
"""
|
@@ -1295,8 +1322,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1295
1322
|
async def cancel_order(self, id: str, symbol: Str = None, params={}):
|
1296
1323
|
"""
|
1297
1324
|
cancels an open order
|
1298
|
-
|
1299
|
-
|
1325
|
+
|
1326
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s
|
1327
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s-by-cloid
|
1328
|
+
|
1300
1329
|
:param str id: order id
|
1301
1330
|
:param str symbol: unified symbol of the market the order was made in
|
1302
1331
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1310,8 +1339,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1310
1339
|
async def cancel_orders(self, ids: List[str], symbol: Str = None, params={}):
|
1311
1340
|
"""
|
1312
1341
|
cancel multiple orders
|
1313
|
-
|
1314
|
-
|
1342
|
+
|
1343
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s
|
1344
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s-by-cloid
|
1345
|
+
|
1315
1346
|
:param str[] ids: order ids
|
1316
1347
|
:param str [symbol]: unified market symbol
|
1317
1348
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1390,8 +1421,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1390
1421
|
async def cancel_orders_for_symbols(self, orders: List[CancellationRequest], params={}):
|
1391
1422
|
"""
|
1392
1423
|
cancel multiple orders for multiple symbols
|
1393
|
-
|
1394
|
-
|
1424
|
+
|
1425
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s
|
1426
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s-by-cloid
|
1427
|
+
|
1395
1428
|
:param CancellationRequest[] orders: each order should contain the parameters required by cancelOrder namely id and symbol, example [{"id": "a", "symbol": "BTC/USDT"}, {"id": "b", "symbol": "ETH/USDT"}]
|
1396
1429
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1397
1430
|
:param str [params.vaultAddress]: the vault address
|
@@ -1574,8 +1607,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1574
1607
|
async def edit_order(self, id: str, symbol: str, type: str, side: str, amount: Num = None, price: Num = None, params={}):
|
1575
1608
|
"""
|
1576
1609
|
edit a trade order
|
1577
|
-
|
1578
|
-
|
1610
|
+
|
1611
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#modify-an-order
|
1612
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#modify-multiple-orders
|
1613
|
+
|
1579
1614
|
:param str id: cancel order id
|
1580
1615
|
:param str symbol: unified symbol of the market to create an order in
|
1581
1616
|
:param str type: 'market' or 'limit'
|
@@ -1639,7 +1674,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1639
1674
|
async def fetch_funding_rate_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
1640
1675
|
"""
|
1641
1676
|
fetches historical funding rate prices
|
1642
|
-
|
1677
|
+
|
1678
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/perpetuals#retrieve-historical-funding-rates
|
1679
|
+
|
1643
1680
|
:param str symbol: unified symbol of the market to fetch the funding rate history for
|
1644
1681
|
:param int [since]: timestamp in ms of the earliest funding rate to fetch
|
1645
1682
|
:param int [limit]: the maximum amount of `funding rate structures <https://docs.ccxt.com/#/?id=funding-rate-history-structure>` to fetch
|
@@ -1690,7 +1727,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1690
1727
|
async def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
1691
1728
|
"""
|
1692
1729
|
fetch all unfilled currently open orders
|
1693
|
-
|
1730
|
+
|
1731
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint#retrieve-a-users-open-orders
|
1732
|
+
|
1694
1733
|
:param str symbol: unified market symbol
|
1695
1734
|
:param int [since]: the earliest time in ms to fetch open orders for
|
1696
1735
|
:param int [limit]: the maximum number of open orders structures to retrieve
|
@@ -1814,7 +1853,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
1814
1853
|
async def fetch_order(self, id: str, symbol: Str = None, params={}):
|
1815
1854
|
"""
|
1816
1855
|
fetches information on an order made by the user
|
1817
|
-
|
1856
|
+
|
1857
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint#query-order-status-by-oid-or-cloid
|
1858
|
+
|
1859
|
+
:param str id: order id
|
1818
1860
|
:param str symbol: unified symbol of the market the order was made in
|
1819
1861
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1820
1862
|
:param str [params.user]: user address, will default to self.walletAddress if not provided
|
@@ -2020,8 +2062,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
2020
2062
|
async def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
2021
2063
|
"""
|
2022
2064
|
fetch all trades made by the user
|
2023
|
-
|
2024
|
-
|
2065
|
+
|
2066
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint#retrieve-a-users-fills
|
2067
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint#retrieve-a-users-fills-by-time
|
2068
|
+
|
2025
2069
|
:param str symbol: unified market symbol
|
2026
2070
|
:param int [since]: the earliest time in ms to fetch trades for
|
2027
2071
|
:param int [limit]: the maximum number of trades structures to retrieve
|
@@ -2123,7 +2167,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
2123
2167
|
async def fetch_position(self, symbol: str, params={}):
|
2124
2168
|
"""
|
2125
2169
|
fetch data on an open position
|
2126
|
-
|
2170
|
+
|
2171
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/perpetuals#retrieve-users-perpetuals-account-summary
|
2172
|
+
|
2127
2173
|
:param str symbol: unified market symbol of the market the position is held in
|
2128
2174
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2129
2175
|
:param str [params.user]: user address, will default to self.walletAddress if not provided
|
@@ -2135,7 +2181,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
2135
2181
|
async def fetch_positions(self, symbols: Strings = None, params={}):
|
2136
2182
|
"""
|
2137
2183
|
fetch all open positions
|
2138
|
-
|
2184
|
+
|
2185
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/info-endpoint/perpetuals#retrieve-users-perpetuals-account-summary
|
2186
|
+
|
2139
2187
|
:param str[] [symbols]: list of unified market symbols
|
2140
2188
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2141
2189
|
:param str [params.user]: user address, will default to self.walletAddress if not provided
|
@@ -2372,7 +2420,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
2372
2420
|
async def add_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
2373
2421
|
"""
|
2374
2422
|
add margin
|
2375
|
-
|
2423
|
+
|
2424
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#update-isolated-margin
|
2425
|
+
|
2376
2426
|
:param str symbol: unified market symbol
|
2377
2427
|
:param float amount: amount of margin to add
|
2378
2428
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -2382,7 +2432,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
2382
2432
|
|
2383
2433
|
async def reduce_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
2384
2434
|
"""
|
2385
|
-
|
2435
|
+
|
2436
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#update-isolated-margin
|
2437
|
+
|
2386
2438
|
remove margin from a position
|
2387
2439
|
:param str symbol: unified market symbol
|
2388
2440
|
:param float amount: the amount of margin to remove
|
@@ -2451,7 +2503,9 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
2451
2503
|
async def transfer(self, code: str, amount: float, fromAccount: str, toAccount: str, params={}) -> TransferEntry:
|
2452
2504
|
"""
|
2453
2505
|
transfer currency internally between wallets on the same account
|
2454
|
-
|
2506
|
+
|
2507
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#l1-usdc-transfer
|
2508
|
+
|
2455
2509
|
:param str code: unified currency code
|
2456
2510
|
:param float amount: amount to transfer
|
2457
2511
|
:param str fromAccount: account to transfer from *spot, swap*
|
@@ -2519,8 +2573,10 @@ class hyperliquid(Exchange, ImplicitAPI):
|
|
2519
2573
|
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}) -> Transaction:
|
2520
2574
|
"""
|
2521
2575
|
make a withdrawal(only support USDC)
|
2522
|
-
|
2523
|
-
|
2576
|
+
|
2577
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#initiate-a-withdrawal-request
|
2578
|
+
https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#deposit-or-withdraw-from-a-vault
|
2579
|
+
|
2524
2580
|
:param str code: unified currency code
|
2525
2581
|
:param float amount: the amount to withdraw
|
2526
2582
|
:param str address: the address to withdraw to
|
ccxt/async_support/idex.py
CHANGED
@@ -214,7 +214,9 @@ class idex(Exchange, ImplicitAPI):
|
|
214
214
|
async def fetch_markets(self, params={}) -> List[Market]:
|
215
215
|
"""
|
216
216
|
retrieves data on all markets for idex
|
217
|
-
|
217
|
+
|
218
|
+
https://api-docs-v3.idex.io/#get-markets
|
219
|
+
|
218
220
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
219
221
|
:returns dict[]: an array of objects representing market data
|
220
222
|
"""
|
@@ -341,7 +343,9 @@ class idex(Exchange, ImplicitAPI):
|
|
341
343
|
async def fetch_ticker(self, symbol: str, params={}) -> Ticker:
|
342
344
|
"""
|
343
345
|
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
344
|
-
|
346
|
+
|
347
|
+
https://api-docs-v3.idex.io/#get-tickers
|
348
|
+
|
345
349
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
346
350
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
347
351
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -376,7 +380,9 @@ class idex(Exchange, ImplicitAPI):
|
|
376
380
|
async def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
377
381
|
"""
|
378
382
|
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
|
379
|
-
|
383
|
+
|
384
|
+
https://api-docs-v3.idex.io/#get-tickers
|
385
|
+
|
380
386
|
:param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
|
381
387
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
382
388
|
:returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -451,7 +457,9 @@ class idex(Exchange, ImplicitAPI):
|
|
451
457
|
async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
452
458
|
"""
|
453
459
|
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
454
|
-
|
460
|
+
|
461
|
+
https://api-docs-v3.idex.io/#get-candles
|
462
|
+
|
455
463
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
456
464
|
:param str timeframe: the length of time each candle represents
|
457
465
|
:param int [since]: timestamp in ms of the earliest candle to fetch
|
@@ -508,7 +516,9 @@ class idex(Exchange, ImplicitAPI):
|
|
508
516
|
async def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
509
517
|
"""
|
510
518
|
get the list of most recent trades for a particular symbol
|
511
|
-
|
519
|
+
|
520
|
+
https://api-docs-v3.idex.io/#get-trades
|
521
|
+
|
512
522
|
:param str symbol: unified symbol of the market to fetch trades for
|
513
523
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
514
524
|
:param int [limit]: the maximum amount of trades to fetch
|
@@ -617,7 +627,9 @@ class idex(Exchange, ImplicitAPI):
|
|
617
627
|
async def fetch_trading_fees(self, params={}) -> TradingFees:
|
618
628
|
"""
|
619
629
|
fetch the trading fees for multiple markets
|
620
|
-
|
630
|
+
|
631
|
+
https://api-docs-v3.idex.io/#get-api-account
|
632
|
+
|
621
633
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
622
634
|
:returns dict: a dictionary of `fee structures <https://docs.ccxt.com/#/?id=fee-structure>` indexed by market symbols
|
623
635
|
"""
|
@@ -660,7 +672,9 @@ class idex(Exchange, ImplicitAPI):
|
|
660
672
|
async def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
661
673
|
"""
|
662
674
|
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
663
|
-
|
675
|
+
|
676
|
+
https://api-docs-v3.idex.io/#get-order-books
|
677
|
+
|
664
678
|
:param str symbol: unified symbol of the market to fetch the order book for
|
665
679
|
:param int [limit]: the maximum amount of order book entries to return
|
666
680
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -720,7 +734,9 @@ class idex(Exchange, ImplicitAPI):
|
|
720
734
|
async def fetch_currencies(self, params={}) -> Currencies:
|
721
735
|
"""
|
722
736
|
fetches all available currencies on an exchange
|
723
|
-
|
737
|
+
|
738
|
+
https://api-docs-v3.idex.io/#get-assets
|
739
|
+
|
724
740
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
725
741
|
:returns dict: an associative dictionary of currencies
|
726
742
|
"""
|
@@ -782,7 +798,9 @@ class idex(Exchange, ImplicitAPI):
|
|
782
798
|
async def fetch_balance(self, params={}) -> Balances:
|
783
799
|
"""
|
784
800
|
query for balance and get the amount of funds available for trading or funds locked in orders
|
785
|
-
|
801
|
+
|
802
|
+
https://api-docs-v3.idex.io/#get-balances
|
803
|
+
|
786
804
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
787
805
|
:returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
|
788
806
|
"""
|
@@ -820,7 +838,9 @@ class idex(Exchange, ImplicitAPI):
|
|
820
838
|
async def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
821
839
|
"""
|
822
840
|
fetch all trades made by the user
|
823
|
-
|
841
|
+
|
842
|
+
https://api-docs-v3.idex.io/#get-fills
|
843
|
+
|
824
844
|
:param str symbol: unified market symbol
|
825
845
|
:param int [since]: the earliest time in ms to fetch trades for
|
826
846
|
:param int [limit]: the maximum number of trades structures to retrieve
|
@@ -879,7 +899,10 @@ class idex(Exchange, ImplicitAPI):
|
|
879
899
|
async def fetch_order(self, id: str, symbol: Str = None, params={}):
|
880
900
|
"""
|
881
901
|
fetches information on an order made by the user
|
882
|
-
|
902
|
+
|
903
|
+
https://api-docs-v3.idex.io/#get-orders
|
904
|
+
|
905
|
+
:param str id: order id
|
883
906
|
:param str symbol: unified symbol of the market the order was made in
|
884
907
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
885
908
|
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
@@ -892,7 +915,9 @@ class idex(Exchange, ImplicitAPI):
|
|
892
915
|
async def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
893
916
|
"""
|
894
917
|
fetch all unfilled currently open orders
|
895
|
-
|
918
|
+
|
919
|
+
https://api-docs-v3.idex.io/#get-orders
|
920
|
+
|
896
921
|
:param str symbol: unified market symbol
|
897
922
|
:param int [since]: the earliest time in ms to fetch open orders for
|
898
923
|
:param int [limit]: the maximum number of open orders structures to retrieve
|
@@ -907,7 +932,9 @@ class idex(Exchange, ImplicitAPI):
|
|
907
932
|
async def fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
908
933
|
"""
|
909
934
|
fetches information on multiple closed orders made by the user
|
910
|
-
|
935
|
+
|
936
|
+
https://api-docs-v3.idex.io/#get-orders
|
937
|
+
|
911
938
|
:param str symbol: unified market symbol of the market orders were made in
|
912
939
|
:param int [since]: the earliest time in ms to fetch orders for
|
913
940
|
:param int [limit]: the maximum number of order structures to retrieve
|
@@ -1112,7 +1139,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1112
1139
|
async def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
|
1113
1140
|
"""
|
1114
1141
|
create a trade order, https://docs.idex.io/#create-order
|
1115
|
-
|
1142
|
+
|
1143
|
+
https://api-docs-v3.idex.io/#create-order
|
1144
|
+
|
1116
1145
|
:param str symbol: unified symbol of the market to create an order in
|
1117
1146
|
:param str type: 'market' or 'limit'
|
1118
1147
|
:param str side: 'buy' or 'sell'
|
@@ -1295,7 +1324,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1295
1324
|
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}) -> Transaction:
|
1296
1325
|
"""
|
1297
1326
|
make a withdrawal
|
1298
|
-
|
1327
|
+
|
1328
|
+
https://api-docs-v3.idex.io/#withdraw-funds
|
1329
|
+
|
1299
1330
|
:param str code: unified currency code
|
1300
1331
|
:param float amount: the amount to withdraw
|
1301
1332
|
:param str address: the address to withdraw to
|
@@ -1347,7 +1378,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1347
1378
|
async def cancel_all_orders(self, symbol: Str = None, params={}):
|
1348
1379
|
"""
|
1349
1380
|
cancel all open orders
|
1350
|
-
|
1381
|
+
|
1382
|
+
https://api-docs-v3.idex.io/#cancel-order
|
1383
|
+
|
1351
1384
|
:param str symbol: unified market symbol, only orders in the market of self symbol are cancelled when symbol is not None
|
1352
1385
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1353
1386
|
:returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
@@ -1383,7 +1416,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1383
1416
|
async def cancel_order(self, id: str, symbol: Str = None, params={}):
|
1384
1417
|
"""
|
1385
1418
|
cancels an open order
|
1386
|
-
|
1419
|
+
|
1420
|
+
https://api-docs-v3.idex.io/#cancel-order
|
1421
|
+
|
1387
1422
|
:param str id: order id
|
1388
1423
|
:param str symbol: unified symbol of the market the order was made in
|
1389
1424
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1428,7 +1463,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1428
1463
|
async def fetch_deposit(self, id: str, code: Str = None, params={}):
|
1429
1464
|
"""
|
1430
1465
|
fetch information on a deposit
|
1431
|
-
|
1466
|
+
|
1467
|
+
https://api-docs-v3.idex.io/#get-deposits
|
1468
|
+
|
1432
1469
|
:param str id: deposit id
|
1433
1470
|
:param str code: not used by idex fetchDeposit()
|
1434
1471
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1447,7 +1484,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1447
1484
|
async def fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
1448
1485
|
"""
|
1449
1486
|
fetch all deposits made to an account
|
1450
|
-
|
1487
|
+
|
1488
|
+
https://api-docs-v3.idex.io/#get-deposits
|
1489
|
+
|
1451
1490
|
:param str code: unified currency code
|
1452
1491
|
:param int [since]: the earliest time in ms to fetch deposits for
|
1453
1492
|
:param int [limit]: the maximum number of deposits structures to retrieve
|
@@ -1462,7 +1501,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1462
1501
|
async def fetch_status(self, params={}):
|
1463
1502
|
"""
|
1464
1503
|
the latest known information on the availability of the exchange API
|
1465
|
-
|
1504
|
+
|
1505
|
+
https://api-docs-v3.idex.io/#get-ping
|
1506
|
+
|
1466
1507
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1467
1508
|
:returns dict: a `status structure <https://docs.ccxt.com/#/?id=exchange-status-structure>`
|
1468
1509
|
"""
|
@@ -1478,7 +1519,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1478
1519
|
async def fetch_time(self, params={}):
|
1479
1520
|
"""
|
1480
1521
|
fetches the current integer timestamp in milliseconds from the exchange server
|
1481
|
-
|
1522
|
+
|
1523
|
+
https://api-docs-v3.idex.io/#get-time
|
1524
|
+
|
1482
1525
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1483
1526
|
:returns int: the current integer timestamp in milliseconds from the exchange server
|
1484
1527
|
"""
|
@@ -1491,7 +1534,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1491
1534
|
async def fetch_withdrawal(self, id: str, code: Str = None, params={}):
|
1492
1535
|
"""
|
1493
1536
|
fetch data on a currency withdrawal via the withdrawal id
|
1494
|
-
|
1537
|
+
|
1538
|
+
https://api-docs-v3.idex.io/#get-withdrawals
|
1539
|
+
|
1495
1540
|
:param str id: withdrawal id
|
1496
1541
|
:param str code: not used by idex.fetchWithdrawal
|
1497
1542
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1510,7 +1555,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1510
1555
|
async def fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
1511
1556
|
"""
|
1512
1557
|
fetch all withdrawals made from an account
|
1513
|
-
|
1558
|
+
|
1559
|
+
https://api-docs-v3.idex.io/#get-withdrawals
|
1560
|
+
|
1514
1561
|
:param str code: unified currency code
|
1515
1562
|
:param int [since]: the earliest time in ms to fetch withdrawals for
|
1516
1563
|
:param int [limit]: the maximum number of withdrawals structures to retrieve
|
@@ -1658,7 +1705,9 @@ class idex(Exchange, ImplicitAPI):
|
|
1658
1705
|
async def fetch_deposit_address(self, code: Str = None, params={}) -> DepositAddress:
|
1659
1706
|
"""
|
1660
1707
|
fetch the Polygon address of the wallet
|
1661
|
-
|
1708
|
+
|
1709
|
+
https://api-docs-v3.idex.io/#get-wallets
|
1710
|
+
|
1662
1711
|
:param str code: not used by idex
|
1663
1712
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1664
1713
|
:returns dict: an `address structure <https://docs.ccxt.com/#/?id=address-structure>`
|
@@ -468,6 +468,7 @@ class independentreserve(Exchange, ImplicitAPI):
|
|
468
468
|
async def fetch_order(self, id: str, symbol: Str = None, params={}):
|
469
469
|
"""
|
470
470
|
fetches information on an order made by the user
|
471
|
+
:param str id: order id
|
471
472
|
:param str symbol: unified symbol of the market the order was made in
|
472
473
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
473
474
|
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
@@ -685,7 +686,9 @@ class independentreserve(Exchange, ImplicitAPI):
|
|
685
686
|
async def cancel_order(self, id: str, symbol: Str = None, params={}):
|
686
687
|
"""
|
687
688
|
cancels an open order
|
688
|
-
|
689
|
+
|
690
|
+
https://www.independentreserve.com/features/api#CancelOrder
|
691
|
+
|
689
692
|
:param str id: order id
|
690
693
|
:param str symbol: unified symbol of the market the order was made in
|
691
694
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -716,7 +719,9 @@ class independentreserve(Exchange, ImplicitAPI):
|
|
716
719
|
async def fetch_deposit_address(self, code: str, params={}) -> DepositAddress:
|
717
720
|
"""
|
718
721
|
fetch the deposit address for a currency associated with self account
|
719
|
-
|
722
|
+
|
723
|
+
https://www.independentreserve.com/features/api#GetDigitalCurrencyDepositAddress
|
724
|
+
|
720
725
|
:param str code: unified currency code
|
721
726
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
722
727
|
:returns dict: an `address structure <https://docs.ccxt.com/#/?id=address-structure>`
|
@@ -759,14 +764,16 @@ class independentreserve(Exchange, ImplicitAPI):
|
|
759
764
|
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}) -> Transaction:
|
760
765
|
"""
|
761
766
|
make a withdrawal
|
762
|
-
|
767
|
+
|
768
|
+
https://www.independentreserve.com/features/api#WithdrawDigitalCurrency
|
769
|
+
|
763
770
|
:param str code: unified currency code
|
764
771
|
:param float amount: the amount to withdraw
|
765
772
|
:param str address: the address to withdraw to
|
766
773
|
:param str tag:
|
767
774
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
768
|
-
|
769
|
-
|
775
|
+
|
776
|
+
EXCHANGE SPECIFIC PARAMETERS
|
770
777
|
:param dict [params.comment]: withdrawal comment, should not exceed 500 characters
|
771
778
|
:returns dict: a `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
|
772
779
|
"""
|