ccxt 4.3.6__tar.gz → 4.3.7__tar.gz
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.
Potentially problematic release.
This version of ccxt might be problematic. Click here for more details.
- {ccxt-4.3.6/ccxt.egg-info → ccxt-4.3.7}/PKG-INFO +4 -4
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/__init__.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinbase.py +5 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/ace.py +5 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/alpaca.py +6 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/ascendex.py +2 -2
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/__init__.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/ace.py +5 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/alpaca.py +6 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/ascendex.py +2 -2
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/exchange.py +27 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bigone.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/binance.py +5 -3
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bingx.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitbank.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitfinex.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitfinex2.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitflyer.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitget.py +70 -4
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bithumb.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitmart.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitmex.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitopro.py +6 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitrue.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitso.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitstamp.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitteam.py +4 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitvavo.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bl3p.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/blockchaincom.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/btcalpha.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/btcbox.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/btcmarkets.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/btcturk.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bybit.py +116 -14
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/cex.py +6 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinbase.py +94 -18
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinbaseinternational.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinbasepro.py +7 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coincheck.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinex.py +151 -47
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinlist.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinmate.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinone.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinsph.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinspot.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/cryptocom.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/delta.py +2 -2
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/deribit.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/digifinex.py +3 -3
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/exmo.py +8 -3
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/gate.py +112 -24
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/gemini.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/hitbtc.py +7 -6
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/hollaex.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/htx.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/huobijp.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/hyperliquid.py +2 -2
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/idex.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/independentreserve.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/indodax.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/kraken.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/kucoin.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/kucoinfutures.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/kuna.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/latoken.py +6 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/lbank.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/luno.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/lykke.py +6 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/mercado.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/mexc.py +110 -4
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/ndax.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/novadax.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/okcoin.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/okx.py +80 -4
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/onetrading.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/p2b.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/phemex.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/poloniex.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/probit.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/timex.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/tokocrypto.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/tradeogre.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/upbit.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/wavesexchange.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/wazirx.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/whitebit.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/woo.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/yobit.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/zaif.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/zonda.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/base/exchange.py +27 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bigone.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/binance.py +5 -3
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bingx.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitbank.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitfinex.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitfinex2.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitflyer.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitget.py +70 -4
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bithumb.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitmart.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitmex.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitopro.py +6 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitrue.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitso.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitstamp.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitteam.py +4 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitvavo.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bl3p.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/blockchaincom.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/btcalpha.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/btcbox.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/btcmarkets.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/btcturk.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bybit.py +116 -14
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/cex.py +6 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinbase.py +94 -18
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinbaseinternational.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinbasepro.py +7 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coincheck.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinex.py +151 -47
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinlist.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinmate.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinone.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinsph.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinspot.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/cryptocom.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/delta.py +2 -2
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/deribit.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/digifinex.py +3 -3
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/exmo.py +8 -3
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/gate.py +112 -24
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/gemini.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/hitbtc.py +7 -6
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/hollaex.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/htx.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/huobijp.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/hyperliquid.py +2 -2
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/idex.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/independentreserve.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/indodax.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/kraken.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/kucoin.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/kucoinfutures.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/kuna.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/latoken.py +6 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/lbank.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/luno.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/lykke.py +6 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/mercado.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/mexc.py +110 -4
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/ndax.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/novadax.py +5 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/okcoin.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/okx.py +80 -4
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/onetrading.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/p2b.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/phemex.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/poloniex.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/__init__.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bybit.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/coinbase.py +28 -28
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/probit.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/timex.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/tokocrypto.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/tradeogre.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/upbit.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/wavesexchange.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/wazirx.py +3 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/whitebit.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/woo.py +3 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/yobit.py +4 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/zaif.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/zonda.py +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7/ccxt.egg-info}/PKG-INFO +4 -4
- {ccxt-4.3.6 → ccxt-4.3.7}/package.json +1 -1
- {ccxt-4.3.6 → ccxt-4.3.7}/LICENSE.txt +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/MANIFEST.in +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/README.rst +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/ace.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/alpaca.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/ascendex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bequant.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bigone.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/binance.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/binancecoinm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/binanceus.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/binanceusdm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bingx.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bit2c.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitbank.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitbay.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitbns.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitcoincom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitfinex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitfinex2.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitflyer.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitget.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bithumb.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitmart.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitmex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitopro.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitpanda.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitrue.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitso.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitstamp.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitteam.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bitvavo.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bl3p.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/blockchaincom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/blofin.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/btcalpha.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/btcbox.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/btcmarkets.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/btcturk.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/bybit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/cex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinbaseinternational.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinbasepro.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coincheck.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinlist.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinmate.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinmetro.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinone.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinsph.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/coinspot.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/cryptocom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/currencycom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/delta.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/deribit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/digifinex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/exmo.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/fmfwio.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/gate.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/gateio.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/gemini.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/hitbtc.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/hitbtc3.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/hollaex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/htx.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/huobi.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/huobijp.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/hyperliquid.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/idex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/independentreserve.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/indodax.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/kraken.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/krakenfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/kucoin.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/kucoinfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/kuna.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/latoken.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/lbank.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/luno.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/lykke.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/mercado.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/mexc.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/ndax.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/novadax.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/oceanex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/okcoin.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/okx.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/onetrading.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/p2b.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/paymium.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/phemex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/poloniex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/poloniexfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/probit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/timex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/tokocrypto.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/tradeogre.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/upbit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/wavesexchange.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/wazirx.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/whitebit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/woo.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/yobit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/zaif.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/abstract/zonda.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/throttler.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/ws/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/ws/aiohttp_client.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/ws/cache.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/ws/client.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/ws/fast_client.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/ws/functions.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/ws/future.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/ws/order_book.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/base/ws/order_book_side.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bequant.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/binancecoinm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/binanceus.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/binanceusdm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bit2c.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitbay.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitbns.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitcoincom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/bitpanda.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/blofin.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/coinmetro.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/currencycom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/flowbtc.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/fmfwio.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/gateio.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/hitbtc3.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/huobi.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/krakenfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/oceanex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/paymium.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/async_support/poloniexfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/base/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/base/decimal_to_precision.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/base/errors.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/base/precise.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/base/types.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bequant.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/binancecoinm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/binanceus.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/binanceusdm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bit2c.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitbay.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitbns.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitcoincom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/bitpanda.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/blofin.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/coinmetro.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/currencycom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/flowbtc.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/fmfwio.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/gateio.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/hitbtc3.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/huobi.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/krakenfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/oceanex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/paymium.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/poloniexfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/alpaca.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/ascendex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bequant.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/binance.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/binancecoinm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/binanceus.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/binanceusdm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bingx.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitcoincom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitfinex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitfinex2.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitget.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bithumb.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitmart.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitmex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitopro.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitpanda.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitrue.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitstamp.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/bitvavo.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/blockchaincom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/cex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/coinbaseinternational.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/coinbasepro.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/coincheck.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/coinex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/coinone.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/cryptocom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/currencycom.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/deribit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/exmo.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/gate.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/gateio.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/gemini.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/hitbtc.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/hollaex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/htx.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/huobi.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/huobijp.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/hyperliquid.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/idex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/independentreserve.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/kraken.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/krakenfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/kucoin.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/kucoinfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/lbank.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/luno.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/mexc.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/ndax.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/okcoin.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/okx.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/onetrading.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/p2b.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/phemex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/poloniex.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/poloniexfutures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/probit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/upbit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/wazirx.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/whitebit.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/pro/woo.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/_version.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/curves.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/der.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/keys.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ecdsa/util.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/keccak/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/keccak/keccak.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/msgpack/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/msgpack/ext.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/msgpack/fallback.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/parsimonious/utils.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/_signatures.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/_version.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/compatibility.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/functoolz.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/recipes.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/static_dependencies/toolz/utils.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/__init__.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_account.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_balance.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_borrow_interest.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_borrow_rate.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_calculate_fee.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_crypto.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_currency.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_datetime.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_decimal_to_precision.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_deep_extend.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_deposit_withdrawal.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_exchange_datetime_functions.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_funding_rate_history.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_last_price.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_ledger_entry.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_ledger_item.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_leverage_tier.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_margin_mode.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_margin_modification.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_market.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_number.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_ohlcv.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_open_interest.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_order.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_order_book.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_position.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_shared_methods.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_status.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_throttle.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_ticker.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_trade.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_trading_fee.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/base/test_transaction.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/test_async.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt/test/test_sync.py +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt.egg-info/SOURCES.txt +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt.egg-info/dependency_links.txt +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt.egg-info/requires.txt +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/ccxt.egg-info/top_level.txt +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/setup.cfg +0 -0
- {ccxt-4.3.6 → ccxt-4.3.7}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.7
|
4
4
|
Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges
|
5
5
|
Home-page: https://ccxt.com
|
6
6
|
Author: Igor Kroitor
|
@@ -226,13 +226,13 @@ Description: # CCXT – CryptoCurrency eXchange Trading Library
|
|
226
226
|
|
227
227
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
228
228
|
|
229
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
230
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
229
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.7/dist/ccxt.browser.js
|
230
|
+
* unpkg: https://unpkg.com/ccxt@4.3.7/dist/ccxt.browser.js
|
231
231
|
|
232
232
|
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
|
233
233
|
|
234
234
|
```HTML
|
235
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
235
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.7/dist/ccxt.browser.js"></script>
|
236
236
|
```
|
237
237
|
|
238
238
|
Creates a global `ccxt` object:
|
@@ -48,6 +48,11 @@ class ImplicitAPI:
|
|
48
48
|
v2_private_delete_accounts_id = v2PrivateDeleteAccountsId = Entry('accounts/{id}', ['v2', 'private'], 'DELETE', {'cost': 10.6})
|
49
49
|
v2_private_delete_accounts_account_id_transactions_transaction_id = v2PrivateDeleteAccountsAccountIdTransactionsTransactionId = Entry('accounts/{account_id}/transactions/{transaction_id}', ['v2', 'private'], 'DELETE', {'cost': 10.6})
|
50
50
|
v3_public_get_brokerage_time = v3PublicGetBrokerageTime = Entry('brokerage/time', ['v3', 'public'], 'GET', {'cost': 3})
|
51
|
+
v3_public_get_brokerage_market_product_book = v3PublicGetBrokerageMarketProductBook = Entry('brokerage/market/product_book', ['v3', 'public'], 'GET', {'cost': 3})
|
52
|
+
v3_public_get_brokerage_market_products = v3PublicGetBrokerageMarketProducts = Entry('brokerage/market/products', ['v3', 'public'], 'GET', {'cost': 3})
|
53
|
+
v3_public_get_brokerage_market_products_product_id = v3PublicGetBrokerageMarketProductsProductId = Entry('brokerage/market/products/{product_id}', ['v3', 'public'], 'GET', {'cost': 3})
|
54
|
+
v3_public_get_brokerage_market_products_product_id_candles = v3PublicGetBrokerageMarketProductsProductIdCandles = Entry('brokerage/market/products/{product_id}/candles', ['v3', 'public'], 'GET', {'cost': 3})
|
55
|
+
v3_public_get_brokerage_market_products_product_id_ticker = v3PublicGetBrokerageMarketProductsProductIdTicker = Entry('brokerage/market/products/{product_id}/ticker', ['v3', 'public'], 'GET', {'cost': 3})
|
51
56
|
v3_private_get_brokerage_accounts = v3PrivateGetBrokerageAccounts = Entry('brokerage/accounts', ['v3', 'private'], 'GET', {'cost': 1})
|
52
57
|
v3_private_get_brokerage_accounts_account_uuid = v3PrivateGetBrokerageAccountsAccountUuid = Entry('brokerage/accounts/{account_uuid}', ['v3', 'private'], 'GET', {'cost': 1})
|
53
58
|
v3_private_get_brokerage_orders_historical_batch = v3PrivateGetBrokerageOrdersHistoricalBatch = Entry('brokerage/orders/historical/batch', ['v3', 'private'], 'GET', {'cost': 1})
|
@@ -67,8 +67,13 @@ class ace(Exchange, ImplicitAPI):
|
|
67
67
|
'fetchOrderBook': True,
|
68
68
|
'fetchOrders': False,
|
69
69
|
'fetchOrderTrades': True,
|
70
|
+
'fetchPosition': False,
|
71
|
+
'fetchPositionHistory': False,
|
70
72
|
'fetchPositionMode': False,
|
71
73
|
'fetchPositions': False,
|
74
|
+
'fetchPositionsForSymbol': False,
|
75
|
+
'fetchPositionsHistory': False,
|
76
|
+
'fetchPositionsRisk': False,
|
72
77
|
'fetchPremiumIndexOHLCV': False,
|
73
78
|
'fetchTicker': True,
|
74
79
|
'fetchTickers': True,
|
@@ -80,7 +80,13 @@ class alpaca(Exchange, ImplicitAPI):
|
|
80
80
|
'fetchOrder': True,
|
81
81
|
'fetchOrderBook': True,
|
82
82
|
'fetchOrders': True,
|
83
|
+
'fetchPosition': False,
|
84
|
+
'fetchPositionHistory': False,
|
85
|
+
'fetchPositionMode': False,
|
83
86
|
'fetchPositions': False,
|
87
|
+
'fetchPositionsForSymbol': False,
|
88
|
+
'fetchPositionsHistory': False,
|
89
|
+
'fetchPositionsRisk': False,
|
84
90
|
'fetchStatus': False,
|
85
91
|
'fetchTicker': False,
|
86
92
|
'fetchTickers': False,
|
@@ -2754,7 +2754,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
2754
2754
|
'datetime': None,
|
2755
2755
|
}
|
2756
2756
|
|
2757
|
-
def reduce_margin(self, symbol: str, amount, params={}) -> MarginModification:
|
2757
|
+
def reduce_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
2758
2758
|
"""
|
2759
2759
|
remove margin from a position
|
2760
2760
|
:param str symbol: unified market symbol
|
@@ -2764,7 +2764,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
2764
2764
|
"""
|
2765
2765
|
return self.modify_margin_helper(symbol, -amount, 'reduce', params)
|
2766
2766
|
|
2767
|
-
def add_margin(self, symbol: str, amount, params={}) -> MarginModification:
|
2767
|
+
def add_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
2768
2768
|
"""
|
2769
2769
|
add margin
|
2770
2770
|
:param str symbol: unified market symbol
|
@@ -67,8 +67,13 @@ class ace(Exchange, ImplicitAPI):
|
|
67
67
|
'fetchOrderBook': True,
|
68
68
|
'fetchOrders': False,
|
69
69
|
'fetchOrderTrades': True,
|
70
|
+
'fetchPosition': False,
|
71
|
+
'fetchPositionHistory': False,
|
70
72
|
'fetchPositionMode': False,
|
71
73
|
'fetchPositions': False,
|
74
|
+
'fetchPositionsForSymbol': False,
|
75
|
+
'fetchPositionsHistory': False,
|
76
|
+
'fetchPositionsRisk': False,
|
72
77
|
'fetchPremiumIndexOHLCV': False,
|
73
78
|
'fetchTicker': True,
|
74
79
|
'fetchTickers': True,
|
@@ -80,7 +80,13 @@ class alpaca(Exchange, ImplicitAPI):
|
|
80
80
|
'fetchOrder': True,
|
81
81
|
'fetchOrderBook': True,
|
82
82
|
'fetchOrders': True,
|
83
|
+
'fetchPosition': False,
|
84
|
+
'fetchPositionHistory': False,
|
85
|
+
'fetchPositionMode': False,
|
83
86
|
'fetchPositions': False,
|
87
|
+
'fetchPositionsForSymbol': False,
|
88
|
+
'fetchPositionsHistory': False,
|
89
|
+
'fetchPositionsRisk': False,
|
84
90
|
'fetchStatus': False,
|
85
91
|
'fetchTicker': False,
|
86
92
|
'fetchTickers': False,
|
@@ -2754,7 +2754,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
2754
2754
|
'datetime': None,
|
2755
2755
|
}
|
2756
2756
|
|
2757
|
-
async def reduce_margin(self, symbol: str, amount, params={}) -> MarginModification:
|
2757
|
+
async def reduce_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
2758
2758
|
"""
|
2759
2759
|
remove margin from a position
|
2760
2760
|
:param str symbol: unified market symbol
|
@@ -2764,7 +2764,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
2764
2764
|
"""
|
2765
2765
|
return await self.modify_margin_helper(symbol, -amount, 'reduce', params)
|
2766
2766
|
|
2767
|
-
async def add_margin(self, symbol: str, amount, params={}) -> MarginModification:
|
2767
|
+
async def add_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
2768
2768
|
"""
|
2769
2769
|
add margin
|
2770
2770
|
:param str symbol: unified market symbol
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# -----------------------------------------------------------------------------
|
4
4
|
|
5
|
-
__version__ = '4.3.
|
5
|
+
__version__ = '4.3.7'
|
6
6
|
|
7
7
|
# -----------------------------------------------------------------------------
|
8
8
|
|
@@ -1893,3 +1893,29 @@ class Exchange(BaseExchange):
|
|
1893
1893
|
sorted = self.sortCursorPaginatedResult(result)
|
1894
1894
|
key = 0 if (method == 'fetchOHLCV') else 'timestamp'
|
1895
1895
|
return self.filter_by_since_limit(sorted, since, limit, key)
|
1896
|
+
|
1897
|
+
async def fetch_position_history(self, symbol: str, since: Int = None, limit: Int = None, params={}):
|
1898
|
+
"""
|
1899
|
+
fetches the history of margin added or reduced from contract isolated positions
|
1900
|
+
:param str [symbol]: unified market symbol
|
1901
|
+
:param int [since]: timestamp in ms of the position
|
1902
|
+
:param int [limit]: the maximum amount of candles to fetch, default=1000
|
1903
|
+
:param dict params: extra parameters specific to the exchange api endpoint
|
1904
|
+
:returns dict[]: a list of `position structures <https://docs.ccxt.com/#/?id=position-structure>`
|
1905
|
+
"""
|
1906
|
+
if self.has['fetchPositionsHistory']:
|
1907
|
+
positions = await self.fetch_positions_history([symbol], since, limit, params)
|
1908
|
+
return self.safe_dict(positions, 0)
|
1909
|
+
else:
|
1910
|
+
raise NotSupported(self.id + ' fetchPositionHistory() is not supported yet')
|
1911
|
+
|
1912
|
+
async def fetch_positions_history(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={}):
|
1913
|
+
"""
|
1914
|
+
fetches the history of margin added or reduced from contract isolated positions
|
1915
|
+
:param str [symbol]: unified market symbol
|
1916
|
+
:param int [since]: timestamp in ms of the position
|
1917
|
+
:param int [limit]: the maximum amount of candles to fetch, default=1000
|
1918
|
+
:param dict params: extra parameters specific to the exchange api endpoint
|
1919
|
+
:returns dict[]: a list of `position structures <https://docs.ccxt.com/#/?id=position-structure>`
|
1920
|
+
"""
|
1921
|
+
raise NotSupported(self.id + ' fetchPositionsHistory() is not supported yet')
|
@@ -2044,7 +2044,7 @@ class bigone(Exchange, ImplicitAPI):
|
|
2044
2044
|
}
|
2045
2045
|
return self.safe_string(statuses, status, 'failed')
|
2046
2046
|
|
2047
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
2047
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
2048
2048
|
"""
|
2049
2049
|
make a withdrawal
|
2050
2050
|
:see: https://open.big.one/docs/spot_withdrawal.html#create-withdrawal-of-user
|
@@ -148,8 +148,10 @@ class binance(Exchange, ImplicitAPI):
|
|
148
148
|
'fetchOrders': True,
|
149
149
|
'fetchOrderTrades': True,
|
150
150
|
'fetchPosition': True,
|
151
|
+
'fetchPositionHistory': False,
|
151
152
|
'fetchPositionMode': True,
|
152
153
|
'fetchPositions': True,
|
154
|
+
'fetchPositionsHistory': False,
|
153
155
|
'fetchPositionsRisk': True,
|
154
156
|
'fetchPremiumIndexOHLCV': False,
|
155
157
|
'fetchSettlementHistory': True,
|
@@ -8019,7 +8021,7 @@ class binance(Exchange, ImplicitAPI):
|
|
8019
8021
|
}
|
8020
8022
|
return result
|
8021
8023
|
|
8022
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
8024
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
8023
8025
|
"""
|
8024
8026
|
make a withdrawal
|
8025
8027
|
:see: https://binance-docs.github.io/apidocs/spot/en/#withdraw-user_data
|
@@ -10380,7 +10382,7 @@ class binance(Exchange, ImplicitAPI):
|
|
10380
10382
|
'datetime': self.iso8601(timestamp),
|
10381
10383
|
}
|
10382
10384
|
|
10383
|
-
async def reduce_margin(self, symbol: str, amount, params={}) -> MarginModification:
|
10385
|
+
async def reduce_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
10384
10386
|
"""
|
10385
10387
|
:see: https://binance-docs.github.io/apidocs/delivery/en/#modify-isolated-position-margin-trade
|
10386
10388
|
:see: https://binance-docs.github.io/apidocs/futures/en/#modify-isolated-position-margin-trade
|
@@ -10392,7 +10394,7 @@ class binance(Exchange, ImplicitAPI):
|
|
10392
10394
|
"""
|
10393
10395
|
return await self.modify_margin_helper(symbol, amount, 2, params)
|
10394
10396
|
|
10395
|
-
async def add_margin(self, symbol: str, amount, params={}) -> MarginModification:
|
10397
|
+
async def add_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
10396
10398
|
"""
|
10397
10399
|
:see: https://binance-docs.github.io/apidocs/delivery/en/#modify-isolated-position-margin-trade
|
10398
10400
|
:see: https://binance-docs.github.io/apidocs/futures/en/#modify-isolated-position-margin-trade
|
@@ -87,8 +87,10 @@ class bingx(Exchange, ImplicitAPI):
|
|
87
87
|
'fetchOrder': True,
|
88
88
|
'fetchOrderBook': True,
|
89
89
|
'fetchOrders': True,
|
90
|
+
'fetchPositionHistory': False,
|
90
91
|
'fetchPositionMode': True,
|
91
92
|
'fetchPositions': True,
|
93
|
+
'fetchPositionsHistory': False,
|
92
94
|
'fetchTicker': True,
|
93
95
|
'fetchTickers': True,
|
94
96
|
'fetchTime': True,
|
@@ -3683,7 +3685,7 @@ class bingx(Exchange, ImplicitAPI):
|
|
3683
3685
|
coins = self.safe_list(response, 'data')
|
3684
3686
|
return self.parse_deposit_withdraw_fees(coins, codes, 'coin')
|
3685
3687
|
|
3686
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
3688
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
3687
3689
|
"""
|
3688
3690
|
make a withdrawal
|
3689
3691
|
:see: https://bingx-api.github.io/docs/#/common/account-api.html#Withdraw
|
@@ -64,8 +64,11 @@ class bitbank(Exchange, ImplicitAPI):
|
|
64
64
|
'fetchOrder': True,
|
65
65
|
'fetchOrderBook': True,
|
66
66
|
'fetchPosition': False,
|
67
|
+
'fetchPositionHistory': False,
|
67
68
|
'fetchPositionMode': False,
|
68
69
|
'fetchPositions': False,
|
70
|
+
'fetchPositionsForSymbol': False,
|
71
|
+
'fetchPositionsHistory': False,
|
69
72
|
'fetchPositionsRisk': False,
|
70
73
|
'fetchPremiumIndexOHLCV': False,
|
71
74
|
'fetchTicker': True,
|
@@ -763,7 +766,7 @@ class bitbank(Exchange, ImplicitAPI):
|
|
763
766
|
'info': response,
|
764
767
|
}
|
765
768
|
|
766
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
769
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
767
770
|
"""
|
768
771
|
make a withdrawal
|
769
772
|
:see: https://github.com/bitbankinc/bitbank-api-docs/blob/38d6d7c6f486c793872fd4b4087a0d090a04cd0a/rest-api.md#new-withdrawal-request
|
@@ -1462,7 +1462,7 @@ class bitfinex(Exchange, ImplicitAPI):
|
|
1462
1462
|
}
|
1463
1463
|
return self.safe_string(statuses, status, status)
|
1464
1464
|
|
1465
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
1465
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
1466
1466
|
"""
|
1467
1467
|
make a withdrawal
|
1468
1468
|
:see: https://docs.bitfinex.com/v1/reference/rest-auth-withdrawal
|
@@ -2424,7 +2424,7 @@ class bitfinex2(Exchange, ImplicitAPI):
|
|
2424
2424
|
#
|
2425
2425
|
return self.parse_transactions(response, currency, since, limit)
|
2426
2426
|
|
2427
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
2427
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
2428
2428
|
"""
|
2429
2429
|
make a withdrawal
|
2430
2430
|
:see: https://docs.bitfinex.com/reference/rest-auth-withdraw
|
@@ -764,7 +764,7 @@ class bitflyer(Exchange, ImplicitAPI):
|
|
764
764
|
# todo unify parsePosition/parsePositions
|
765
765
|
return response
|
766
766
|
|
767
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
767
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
768
768
|
"""
|
769
769
|
make a withdrawal
|
770
770
|
:see: https://lightning.bitflyer.com/docs?lang=en#withdrawing-funds
|
@@ -128,8 +128,10 @@ class bitget(Exchange, ImplicitAPI):
|
|
128
128
|
'fetchOrders': False,
|
129
129
|
'fetchOrderTrades': False,
|
130
130
|
'fetchPosition': True,
|
131
|
+
'fetchPositionHistory': 'emulated',
|
131
132
|
'fetchPositionMode': False,
|
132
133
|
'fetchPositions': True,
|
134
|
+
'fetchPositionsHistory': True,
|
133
135
|
'fetchPositionsRisk': False,
|
134
136
|
'fetchPremiumIndexOHLCV': False,
|
135
137
|
'fetchStatus': False,
|
@@ -2160,7 +2162,7 @@ class bitget(Exchange, ImplicitAPI):
|
|
2160
2162
|
rawTransactions = self.safe_list(response, 'data', [])
|
2161
2163
|
return self.parse_transactions(rawTransactions, currency, since, limit)
|
2162
2164
|
|
2163
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
2165
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
2164
2166
|
"""
|
2165
2167
|
make a withdrawal
|
2166
2168
|
:see: https://www.bitget.com/api-doc/spot/account/Wallet-Withdrawal
|
@@ -6086,7 +6088,7 @@ class bitget(Exchange, ImplicitAPI):
|
|
6086
6088
|
# "cTime": "1700807507275"
|
6087
6089
|
# }
|
6088
6090
|
#
|
6089
|
-
#
|
6091
|
+
# fetchPositionsHistory: privateMixGetV2MixPositionHistoryPosition
|
6090
6092
|
#
|
6091
6093
|
# {
|
6092
6094
|
# "symbol": "BTCUSDT",
|
@@ -6501,7 +6503,7 @@ class bitget(Exchange, ImplicitAPI):
|
|
6501
6503
|
'datetime': None,
|
6502
6504
|
}
|
6503
6505
|
|
6504
|
-
async def reduce_margin(self, symbol: str, amount, params={}) -> MarginModification:
|
6506
|
+
async def reduce_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
6505
6507
|
"""
|
6506
6508
|
remove margin from a position
|
6507
6509
|
:see: https://www.bitget.com/api-doc/contract/account/Change-Margin
|
@@ -6517,7 +6519,7 @@ class bitget(Exchange, ImplicitAPI):
|
|
6517
6519
|
raise ArgumentsRequired(self.id + ' reduceMargin() requires a holdSide parameter, either long or short')
|
6518
6520
|
return await self.modify_margin_helper(symbol, amount, 'reduce', params)
|
6519
6521
|
|
6520
|
-
async def add_margin(self, symbol: str, amount, params={}) -> MarginModification:
|
6522
|
+
async def add_margin(self, symbol: str, amount: float, params={}) -> MarginModification:
|
6521
6523
|
"""
|
6522
6524
|
add margin
|
6523
6525
|
:see: https://www.bitget.com/api-doc/contract/account/Change-Margin
|
@@ -7858,6 +7860,70 @@ class bitget(Exchange, ImplicitAPI):
|
|
7858
7860
|
'marginMode': marginType,
|
7859
7861
|
}
|
7860
7862
|
|
7863
|
+
async def fetch_positions_history(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={}) -> List[Position]:
|
7864
|
+
"""
|
7865
|
+
fetches historical positions
|
7866
|
+
:see: https://www.bitget.com/api-doc/contract/position/Get-History-Position
|
7867
|
+
:param str [symbol]: unified contract symbols
|
7868
|
+
:param int [since]: timestamp in ms of the earliest position to fetch, default=3 months ago, max range for params["until"] - since is 3 months
|
7869
|
+
:param int [limit]: the maximum amount of records to fetch, default=20, max=100
|
7870
|
+
:param dict params: extra parameters specific to the exchange api endpoint
|
7871
|
+
:param int [params.until]: timestamp in ms of the latest position to fetch, max range for params["until"] - since is 3 months
|
7872
|
+
*
|
7873
|
+
* EXCHANGE SPECIFIC PARAMETERS
|
7874
|
+
:param str [params.productType]: USDT-FUTURES(default), COIN-FUTURES, USDC-FUTURES, SUSDT-FUTURES, SCOIN-FUTURES, or SUSDC-FUTURES
|
7875
|
+
:returns dict[]: a list of `position structures <https://docs.ccxt.com/#/?id=position-structure>`
|
7876
|
+
"""
|
7877
|
+
await self.load_markets()
|
7878
|
+
until = self.safe_integer(params, 'until')
|
7879
|
+
params = self.omit(params, 'until')
|
7880
|
+
request = {}
|
7881
|
+
if symbols is not None:
|
7882
|
+
symbolsLength = len(symbols)
|
7883
|
+
if symbolsLength > 0:
|
7884
|
+
market = self.market(symbols[0])
|
7885
|
+
request['symbol'] = market['id']
|
7886
|
+
if since is not None:
|
7887
|
+
request['startTime'] = since
|
7888
|
+
if limit is not None:
|
7889
|
+
request['limit'] = limit
|
7890
|
+
if until is not None:
|
7891
|
+
request['endTime'] = until
|
7892
|
+
response = await self.privateMixGetV2MixPositionHistoryPosition(self.extend(request, params))
|
7893
|
+
#
|
7894
|
+
# {
|
7895
|
+
# code: '00000',
|
7896
|
+
# msg: 'success',
|
7897
|
+
# requestTime: '1712794148791',
|
7898
|
+
# data: {
|
7899
|
+
# list: [
|
7900
|
+
# {
|
7901
|
+
# symbol: 'XRPUSDT',
|
7902
|
+
# marginCoin: 'USDT',
|
7903
|
+
# holdSide: 'long',
|
7904
|
+
# openAvgPrice: '0.64967',
|
7905
|
+
# closeAvgPrice: '0.58799',
|
7906
|
+
# marginMode: 'isolated',
|
7907
|
+
# openTotalPos: '10',
|
7908
|
+
# closeTotalPos: '10',
|
7909
|
+
# pnl: '-0.62976205',
|
7910
|
+
# netProfit: '-0.65356802',
|
7911
|
+
# totalFunding: '-0.01638',
|
7912
|
+
# openFee: '-0.00389802',
|
7913
|
+
# closeFee: '-0.00352794',
|
7914
|
+
# ctime: '1709590322199',
|
7915
|
+
# utime: '1709667583395'
|
7916
|
+
# },
|
7917
|
+
# ...
|
7918
|
+
# ]
|
7919
|
+
# }
|
7920
|
+
# }
|
7921
|
+
#
|
7922
|
+
data = self.safe_dict(response, 'data')
|
7923
|
+
responseList = self.safe_list(data, 'list')
|
7924
|
+
positions = self.parse_positions(responseList, symbols, params)
|
7925
|
+
return self.filter_by_since_limit(positions, since, limit)
|
7926
|
+
|
7861
7927
|
async def fetch_convert_quote(self, fromCode: str, toCode: str, amount: Num = None, params={}) -> Conversion:
|
7862
7928
|
"""
|
7863
7929
|
fetch a quote for converting from one currency to another
|
@@ -66,7 +66,11 @@ class bithumb(Exchange, ImplicitAPI):
|
|
66
66
|
'fetchOrder': True,
|
67
67
|
'fetchOrderBook': True,
|
68
68
|
'fetchPosition': False,
|
69
|
+
'fetchPositionHistory': False,
|
70
|
+
'fetchPositionMode': False,
|
69
71
|
'fetchPositions': False,
|
72
|
+
'fetchPositionsForSymbol': False,
|
73
|
+
'fetchPositionsHistory': False,
|
70
74
|
'fetchPositionsRisk': False,
|
71
75
|
'fetchPremiumIndexOHLCV': False,
|
72
76
|
'fetchTicker': True,
|
@@ -928,7 +932,7 @@ class bithumb(Exchange, ImplicitAPI):
|
|
928
932
|
}
|
929
933
|
return await self.cancel_order(order['id'], order['symbol'], self.extend(request, params))
|
930
934
|
|
931
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
935
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
932
936
|
"""
|
933
937
|
make a withdrawal
|
934
938
|
:see: https://apidocs.bithumb.com/reference/%EC%BD%94%EC%9D%B8-%EC%B6%9C%EA%B8%88%ED%95%98%EA%B8%B0-%EA%B0%9C%EC%9D%B8
|
@@ -2961,7 +2961,7 @@ class bitmart(Exchange, ImplicitAPI):
|
|
2961
2961
|
return code
|
2962
2962
|
return self.network_id_to_code(networkId)
|
2963
2963
|
|
2964
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
2964
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
2965
2965
|
"""
|
2966
2966
|
make a withdrawal
|
2967
2967
|
:param str code: unified currency code
|
@@ -88,7 +88,9 @@ class bitmex(Exchange, ImplicitAPI):
|
|
88
88
|
'fetchOrderBook': True,
|
89
89
|
'fetchOrders': True,
|
90
90
|
'fetchPosition': False,
|
91
|
+
'fetchPositionHistory': False,
|
91
92
|
'fetchPositions': True,
|
93
|
+
'fetchPositionsHistory': False,
|
92
94
|
'fetchPositionsRisk': False,
|
93
95
|
'fetchPremiumIndexOHLCV': False,
|
94
96
|
'fetchTicker': True,
|
@@ -2277,7 +2279,7 @@ class bitmex(Exchange, ImplicitAPI):
|
|
2277
2279
|
'takeProfitPrice': None,
|
2278
2280
|
})
|
2279
2281
|
|
2280
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
2282
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
2281
2283
|
"""
|
2282
2284
|
make a withdrawal
|
2283
2285
|
:see: https://www.bitmex.com/api/explorer/#not /User/User_requestWithdrawal
|
@@ -73,8 +73,13 @@ class bitopro(Exchange, ImplicitAPI):
|
|
73
73
|
'fetchOrderBook': True,
|
74
74
|
'fetchOrders': False,
|
75
75
|
'fetchOrderTrades': False,
|
76
|
+
'fetchPosition': False,
|
77
|
+
'fetchPositionHistory': False,
|
76
78
|
'fetchPositionMode': False,
|
77
79
|
'fetchPositions': False,
|
80
|
+
'fetchPositionsForSymbol': False,
|
81
|
+
'fetchPositionsHistory': False,
|
82
|
+
'fetchPositionsRisk': False,
|
78
83
|
'fetchPremiumIndexOHLCV': False,
|
79
84
|
'fetchTicker': True,
|
80
85
|
'fetchTickers': True,
|
@@ -1479,7 +1484,7 @@ class bitopro(Exchange, ImplicitAPI):
|
|
1479
1484
|
#
|
1480
1485
|
return self.parse_transaction(result, currency)
|
1481
1486
|
|
1482
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
1487
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
1483
1488
|
"""
|
1484
1489
|
make a withdrawal
|
1485
1490
|
:see: https://github.com/bitoex/bitopro-offical-api-docs/blob/master/api/v3/private/create_an_withdraw_invoice.md
|
@@ -2592,7 +2592,7 @@ class bitrue(Exchange, ImplicitAPI):
|
|
2592
2592
|
'fee': fee,
|
2593
2593
|
}
|
2594
2594
|
|
2595
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
2595
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
2596
2596
|
"""
|
2597
2597
|
make a withdrawal
|
2598
2598
|
:see: https://github.com/Bitrue-exchange/Spot-official-api-docs#withdraw-commit--withdraw_data
|
@@ -77,8 +77,11 @@ class bitso(Exchange, ImplicitAPI):
|
|
77
77
|
'fetchOrderBook': True,
|
78
78
|
'fetchOrderTrades': True,
|
79
79
|
'fetchPosition': False,
|
80
|
+
'fetchPositionHistory': False,
|
80
81
|
'fetchPositionMode': False,
|
81
82
|
'fetchPositions': False,
|
83
|
+
'fetchPositionsForSymbol': False,
|
84
|
+
'fetchPositionsHistory': False,
|
82
85
|
'fetchPositionsRisk': False,
|
83
86
|
'fetchPremiumIndexOHLCV': False,
|
84
87
|
'fetchTicker': True,
|
@@ -1473,7 +1476,7 @@ class bitso(Exchange, ImplicitAPI):
|
|
1473
1476
|
result[code]['info'][code] = withdrawFee
|
1474
1477
|
return result
|
1475
1478
|
|
1476
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
1479
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
1477
1480
|
"""
|
1478
1481
|
make a withdrawal
|
1479
1482
|
:param str code: unified currency code
|
@@ -82,8 +82,11 @@ class bitstamp(Exchange, ImplicitAPI):
|
|
82
82
|
'fetchOrder': True,
|
83
83
|
'fetchOrderBook': True,
|
84
84
|
'fetchPosition': False,
|
85
|
+
'fetchPositionHistory': False,
|
85
86
|
'fetchPositionMode': False,
|
86
87
|
'fetchPositions': False,
|
88
|
+
'fetchPositionsForSymbol': False,
|
89
|
+
'fetchPositionsHistory': False,
|
87
90
|
'fetchPositionsRisk': False,
|
88
91
|
'fetchPremiumIndexOHLCV': False,
|
89
92
|
'fetchTicker': True,
|
@@ -1963,7 +1966,7 @@ class bitstamp(Exchange, ImplicitAPI):
|
|
1963
1966
|
'info': response,
|
1964
1967
|
}
|
1965
1968
|
|
1966
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
1969
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
1967
1970
|
"""
|
1968
1971
|
make a withdrawal
|
1969
1972
|
:see: https://www.bitstamp.net/api/#tag/Withdrawals/operation/RequestFiatWithdrawal
|
@@ -96,7 +96,11 @@ class bitteam(Exchange, ImplicitAPI):
|
|
96
96
|
'fetchOrders': True,
|
97
97
|
'fetchOrderTrades': False,
|
98
98
|
'fetchPosition': False,
|
99
|
+
'fetchPositionHistory': False,
|
100
|
+
'fetchPositionMode': False,
|
99
101
|
'fetchPositions': False,
|
102
|
+
'fetchPositionsForSymbol': False,
|
103
|
+
'fetchPositionsHistory': False,
|
100
104
|
'fetchPositionsRisk': False,
|
101
105
|
'fetchPremiumIndexOHLCV': False,
|
102
106
|
'fetchStatus': False,
|
@@ -88,8 +88,11 @@ class bitvavo(Exchange, ImplicitAPI):
|
|
88
88
|
'fetchOrderBook': True,
|
89
89
|
'fetchOrders': True,
|
90
90
|
'fetchPosition': False,
|
91
|
+
'fetchPositionHistory': False,
|
91
92
|
'fetchPositionMode': False,
|
92
93
|
'fetchPositions': False,
|
94
|
+
'fetchPositionsForSymbol': False,
|
95
|
+
'fetchPositionsHistory': False,
|
93
96
|
'fetchPositionsRisk': False,
|
94
97
|
'fetchPremiumIndexOHLCV': False,
|
95
98
|
'fetchTicker': True,
|
@@ -1627,7 +1630,7 @@ class bitvavo(Exchange, ImplicitAPI):
|
|
1627
1630
|
request['paymentId'] = tag
|
1628
1631
|
return self.extend(request, params)
|
1629
1632
|
|
1630
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
1633
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
1631
1634
|
"""
|
1632
1635
|
make a withdrawal
|
1633
1636
|
:param str code: unified currency code
|
@@ -61,8 +61,11 @@ class bl3p(Exchange, ImplicitAPI):
|
|
61
61
|
'fetchOpenInterestHistory': False,
|
62
62
|
'fetchOrderBook': True,
|
63
63
|
'fetchPosition': False,
|
64
|
+
'fetchPositionHistory': False,
|
64
65
|
'fetchPositionMode': False,
|
65
66
|
'fetchPositions': False,
|
67
|
+
'fetchPositionsForSymbol': False,
|
68
|
+
'fetchPositionsHistory': False,
|
66
69
|
'fetchPositionsRisk': False,
|
67
70
|
'fetchPremiumIndexOHLCV': False,
|
68
71
|
'fetchTicker': True,
|
@@ -873,7 +873,7 @@ class blockchaincom(Exchange, ImplicitAPI):
|
|
873
873
|
'fee': fee,
|
874
874
|
}
|
875
875
|
|
876
|
-
async def withdraw(self, code: str, amount: float, address, tag=None, params={}):
|
876
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
877
877
|
"""
|
878
878
|
make a withdrawal
|
879
879
|
:see: https://api.blockchain.com/v3/#/payments/createWithdrawal
|
@@ -73,8 +73,11 @@ class btcalpha(Exchange, ImplicitAPI):
|
|
73
73
|
'fetchOrderBook': True,
|
74
74
|
'fetchOrders': True,
|
75
75
|
'fetchPosition': False,
|
76
|
+
'fetchPositionHistory': False,
|
76
77
|
'fetchPositionMode': False,
|
77
78
|
'fetchPositions': False,
|
79
|
+
'fetchPositionsForSymbol': False,
|
80
|
+
'fetchPositionsHistory': False,
|
78
81
|
'fetchPositionsRisk': False,
|
79
82
|
'fetchPremiumIndexOHLCV': False,
|
80
83
|
'fetchTicker': True,
|