ccxt-ir 4.3.46.0.1__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 +358 -0
- ccxt/abantether.py +316 -0
- ccxt/abstract/__init__.py +0 -0
- ccxt/abstract/abantether.py +5 -0
- ccxt/abstract/ace.py +15 -0
- ccxt/abstract/afratether.py +6 -0
- ccxt/abstract/alpaca.py +70 -0
- ccxt/abstract/arzinja.py +5 -0
- ccxt/abstract/arzplus.py +7 -0
- ccxt/abstract/ascendex.py +77 -0
- ccxt/abstract/bequant.py +115 -0
- ccxt/abstract/bigone.py +45 -0
- ccxt/abstract/binance.py +712 -0
- ccxt/abstract/binancecoinm.py +712 -0
- ccxt/abstract/binanceus.py +764 -0
- ccxt/abstract/binanceusdm.py +712 -0
- ccxt/abstract/bingx.py +113 -0
- ccxt/abstract/bit2c.py +27 -0
- ccxt/abstract/bitbank.py +27 -0
- ccxt/abstract/bitbay.py +53 -0
- ccxt/abstract/bitbns.py +40 -0
- ccxt/abstract/bitcoincom.py +115 -0
- ccxt/abstract/bitfinex.py +69 -0
- ccxt/abstract/bitfinex2.py +139 -0
- ccxt/abstract/bitflyer.py +38 -0
- ccxt/abstract/bitget.py +508 -0
- ccxt/abstract/bithumb.py +32 -0
- ccxt/abstract/bitimen.py +7 -0
- ccxt/abstract/bitir.py +7 -0
- ccxt/abstract/bitmart.py +99 -0
- ccxt/abstract/bitmex.py +97 -0
- ccxt/abstract/bitopro.py +29 -0
- ccxt/abstract/bitpanda.py +35 -0
- ccxt/abstract/bitpin.py +7 -0
- ccxt/abstract/bitrue.py +72 -0
- ccxt/abstract/bitso.py +43 -0
- ccxt/abstract/bitstamp.py +258 -0
- ccxt/abstract/bitteam.py +29 -0
- ccxt/abstract/bitvavo.py +27 -0
- ccxt/abstract/bl3p.py +19 -0
- ccxt/abstract/blockchaincom.py +28 -0
- ccxt/abstract/blofin.py +37 -0
- ccxt/abstract/btcalpha.py +18 -0
- ccxt/abstract/btcbox.py +13 -0
- ccxt/abstract/btcmarkets.py +39 -0
- ccxt/abstract/btcturk.py +20 -0
- ccxt/abstract/bybit.py +298 -0
- ccxt/abstract/cex.py +33 -0
- ccxt/abstract/coinbase.py +94 -0
- ccxt/abstract/coinbaseadvanced.py +94 -0
- ccxt/abstract/coinbaseexchange.py +67 -0
- ccxt/abstract/coinbaseinternational.py +39 -0
- ccxt/abstract/coincatch.py +94 -0
- ccxt/abstract/coincheck.py +33 -0
- ccxt/abstract/coinex.py +237 -0
- ccxt/abstract/coinlist.py +54 -0
- ccxt/abstract/coinmate.py +62 -0
- ccxt/abstract/coinmetro.py +34 -0
- ccxt/abstract/coinone.py +67 -0
- ccxt/abstract/coinsph.py +54 -0
- ccxt/abstract/coinspot.py +28 -0
- ccxt/abstract/cryptocom.py +107 -0
- ccxt/abstract/currencycom.py +68 -0
- ccxt/abstract/delta.py +50 -0
- ccxt/abstract/deribit.py +125 -0
- ccxt/abstract/digifinex.py +91 -0
- ccxt/abstract/eterex.py +5 -0
- ccxt/abstract/excoino.py +7 -0
- ccxt/abstract/exir.py +8 -0
- ccxt/abstract/exmo.py +55 -0
- ccxt/abstract/exnovin.py +6 -0
- ccxt/abstract/farhadexchange.py +5 -0
- ccxt/abstract/fmfwio.py +115 -0
- ccxt/abstract/gate.py +265 -0
- ccxt/abstract/gateio.py +265 -0
- ccxt/abstract/gemini.py +58 -0
- ccxt/abstract/hashkey.py +67 -0
- ccxt/abstract/hitbtc.py +115 -0
- ccxt/abstract/hitbtc3.py +115 -0
- ccxt/abstract/hitobit.py +8 -0
- ccxt/abstract/hollaex.py +33 -0
- ccxt/abstract/htx.py +548 -0
- ccxt/abstract/huobi.py +548 -0
- ccxt/abstract/huobijp.py +114 -0
- ccxt/abstract/hyperliquid.py +6 -0
- ccxt/abstract/idex.py +26 -0
- ccxt/abstract/independentreserve.py +37 -0
- ccxt/abstract/indodax.py +26 -0
- ccxt/abstract/jibitex.py +7 -0
- ccxt/abstract/kraken.py +57 -0
- ccxt/abstract/krakenfutures.py +38 -0
- ccxt/abstract/kucoin.py +214 -0
- ccxt/abstract/kucoinfutures.py +233 -0
- ccxt/abstract/kuna.py +182 -0
- ccxt/abstract/latoken.py +56 -0
- ccxt/abstract/lbank.py +61 -0
- ccxt/abstract/luno.py +37 -0
- ccxt/abstract/lykke.py +29 -0
- ccxt/abstract/mercado.py +25 -0
- ccxt/abstract/mexc.py +178 -0
- ccxt/abstract/ndax.py +97 -0
- ccxt/abstract/nobitex.py +7 -0
- ccxt/abstract/novadax.py +29 -0
- ccxt/abstract/oceanex.py +22 -0
- ccxt/abstract/okcoin.py +74 -0
- ccxt/abstract/okexchange.py +8 -0
- ccxt/abstract/okx.py +324 -0
- ccxt/abstract/ompfinex.py +7 -0
- ccxt/abstract/onetrading.py +35 -0
- ccxt/abstract/oxfun.py +34 -0
- ccxt/abstract/p2b.py +22 -0
- ccxt/abstract/paradex.py +40 -0
- ccxt/abstract/paymium.py +28 -0
- ccxt/abstract/phemex.py +115 -0
- ccxt/abstract/poloniex.py +69 -0
- ccxt/abstract/poloniexfutures.py +48 -0
- ccxt/abstract/probit.py +23 -0
- ccxt/abstract/ramzinex.py +7 -0
- ccxt/abstract/sarmayex.py +5 -0
- ccxt/abstract/sarrafex.py +7 -0
- ccxt/abstract/tabdeal.py +7 -0
- ccxt/abstract/tetherland.py +5 -0
- ccxt/abstract/timex.py +62 -0
- ccxt/abstract/tokocrypto.py +37 -0
- ccxt/abstract/tradeogre.py +16 -0
- ccxt/abstract/twox.py +5 -0
- ccxt/abstract/ubitex.py +7 -0
- ccxt/abstract/upbit.py +38 -0
- ccxt/abstract/vertex.py +19 -0
- ccxt/abstract/wallex.py +8 -0
- ccxt/abstract/wavesexchange.py +154 -0
- ccxt/abstract/wazirx.py +30 -0
- ccxt/abstract/whitebit.py +98 -0
- ccxt/abstract/woo.py +83 -0
- ccxt/abstract/woofipro.py +119 -0
- ccxt/abstract/xt.py +152 -0
- ccxt/abstract/yobit.py +16 -0
- ccxt/abstract/zaif.py +38 -0
- ccxt/abstract/zonda.py +53 -0
- ccxt/ace.py +1012 -0
- ccxt/afratether.py +293 -0
- ccxt/alpaca.py +1083 -0
- ccxt/arzinja.py +285 -0
- ccxt/arzplus.py +412 -0
- ccxt/ascendex.py +3330 -0
- ccxt/async_support/__init__.py +337 -0
- ccxt/async_support/abantether.py +316 -0
- ccxt/async_support/ace.py +1012 -0
- ccxt/async_support/afratether.py +293 -0
- ccxt/async_support/alpaca.py +1083 -0
- ccxt/async_support/arzinja.py +285 -0
- ccxt/async_support/arzplus.py +412 -0
- ccxt/async_support/ascendex.py +3330 -0
- ccxt/async_support/base/__init__.py +1 -0
- ccxt/async_support/base/exchange.py +1966 -0
- ccxt/async_support/base/throttler.py +50 -0
- ccxt/async_support/base/ws/__init__.py +38 -0
- ccxt/async_support/base/ws/aiohttp_client.py +125 -0
- ccxt/async_support/base/ws/cache.py +212 -0
- ccxt/async_support/base/ws/client.py +193 -0
- ccxt/async_support/base/ws/fast_client.py +96 -0
- ccxt/async_support/base/ws/functions.py +59 -0
- ccxt/async_support/base/ws/future.py +58 -0
- ccxt/async_support/base/ws/order_book.py +78 -0
- ccxt/async_support/base/ws/order_book_side.py +174 -0
- ccxt/async_support/bequant.py +33 -0
- ccxt/async_support/bigone.py +2113 -0
- ccxt/async_support/binance.py +12234 -0
- ccxt/async_support/binancecoinm.py +45 -0
- ccxt/async_support/binanceus.py +211 -0
- ccxt/async_support/binanceusdm.py +58 -0
- ccxt/async_support/bingx.py +4325 -0
- ccxt/async_support/bit2c.py +866 -0
- ccxt/async_support/bitbank.py +1001 -0
- ccxt/async_support/bitbay.py +17 -0
- ccxt/async_support/bitbns.py +1154 -0
- ccxt/async_support/bitcoincom.py +17 -0
- ccxt/async_support/bitfinex.py +1617 -0
- ccxt/async_support/bitfinex2.py +3552 -0
- ccxt/async_support/bitflyer.py +995 -0
- ccxt/async_support/bitget.py +8273 -0
- ccxt/async_support/bithumb.py +1061 -0
- ccxt/async_support/bitimen.py +401 -0
- ccxt/async_support/bitir.py +490 -0
- ccxt/async_support/bitmart.py +4415 -0
- ccxt/async_support/bitmex.py +2756 -0
- ccxt/async_support/bitopro.py +1630 -0
- ccxt/async_support/bitpanda.py +16 -0
- ccxt/async_support/bitpin.py +454 -0
- ccxt/async_support/bitrue.py +3027 -0
- ccxt/async_support/bitso.py +1670 -0
- ccxt/async_support/bitstamp.py +2203 -0
- ccxt/async_support/bitteam.py +2239 -0
- ccxt/async_support/bitvavo.py +1968 -0
- ccxt/async_support/bl3p.py +485 -0
- ccxt/async_support/blockchaincom.py +1104 -0
- ccxt/async_support/blofin.py +2066 -0
- ccxt/async_support/btcalpha.py +891 -0
- ccxt/async_support/btcbox.py +544 -0
- ccxt/async_support/btcmarkets.py +1221 -0
- ccxt/async_support/btcturk.py +911 -0
- ccxt/async_support/bybit.py +8159 -0
- ccxt/async_support/cex.py +1605 -0
- ccxt/async_support/coinbase.py +4475 -0
- ccxt/async_support/coinbaseadvanced.py +17 -0
- ccxt/async_support/coinbaseexchange.py +1734 -0
- ccxt/async_support/coinbaseinternational.py +1899 -0
- ccxt/async_support/coincatch.py +5069 -0
- ccxt/async_support/coincheck.py +815 -0
- ccxt/async_support/coinex.py +5526 -0
- ccxt/async_support/coinlist.py +2243 -0
- ccxt/async_support/coinmate.py +1067 -0
- ccxt/async_support/coinmetro.py +1797 -0
- ccxt/async_support/coinone.py +1127 -0
- ccxt/async_support/coinsph.py +1850 -0
- ccxt/async_support/coinspot.py +534 -0
- ccxt/async_support/cryptocom.py +2822 -0
- ccxt/async_support/currencycom.py +1950 -0
- ccxt/async_support/delta.py +3376 -0
- ccxt/async_support/deribit.py +3437 -0
- ccxt/async_support/digifinex.py +3960 -0
- ccxt/async_support/eterex.py +286 -0
- ccxt/async_support/excoino.py +399 -0
- ccxt/async_support/exir.py +375 -0
- ccxt/async_support/exmo.py +2462 -0
- ccxt/async_support/exnovin.py +360 -0
- ccxt/async_support/farhadexchange.py +266 -0
- ccxt/async_support/fmfwio.py +34 -0
- ccxt/async_support/gate.py +6976 -0
- ccxt/async_support/gateio.py +16 -0
- ccxt/async_support/gemini.py +1825 -0
- ccxt/async_support/hashkey.py +4150 -0
- ccxt/async_support/hitbtc.py +3423 -0
- ccxt/async_support/hitbtc3.py +16 -0
- ccxt/async_support/hitobit.py +391 -0
- ccxt/async_support/hollaex.py +1813 -0
- ccxt/async_support/htx.py +8506 -0
- ccxt/async_support/huobi.py +16 -0
- ccxt/async_support/huobijp.py +1801 -0
- ccxt/async_support/hyperliquid.py +2431 -0
- ccxt/async_support/idex.py +1766 -0
- ccxt/async_support/independentreserve.py +784 -0
- ccxt/async_support/indodax.py +1247 -0
- ccxt/async_support/jibitex.py +395 -0
- ccxt/async_support/kraken.py +2894 -0
- ccxt/async_support/krakenfutures.py +2601 -0
- ccxt/async_support/kucoin.py +4602 -0
- ccxt/async_support/kucoinfutures.py +2698 -0
- ccxt/async_support/kuna.py +1841 -0
- ccxt/async_support/latoken.py +1664 -0
- ccxt/async_support/lbank.py +2683 -0
- ccxt/async_support/luno.py +1067 -0
- ccxt/async_support/lykke.py +1270 -0
- ccxt/async_support/mercado.py +842 -0
- ccxt/async_support/mexc.py +5369 -0
- ccxt/async_support/ndax.py +2354 -0
- ccxt/async_support/nobitex.py +419 -0
- ccxt/async_support/novadax.py +1484 -0
- ccxt/async_support/oceanex.py +903 -0
- ccxt/async_support/okcoin.py +2936 -0
- ccxt/async_support/okexchange.py +349 -0
- ccxt/async_support/okx.py +7827 -0
- ccxt/async_support/ompfinex.py +472 -0
- ccxt/async_support/onetrading.py +1911 -0
- ccxt/async_support/oxfun.py +2773 -0
- ccxt/async_support/p2b.py +1194 -0
- ccxt/async_support/paradex.py +2015 -0
- ccxt/async_support/paymium.py +564 -0
- ccxt/async_support/phemex.py +4473 -0
- ccxt/async_support/poloniex.py +2232 -0
- ccxt/async_support/poloniexfutures.py +1717 -0
- ccxt/async_support/probit.py +1734 -0
- ccxt/async_support/ramzinex.py +476 -0
- ccxt/async_support/sarmayex.py +357 -0
- ccxt/async_support/sarrafex.py +478 -0
- ccxt/async_support/tabdeal.py +364 -0
- ccxt/async_support/tetherland.py +349 -0
- ccxt/async_support/timex.py +1593 -0
- ccxt/async_support/tokocrypto.py +2405 -0
- ccxt/async_support/tradeogre.py +608 -0
- ccxt/async_support/twox.py +326 -0
- ccxt/async_support/ubitex.py +409 -0
- ccxt/async_support/upbit.py +1833 -0
- ccxt/async_support/vertex.py +2922 -0
- ccxt/async_support/wallex.py +445 -0
- ccxt/async_support/wavesexchange.py +2473 -0
- ccxt/async_support/wazirx.py +1224 -0
- ccxt/async_support/whitebit.py +2469 -0
- ccxt/async_support/woo.py +3114 -0
- ccxt/async_support/woofipro.py +2533 -0
- ccxt/async_support/xt.py +4454 -0
- ccxt/async_support/yobit.py +1283 -0
- ccxt/async_support/zaif.py +725 -0
- ccxt/async_support/zonda.py +1828 -0
- ccxt/base/__init__.py +27 -0
- ccxt/base/decimal_to_precision.py +174 -0
- ccxt/base/errors.py +242 -0
- ccxt/base/exchange.py +5941 -0
- ccxt/base/precise.py +287 -0
- ccxt/base/types.py +502 -0
- ccxt/bequant.py +33 -0
- ccxt/bigone.py +2112 -0
- ccxt/binance.py +12233 -0
- ccxt/binancecoinm.py +45 -0
- ccxt/binanceus.py +211 -0
- ccxt/binanceusdm.py +58 -0
- ccxt/bingx.py +4324 -0
- ccxt/bit2c.py +866 -0
- ccxt/bitbank.py +1001 -0
- ccxt/bitbay.py +17 -0
- ccxt/bitbns.py +1154 -0
- ccxt/bitcoincom.py +17 -0
- ccxt/bitfinex.py +1617 -0
- ccxt/bitfinex2.py +3552 -0
- ccxt/bitflyer.py +995 -0
- ccxt/bitget.py +8272 -0
- ccxt/bithumb.py +1061 -0
- ccxt/bitimen.py +401 -0
- ccxt/bitir.py +490 -0
- ccxt/bitmart.py +4415 -0
- ccxt/bitmex.py +2756 -0
- ccxt/bitopro.py +1630 -0
- ccxt/bitpanda.py +16 -0
- ccxt/bitpin.py +454 -0
- ccxt/bitrue.py +3026 -0
- ccxt/bitso.py +1670 -0
- ccxt/bitstamp.py +2203 -0
- ccxt/bitteam.py +2239 -0
- ccxt/bitvavo.py +1968 -0
- ccxt/bl3p.py +485 -0
- ccxt/blockchaincom.py +1104 -0
- ccxt/blofin.py +2066 -0
- ccxt/btcalpha.py +891 -0
- ccxt/btcbox.py +544 -0
- ccxt/btcmarkets.py +1221 -0
- ccxt/btcturk.py +911 -0
- ccxt/bybit.py +8158 -0
- ccxt/cex.py +1605 -0
- ccxt/coinbase.py +4474 -0
- ccxt/coinbaseadvanced.py +17 -0
- ccxt/coinbaseexchange.py +1734 -0
- ccxt/coinbaseinternational.py +1899 -0
- ccxt/coincatch.py +5069 -0
- ccxt/coincheck.py +815 -0
- ccxt/coinex.py +5525 -0
- ccxt/coinlist.py +2243 -0
- ccxt/coinmate.py +1067 -0
- ccxt/coinmetro.py +1797 -0
- ccxt/coinone.py +1127 -0
- ccxt/coinsph.py +1850 -0
- ccxt/coinspot.py +534 -0
- ccxt/cryptocom.py +2822 -0
- ccxt/currencycom.py +1950 -0
- ccxt/delta.py +3376 -0
- ccxt/deribit.py +3437 -0
- ccxt/digifinex.py +3959 -0
- ccxt/eterex.py +286 -0
- ccxt/excoino.py +399 -0
- ccxt/exir.py +375 -0
- ccxt/exmo.py +2462 -0
- ccxt/exnovin.py +360 -0
- ccxt/farhadexchange.py +266 -0
- ccxt/fmfwio.py +34 -0
- ccxt/gate.py +6975 -0
- ccxt/gateio.py +16 -0
- ccxt/gemini.py +1824 -0
- ccxt/hashkey.py +4150 -0
- ccxt/hitbtc.py +3423 -0
- ccxt/hitbtc3.py +16 -0
- ccxt/hitobit.py +391 -0
- ccxt/hollaex.py +1813 -0
- ccxt/htx.py +8505 -0
- ccxt/huobi.py +16 -0
- ccxt/huobijp.py +1801 -0
- ccxt/hyperliquid.py +2430 -0
- ccxt/idex.py +1766 -0
- ccxt/independentreserve.py +784 -0
- ccxt/indodax.py +1247 -0
- ccxt/jibitex.py +395 -0
- ccxt/kraken.py +2894 -0
- ccxt/krakenfutures.py +2601 -0
- ccxt/kucoin.py +4601 -0
- ccxt/kucoinfutures.py +2698 -0
- ccxt/kuna.py +1841 -0
- ccxt/latoken.py +1664 -0
- ccxt/lbank.py +2682 -0
- ccxt/luno.py +1067 -0
- ccxt/lykke.py +1270 -0
- ccxt/mercado.py +842 -0
- ccxt/mexc.py +5369 -0
- ccxt/ndax.py +2354 -0
- ccxt/nobitex.py +419 -0
- ccxt/novadax.py +1484 -0
- ccxt/oceanex.py +903 -0
- ccxt/okcoin.py +2936 -0
- ccxt/okexchange.py +349 -0
- ccxt/okx.py +7826 -0
- ccxt/ompfinex.py +472 -0
- ccxt/onetrading.py +1911 -0
- ccxt/oxfun.py +2772 -0
- ccxt/p2b.py +1194 -0
- ccxt/paradex.py +2015 -0
- ccxt/paymium.py +564 -0
- ccxt/phemex.py +4473 -0
- ccxt/poloniex.py +2232 -0
- ccxt/poloniexfutures.py +1717 -0
- ccxt/pro/__init__.py +149 -0
- ccxt/pro/alpaca.py +685 -0
- ccxt/pro/ascendex.py +916 -0
- ccxt/pro/bequant.py +38 -0
- ccxt/pro/binance.py +3488 -0
- ccxt/pro/binancecoinm.py +28 -0
- ccxt/pro/binanceus.py +48 -0
- ccxt/pro/binanceusdm.py +31 -0
- ccxt/pro/bingx.py +1264 -0
- ccxt/pro/bitcoincom.py +34 -0
- ccxt/pro/bitfinex.py +621 -0
- ccxt/pro/bitfinex2.py +1083 -0
- ccxt/pro/bitget.py +1692 -0
- ccxt/pro/bithumb.py +368 -0
- ccxt/pro/bitmart.py +1449 -0
- ccxt/pro/bitmex.py +1656 -0
- ccxt/pro/bitopro.py +445 -0
- ccxt/pro/bitpanda.py +15 -0
- ccxt/pro/bitrue.py +447 -0
- ccxt/pro/bitstamp.py +522 -0
- ccxt/pro/bitvavo.py +1270 -0
- ccxt/pro/blockchaincom.py +738 -0
- ccxt/pro/blofin.py +692 -0
- ccxt/pro/bybit.py +2000 -0
- ccxt/pro/cex.py +1440 -0
- ccxt/pro/coinbase.py +678 -0
- ccxt/pro/coinbaseadvanced.py +16 -0
- ccxt/pro/coinbaseexchange.py +895 -0
- ccxt/pro/coinbaseinternational.py +620 -0
- ccxt/pro/coincatch.py +1464 -0
- ccxt/pro/coincheck.py +199 -0
- ccxt/pro/coinex.py +1061 -0
- ccxt/pro/coinone.py +395 -0
- ccxt/pro/cryptocom.py +947 -0
- ccxt/pro/currencycom.py +536 -0
- ccxt/pro/deribit.py +892 -0
- ccxt/pro/exmo.py +629 -0
- ccxt/pro/gate.py +1416 -0
- ccxt/pro/gateio.py +15 -0
- ccxt/pro/gemini.py +865 -0
- ccxt/pro/hashkey.py +802 -0
- ccxt/pro/hitbtc.py +1216 -0
- ccxt/pro/hollaex.py +563 -0
- ccxt/pro/htx.py +2215 -0
- ccxt/pro/huobi.py +15 -0
- ccxt/pro/huobijp.py +570 -0
- ccxt/pro/hyperliquid.py +525 -0
- ccxt/pro/idex.py +672 -0
- ccxt/pro/independentreserve.py +270 -0
- ccxt/pro/kraken.py +1356 -0
- ccxt/pro/krakenfutures.py +1492 -0
- ccxt/pro/kucoin.py +1133 -0
- ccxt/pro/kucoinfutures.py +1081 -0
- ccxt/pro/lbank.py +843 -0
- ccxt/pro/luno.py +303 -0
- ccxt/pro/mexc.py +1122 -0
- ccxt/pro/ndax.py +506 -0
- ccxt/pro/okcoin.py +698 -0
- ccxt/pro/okx.py +1851 -0
- ccxt/pro/onetrading.py +1275 -0
- ccxt/pro/oxfun.py +950 -0
- ccxt/pro/p2b.py +419 -0
- ccxt/pro/paradex.py +352 -0
- ccxt/pro/phemex.py +1441 -0
- ccxt/pro/poloniex.py +1166 -0
- ccxt/pro/poloniexfutures.py +990 -0
- ccxt/pro/probit.py +551 -0
- ccxt/pro/upbit.py +520 -0
- ccxt/pro/vertex.py +943 -0
- ccxt/pro/wazirx.py +749 -0
- ccxt/pro/whitebit.py +864 -0
- ccxt/pro/woo.py +1078 -0
- ccxt/pro/woofipro.py +1183 -0
- ccxt/pro/xt.py +1067 -0
- ccxt/probit.py +1734 -0
- ccxt/ramzinex.py +476 -0
- ccxt/sarmayex.py +357 -0
- ccxt/sarrafex.py +478 -0
- ccxt/static_dependencies/__init__.py +1 -0
- ccxt/static_dependencies/ecdsa/__init__.py +14 -0
- ccxt/static_dependencies/ecdsa/_version.py +520 -0
- ccxt/static_dependencies/ecdsa/curves.py +56 -0
- ccxt/static_dependencies/ecdsa/der.py +221 -0
- ccxt/static_dependencies/ecdsa/ecdsa.py +310 -0
- ccxt/static_dependencies/ecdsa/ellipticcurve.py +197 -0
- ccxt/static_dependencies/ecdsa/keys.py +332 -0
- ccxt/static_dependencies/ecdsa/numbertheory.py +531 -0
- ccxt/static_dependencies/ecdsa/rfc6979.py +100 -0
- ccxt/static_dependencies/ecdsa/util.py +266 -0
- ccxt/static_dependencies/ethereum/__init__.py +7 -0
- ccxt/static_dependencies/ethereum/abi/__init__.py +16 -0
- ccxt/static_dependencies/ethereum/abi/abi.py +19 -0
- ccxt/static_dependencies/ethereum/abi/base.py +152 -0
- ccxt/static_dependencies/ethereum/abi/codec.py +217 -0
- ccxt/static_dependencies/ethereum/abi/constants.py +3 -0
- ccxt/static_dependencies/ethereum/abi/decoding.py +565 -0
- ccxt/static_dependencies/ethereum/abi/encoding.py +720 -0
- ccxt/static_dependencies/ethereum/abi/exceptions.py +139 -0
- ccxt/static_dependencies/ethereum/abi/grammar.py +443 -0
- ccxt/static_dependencies/ethereum/abi/packed.py +13 -0
- ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- ccxt/static_dependencies/ethereum/abi/registry.py +643 -0
- ccxt/static_dependencies/ethereum/abi/tools/__init__.py +3 -0
- ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +230 -0
- ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- ccxt/static_dependencies/ethereum/abi/utils/numeric.py +83 -0
- ccxt/static_dependencies/ethereum/abi/utils/padding.py +27 -0
- ccxt/static_dependencies/ethereum/abi/utils/string.py +19 -0
- ccxt/static_dependencies/ethereum/account/__init__.py +3 -0
- ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +4 -0
- ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +239 -0
- ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +40 -0
- ccxt/static_dependencies/ethereum/account/messages.py +263 -0
- ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- ccxt/static_dependencies/ethereum/hexbytes/__init__.py +5 -0
- ccxt/static_dependencies/ethereum/hexbytes/_utils.py +54 -0
- ccxt/static_dependencies/ethereum/hexbytes/main.py +65 -0
- ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- ccxt/static_dependencies/ethereum/typing/__init__.py +63 -0
- ccxt/static_dependencies/ethereum/typing/abi.py +6 -0
- ccxt/static_dependencies/ethereum/typing/bls.py +7 -0
- ccxt/static_dependencies/ethereum/typing/discovery.py +5 -0
- ccxt/static_dependencies/ethereum/typing/encoding.py +7 -0
- ccxt/static_dependencies/ethereum/typing/enums.py +17 -0
- ccxt/static_dependencies/ethereum/typing/ethpm.py +9 -0
- ccxt/static_dependencies/ethereum/typing/evm.py +20 -0
- ccxt/static_dependencies/ethereum/typing/networks.py +1122 -0
- ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- ccxt/static_dependencies/ethereum/utils/__init__.py +115 -0
- ccxt/static_dependencies/ethereum/utils/abi.py +72 -0
- ccxt/static_dependencies/ethereum/utils/address.py +171 -0
- ccxt/static_dependencies/ethereum/utils/applicators.py +151 -0
- ccxt/static_dependencies/ethereum/utils/conversions.py +190 -0
- ccxt/static_dependencies/ethereum/utils/currency.py +107 -0
- ccxt/static_dependencies/ethereum/utils/curried/__init__.py +269 -0
- ccxt/static_dependencies/ethereum/utils/debug.py +20 -0
- ccxt/static_dependencies/ethereum/utils/decorators.py +132 -0
- ccxt/static_dependencies/ethereum/utils/encoding.py +6 -0
- ccxt/static_dependencies/ethereum/utils/exceptions.py +4 -0
- ccxt/static_dependencies/ethereum/utils/functional.py +75 -0
- ccxt/static_dependencies/ethereum/utils/hexadecimal.py +74 -0
- ccxt/static_dependencies/ethereum/utils/humanize.py +188 -0
- ccxt/static_dependencies/ethereum/utils/logging.py +159 -0
- ccxt/static_dependencies/ethereum/utils/module_loading.py +31 -0
- ccxt/static_dependencies/ethereum/utils/numeric.py +43 -0
- ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- ccxt/static_dependencies/ethereum/utils/toolz.py +76 -0
- ccxt/static_dependencies/ethereum/utils/types.py +54 -0
- ccxt/static_dependencies/ethereum/utils/typing/__init__.py +18 -0
- ccxt/static_dependencies/ethereum/utils/typing/misc.py +14 -0
- ccxt/static_dependencies/ethereum/utils/units.py +31 -0
- ccxt/static_dependencies/keccak/__init__.py +3 -0
- ccxt/static_dependencies/keccak/keccak.py +197 -0
- ccxt/static_dependencies/lark/__init__.py +38 -0
- ccxt/static_dependencies/lark/__pyinstaller/__init__.py +6 -0
- ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +14 -0
- ccxt/static_dependencies/lark/ast_utils.py +59 -0
- ccxt/static_dependencies/lark/common.py +86 -0
- ccxt/static_dependencies/lark/exceptions.py +292 -0
- ccxt/static_dependencies/lark/grammar.py +130 -0
- ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
- ccxt/static_dependencies/lark/indenter.py +143 -0
- ccxt/static_dependencies/lark/lark.py +658 -0
- ccxt/static_dependencies/lark/lexer.py +678 -0
- ccxt/static_dependencies/lark/load_grammar.py +1428 -0
- ccxt/static_dependencies/lark/parse_tree_builder.py +391 -0
- ccxt/static_dependencies/lark/parser_frontends.py +257 -0
- ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
- ccxt/static_dependencies/lark/parsers/cyk.py +340 -0
- ccxt/static_dependencies/lark/parsers/earley.py +314 -0
- ccxt/static_dependencies/lark/parsers/earley_common.py +42 -0
- ccxt/static_dependencies/lark/parsers/earley_forest.py +801 -0
- ccxt/static_dependencies/lark/parsers/grammar_analysis.py +203 -0
- ccxt/static_dependencies/lark/parsers/lalr_analysis.py +332 -0
- ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +158 -0
- ccxt/static_dependencies/lark/parsers/lalr_parser.py +122 -0
- ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +110 -0
- ccxt/static_dependencies/lark/parsers/xearley.py +165 -0
- ccxt/static_dependencies/lark/reconstruct.py +107 -0
- ccxt/static_dependencies/lark/tools/__init__.py +70 -0
- ccxt/static_dependencies/lark/tools/nearley.py +202 -0
- ccxt/static_dependencies/lark/tools/serialize.py +32 -0
- ccxt/static_dependencies/lark/tools/standalone.py +196 -0
- ccxt/static_dependencies/lark/tree.py +267 -0
- ccxt/static_dependencies/lark/tree_matcher.py +186 -0
- ccxt/static_dependencies/lark/tree_templates.py +180 -0
- ccxt/static_dependencies/lark/utils.py +343 -0
- ccxt/static_dependencies/lark/visitors.py +596 -0
- ccxt/static_dependencies/marshmallow/__init__.py +81 -0
- ccxt/static_dependencies/marshmallow/base.py +65 -0
- ccxt/static_dependencies/marshmallow/class_registry.py +94 -0
- ccxt/static_dependencies/marshmallow/decorators.py +231 -0
- ccxt/static_dependencies/marshmallow/error_store.py +60 -0
- ccxt/static_dependencies/marshmallow/exceptions.py +71 -0
- ccxt/static_dependencies/marshmallow/fields.py +2114 -0
- ccxt/static_dependencies/marshmallow/orderedset.py +89 -0
- ccxt/static_dependencies/marshmallow/schema.py +1228 -0
- ccxt/static_dependencies/marshmallow/types.py +12 -0
- ccxt/static_dependencies/marshmallow/utils.py +378 -0
- ccxt/static_dependencies/marshmallow/validate.py +678 -0
- ccxt/static_dependencies/marshmallow/warnings.py +2 -0
- ccxt/static_dependencies/marshmallow_dataclass/__init__.py +1047 -0
- ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +51 -0
- ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +45 -0
- ccxt/static_dependencies/marshmallow_dataclass/mypy.py +71 -0
- ccxt/static_dependencies/marshmallow_dataclass/typing.py +14 -0
- ccxt/static_dependencies/marshmallow_dataclass/union_field.py +82 -0
- ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +1 -0
- ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +193 -0
- ccxt/static_dependencies/msgpack/__init__.py +55 -0
- ccxt/static_dependencies/msgpack/exceptions.py +48 -0
- ccxt/static_dependencies/msgpack/ext.py +168 -0
- ccxt/static_dependencies/msgpack/fallback.py +951 -0
- ccxt/static_dependencies/parsimonious/__init__.py +10 -0
- ccxt/static_dependencies/parsimonious/exceptions.py +105 -0
- ccxt/static_dependencies/parsimonious/expressions.py +479 -0
- ccxt/static_dependencies/parsimonious/grammar.py +487 -0
- ccxt/static_dependencies/parsimonious/nodes.py +325 -0
- ccxt/static_dependencies/parsimonious/utils.py +40 -0
- ccxt/static_dependencies/starknet/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/data_types.py +123 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +77 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +46 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +138 -0
- ccxt/static_dependencies/starknet/cairo/felt.py +64 -0
- ccxt/static_dependencies/starknet/cairo/type_parser.py +121 -0
- ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +59 -0
- ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +77 -0
- ccxt/static_dependencies/starknet/ccxt_utils.py +7 -0
- ccxt/static_dependencies/starknet/common.py +15 -0
- ccxt/static_dependencies/starknet/constants.py +39 -0
- ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
- ccxt/static_dependencies/starknet/hash/address.py +79 -0
- ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +111 -0
- ccxt/static_dependencies/starknet/hash/selector.py +16 -0
- ccxt/static_dependencies/starknet/hash/storage.py +12 -0
- ccxt/static_dependencies/starknet/hash/utils.py +78 -0
- ccxt/static_dependencies/starknet/models/__init__.py +0 -0
- ccxt/static_dependencies/starknet/models/typed_data.py +45 -0
- ccxt/static_dependencies/starknet/serialization/__init__.py +24 -0
- ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +40 -0
- ccxt/static_dependencies/starknet/serialization/_context.py +142 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +10 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +82 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +43 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +37 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +66 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +71 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +71 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +50 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +58 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +43 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +40 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +72 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +36 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +36 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +76 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +100 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +32 -0
- ccxt/static_dependencies/starknet/serialization/errors.py +10 -0
- ccxt/static_dependencies/starknet/serialization/factory.py +229 -0
- ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +110 -0
- ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +59 -0
- ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
- ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +86 -0
- ccxt/static_dependencies/starknet/utils/iterable.py +13 -0
- ccxt/static_dependencies/starknet/utils/schema.py +13 -0
- ccxt/static_dependencies/starknet/utils/typed_data.py +182 -0
- ccxt/static_dependencies/starkware/__init__.py +0 -0
- ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
- ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +50 -0
- ccxt/static_dependencies/starkware/crypto/math_utils.py +78 -0
- ccxt/static_dependencies/starkware/crypto/signature.py +2344 -0
- ccxt/static_dependencies/starkware/crypto/utils.py +63 -0
- ccxt/static_dependencies/sympy/__init__.py +0 -0
- ccxt/static_dependencies/sympy/core/__init__.py +0 -0
- ccxt/static_dependencies/sympy/core/intfunc.py +35 -0
- ccxt/static_dependencies/sympy/external/__init__.py +0 -0
- ccxt/static_dependencies/sympy/external/gmpy.py +345 -0
- ccxt/static_dependencies/sympy/external/importtools.py +187 -0
- ccxt/static_dependencies/sympy/external/ntheory.py +637 -0
- ccxt/static_dependencies/sympy/external/pythonmpq.py +341 -0
- ccxt/static_dependencies/toolz/__init__.py +26 -0
- ccxt/static_dependencies/toolz/_signatures.py +784 -0
- ccxt/static_dependencies/toolz/_version.py +520 -0
- ccxt/static_dependencies/toolz/compatibility.py +30 -0
- ccxt/static_dependencies/toolz/curried/__init__.py +101 -0
- ccxt/static_dependencies/toolz/curried/exceptions.py +22 -0
- ccxt/static_dependencies/toolz/curried/operator.py +22 -0
- ccxt/static_dependencies/toolz/dicttoolz.py +339 -0
- ccxt/static_dependencies/toolz/functoolz.py +1049 -0
- ccxt/static_dependencies/toolz/itertoolz.py +1057 -0
- ccxt/static_dependencies/toolz/recipes.py +46 -0
- ccxt/static_dependencies/toolz/utils.py +9 -0
- ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
- ccxt/static_dependencies/typing_inspect/typing_inspect.py +851 -0
- ccxt/tabdeal.py +364 -0
- ccxt/test/__init__.py +3 -0
- ccxt/test/base/__init__.py +29 -0
- ccxt/test/base/test_account.py +26 -0
- ccxt/test/base/test_balance.py +56 -0
- ccxt/test/base/test_borrow_interest.py +35 -0
- ccxt/test/base/test_borrow_rate.py +32 -0
- ccxt/test/base/test_calculate_fee.py +51 -0
- ccxt/test/base/test_crypto.py +127 -0
- ccxt/test/base/test_currency.py +76 -0
- ccxt/test/base/test_datetime.py +109 -0
- ccxt/test/base/test_decimal_to_precision.py +392 -0
- ccxt/test/base/test_deep_extend.py +68 -0
- ccxt/test/base/test_deposit_withdrawal.py +50 -0
- ccxt/test/base/test_exchange_datetime_functions.py +76 -0
- ccxt/test/base/test_funding_rate_history.py +29 -0
- ccxt/test/base/test_last_price.py +31 -0
- ccxt/test/base/test_ledger_entry.py +45 -0
- ccxt/test/base/test_ledger_item.py +48 -0
- ccxt/test/base/test_leverage_tier.py +33 -0
- ccxt/test/base/test_liquidation.py +50 -0
- ccxt/test/base/test_margin_mode.py +24 -0
- ccxt/test/base/test_margin_modification.py +35 -0
- ccxt/test/base/test_market.py +193 -0
- ccxt/test/base/test_number.py +411 -0
- ccxt/test/base/test_ohlcv.py +33 -0
- ccxt/test/base/test_open_interest.py +32 -0
- ccxt/test/base/test_order.py +64 -0
- ccxt/test/base/test_order_book.py +69 -0
- ccxt/test/base/test_position.py +60 -0
- ccxt/test/base/test_shared_methods.py +353 -0
- ccxt/test/base/test_status.py +24 -0
- ccxt/test/base/test_throttle.py +126 -0
- ccxt/test/base/test_ticker.py +92 -0
- ccxt/test/base/test_trade.py +47 -0
- ccxt/test/base/test_trading_fee.py +26 -0
- ccxt/test/base/test_transaction.py +39 -0
- ccxt/test/test_async.py +1649 -0
- ccxt/test/test_sync.py +1648 -0
- ccxt/test/tests_async.py +1558 -0
- ccxt/test/tests_helpers.py +287 -0
- ccxt/test/tests_init.py +39 -0
- ccxt/test/tests_sync.py +1555 -0
- ccxt/tetherland.py +349 -0
- ccxt/timex.py +1593 -0
- ccxt/tokocrypto.py +2405 -0
- ccxt/tradeogre.py +608 -0
- ccxt/twox.py +326 -0
- ccxt/ubitex.py +409 -0
- ccxt/upbit.py +1833 -0
- ccxt/vertex.py +2922 -0
- ccxt/wallex.py +445 -0
- ccxt/wavesexchange.py +2472 -0
- ccxt/wazirx.py +1224 -0
- ccxt/whitebit.py +2469 -0
- ccxt/woo.py +3114 -0
- ccxt/woofipro.py +2533 -0
- ccxt/xt.py +4453 -0
- ccxt/yobit.py +1283 -0
- ccxt/zaif.py +725 -0
- ccxt/zonda.py +1828 -0
- ccxt_ir-4.3.46.0.1.dist-info/LICENSE.txt +21 -0
- ccxt_ir-4.3.46.0.1.dist-info/METADATA +655 -0
- ccxt_ir-4.3.46.0.1.dist-info/RECORD +772 -0
- ccxt_ir-4.3.46.0.1.dist-info/WHEEL +6 -0
- ccxt_ir-4.3.46.0.1.dist-info/top_level.txt +1 -0
ccxt/bitteam.py
ADDED
|
@@ -0,0 +1,2239 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
# PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
4
|
+
# https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
5
|
+
|
|
6
|
+
from ccxt.base.exchange import Exchange
|
|
7
|
+
from ccxt.abstract.bitteam import ImplicitAPI
|
|
8
|
+
from ccxt.base.types import Balances, Currencies, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction
|
|
9
|
+
from typing import List
|
|
10
|
+
from ccxt.base.errors import ExchangeError
|
|
11
|
+
from ccxt.base.errors import AuthenticationError
|
|
12
|
+
from ccxt.base.errors import ArgumentsRequired
|
|
13
|
+
from ccxt.base.errors import BadRequest
|
|
14
|
+
from ccxt.base.errors import BadSymbol
|
|
15
|
+
from ccxt.base.errors import InsufficientFunds
|
|
16
|
+
from ccxt.base.errors import OrderNotFound
|
|
17
|
+
from ccxt.base.errors import ExchangeNotAvailable
|
|
18
|
+
from ccxt.base.decimal_to_precision import TICK_SIZE
|
|
19
|
+
from ccxt.base.precise import Precise
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class bitteam(Exchange, ImplicitAPI):
|
|
23
|
+
|
|
24
|
+
def describe(self):
|
|
25
|
+
return self.deep_extend(super(bitteam, self).describe(), {
|
|
26
|
+
'id': 'bitteam',
|
|
27
|
+
'name': 'BIT.TEAM',
|
|
28
|
+
'countries': ['UK'],
|
|
29
|
+
'version': 'v2.0.6',
|
|
30
|
+
'rateLimit': 1, # the exchange has no rate limit
|
|
31
|
+
'certified': False,
|
|
32
|
+
'pro': False,
|
|
33
|
+
'has': {
|
|
34
|
+
'CORS': None,
|
|
35
|
+
'spot': True,
|
|
36
|
+
'margin': False,
|
|
37
|
+
'swap': False,
|
|
38
|
+
'future': False,
|
|
39
|
+
'option': False,
|
|
40
|
+
'addMargin': False,
|
|
41
|
+
'borrowMargin': False,
|
|
42
|
+
'cancelAllOrders': True,
|
|
43
|
+
'cancelOrder': True,
|
|
44
|
+
'cancelOrders': False,
|
|
45
|
+
'createDepositAddress': False,
|
|
46
|
+
'createOrder': True,
|
|
47
|
+
'createPostOnlyOrder': False,
|
|
48
|
+
'createReduceOnlyOrder': False,
|
|
49
|
+
'createStopLimitOrder': False,
|
|
50
|
+
'createStopMarketOrder': False,
|
|
51
|
+
'createStopOrder': False,
|
|
52
|
+
'deposit': False,
|
|
53
|
+
'editOrder': False,
|
|
54
|
+
'fetchAccounts': False,
|
|
55
|
+
'fetchBalance': True,
|
|
56
|
+
'fetchBidsAsks': False,
|
|
57
|
+
'fetchBorrowInterest': False,
|
|
58
|
+
'fetchBorrowRateHistories': False,
|
|
59
|
+
'fetchBorrowRateHistory': False,
|
|
60
|
+
'fetchCanceledOrders': True,
|
|
61
|
+
'fetchClosedOrder': False,
|
|
62
|
+
'fetchClosedOrders': True,
|
|
63
|
+
'fetchCrossBorrowRate': False,
|
|
64
|
+
'fetchCrossBorrowRates': False,
|
|
65
|
+
'fetchCurrencies': True,
|
|
66
|
+
'fetchDeposit': False,
|
|
67
|
+
'fetchDepositAddress': False,
|
|
68
|
+
'fetchDepositAddresses': False,
|
|
69
|
+
'fetchDepositAddressesByNetwork': False,
|
|
70
|
+
'fetchDeposits': False,
|
|
71
|
+
'fetchDepositsWithdrawals': True,
|
|
72
|
+
'fetchDepositWithdrawFee': False,
|
|
73
|
+
'fetchDepositWithdrawFees': False,
|
|
74
|
+
'fetchFundingHistory': False,
|
|
75
|
+
'fetchFundingRate': False,
|
|
76
|
+
'fetchFundingRateHistory': False,
|
|
77
|
+
'fetchFundingRates': False,
|
|
78
|
+
'fetchIndexOHLCV': False,
|
|
79
|
+
'fetchIsolatedBorrowRate': False,
|
|
80
|
+
'fetchIsolatedBorrowRates': False,
|
|
81
|
+
'fetchL3OrderBook': False,
|
|
82
|
+
'fetchLedger': False,
|
|
83
|
+
'fetchLeverage': False,
|
|
84
|
+
'fetchLeverageTiers': False,
|
|
85
|
+
'fetchMarketLeverageTiers': False,
|
|
86
|
+
'fetchMarkets': True,
|
|
87
|
+
'fetchMarkOHLCV': False,
|
|
88
|
+
'fetchMyTrades': True,
|
|
89
|
+
'fetchOHLCV': True,
|
|
90
|
+
'fetchOpenInterestHistory': False,
|
|
91
|
+
'fetchOpenOrder': False,
|
|
92
|
+
'fetchOpenOrders': True,
|
|
93
|
+
'fetchOrder': True,
|
|
94
|
+
'fetchOrderBook': True,
|
|
95
|
+
'fetchOrderBooks': False,
|
|
96
|
+
'fetchOrders': True,
|
|
97
|
+
'fetchOrderTrades': False,
|
|
98
|
+
'fetchPosition': False,
|
|
99
|
+
'fetchPositionHistory': False,
|
|
100
|
+
'fetchPositionMode': False,
|
|
101
|
+
'fetchPositions': False,
|
|
102
|
+
'fetchPositionsForSymbol': False,
|
|
103
|
+
'fetchPositionsHistory': False,
|
|
104
|
+
'fetchPositionsRisk': False,
|
|
105
|
+
'fetchPremiumIndexOHLCV': False,
|
|
106
|
+
'fetchStatus': False,
|
|
107
|
+
'fetchTicker': True,
|
|
108
|
+
'fetchTickers': True,
|
|
109
|
+
'fetchTime': False,
|
|
110
|
+
'fetchTrades': True,
|
|
111
|
+
'fetchTradingFee': False,
|
|
112
|
+
'fetchTradingFees': False,
|
|
113
|
+
'fetchTradingLimits': False,
|
|
114
|
+
'fetchTransactionFee': False,
|
|
115
|
+
'fetchTransactionFees': False,
|
|
116
|
+
'fetchTransactions': True,
|
|
117
|
+
'fetchTransfers': False,
|
|
118
|
+
'fetchWithdrawal': False,
|
|
119
|
+
'fetchWithdrawals': False,
|
|
120
|
+
'fetchWithdrawalWhitelist': False,
|
|
121
|
+
'reduceMargin': False,
|
|
122
|
+
'repayMargin': False,
|
|
123
|
+
'setLeverage': False,
|
|
124
|
+
'setMargin': False,
|
|
125
|
+
'setMarginMode': False,
|
|
126
|
+
'setPositionMode': False,
|
|
127
|
+
'signIn': False,
|
|
128
|
+
'transfer': False,
|
|
129
|
+
'withdraw': False,
|
|
130
|
+
'ws': False,
|
|
131
|
+
},
|
|
132
|
+
'timeframes': {
|
|
133
|
+
'1m': '1',
|
|
134
|
+
'5m': '5',
|
|
135
|
+
'15m': '15',
|
|
136
|
+
'1h': '60',
|
|
137
|
+
'1d': '1D',
|
|
138
|
+
},
|
|
139
|
+
'urls': {
|
|
140
|
+
'logo': 'https://github.com/ccxt/ccxt/assets/43336371/cf71fe3d-b8b4-40f2-a906-907661b28793',
|
|
141
|
+
'api': {
|
|
142
|
+
'history': 'https://history.bit.team',
|
|
143
|
+
'public': 'https://bit.team',
|
|
144
|
+
'private': 'https://bit.team',
|
|
145
|
+
},
|
|
146
|
+
'www': 'https://bit.team/',
|
|
147
|
+
'referral': 'https://bit.team/auth/sign-up?ref=bitboy2023',
|
|
148
|
+
'doc': [
|
|
149
|
+
'https://bit.team/trade/api/documentation',
|
|
150
|
+
],
|
|
151
|
+
},
|
|
152
|
+
'api': {
|
|
153
|
+
'history': {
|
|
154
|
+
'get': {
|
|
155
|
+
'api/tw/history/{pairName}/{resolution}': 1,
|
|
156
|
+
},
|
|
157
|
+
},
|
|
158
|
+
'public': {
|
|
159
|
+
'get': {
|
|
160
|
+
'trade/api/asset': 1, # not unified
|
|
161
|
+
'trade/api/currencies': 1,
|
|
162
|
+
'trade/api/orderbooks/{symbol}': 1, # not unified
|
|
163
|
+
'trade/api/orders': 1, # not unified
|
|
164
|
+
'trade/api/pair/{name}': 1,
|
|
165
|
+
'trade/api/pairs': 1, # not unified
|
|
166
|
+
'trade/api/pairs/precisions': 1, # not unified
|
|
167
|
+
'trade/api/rates': 1, # not unified
|
|
168
|
+
'trade/api/trade/{id}': 1, # not unified
|
|
169
|
+
'trade/api/trades': 1, # not unified
|
|
170
|
+
'trade/api/ccxt/pairs': 1,
|
|
171
|
+
'trade/api/cmc/assets': 1,
|
|
172
|
+
'trade/api/cmc/orderbook/{pair}': 1,
|
|
173
|
+
'trade/api/cmc/summary': 1,
|
|
174
|
+
'trade/api/cmc/ticker': 1, # not unified
|
|
175
|
+
'trade/api/cmc/trades/{pair}': 1,
|
|
176
|
+
},
|
|
177
|
+
},
|
|
178
|
+
'private': {
|
|
179
|
+
'get': {
|
|
180
|
+
'trade/api/ccxt/balance': 1,
|
|
181
|
+
'trade/api/ccxt/order/{id}': 1,
|
|
182
|
+
'trade/api/ccxt/ordersOfUser': 1,
|
|
183
|
+
'trade/api/ccxt/tradesOfUser': 1,
|
|
184
|
+
'trade/api/transactionsOfUser': 1,
|
|
185
|
+
},
|
|
186
|
+
'post': {
|
|
187
|
+
'trade/api/ccxt/cancel-all-order': 1,
|
|
188
|
+
'trade/api/ccxt/cancelorder': 1,
|
|
189
|
+
'trade/api/ccxt/ordercreate': 1,
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
},
|
|
193
|
+
'fees': {
|
|
194
|
+
'trading': {
|
|
195
|
+
'feeSide': 'get',
|
|
196
|
+
'tierBased': False,
|
|
197
|
+
'percentage': True,
|
|
198
|
+
'taker': self.parse_number('0.002'),
|
|
199
|
+
'maker': self.parse_number('0.002'),
|
|
200
|
+
},
|
|
201
|
+
},
|
|
202
|
+
'precisionMode': TICK_SIZE,
|
|
203
|
+
# exchange-specific options
|
|
204
|
+
'options': {
|
|
205
|
+
'networksById': {
|
|
206
|
+
'Ethereum': 'ERC20',
|
|
207
|
+
'ethereum': 'ERC20',
|
|
208
|
+
'Tron': 'TRC20',
|
|
209
|
+
'tron': 'TRC20',
|
|
210
|
+
'Binance': 'BSC',
|
|
211
|
+
'binance': 'BSC',
|
|
212
|
+
'Binance Smart Chain': 'BSC',
|
|
213
|
+
'bscscan': 'BSC',
|
|
214
|
+
'Bitcoin': 'BTC',
|
|
215
|
+
'bitcoin': 'BTC',
|
|
216
|
+
'Litecoin': 'LTC',
|
|
217
|
+
'litecoin': 'LTC',
|
|
218
|
+
'Polygon': 'POLYGON',
|
|
219
|
+
'polygon': 'POLYGON',
|
|
220
|
+
'PRIZM': 'PRIZM',
|
|
221
|
+
'Decimal': 'Decimal',
|
|
222
|
+
'ufobject': 'ufobject',
|
|
223
|
+
'tonchain': 'tonchain',
|
|
224
|
+
},
|
|
225
|
+
'currenciesValuedInUsd': {
|
|
226
|
+
'USDT': True,
|
|
227
|
+
'BUSD': True,
|
|
228
|
+
},
|
|
229
|
+
},
|
|
230
|
+
'exceptions': {
|
|
231
|
+
'exact': {
|
|
232
|
+
'400002': BadSymbol, # {"ok":false,"code":400002,"message":"An order cannot be created on a deactivated pair"}
|
|
233
|
+
'401000': AuthenticationError, # {"ok":false,"code":401000,"data": {},"message": "Missing authentication"}
|
|
234
|
+
'403002': BadRequest, # {"ok":false,"code":403002,"data":{},"message":"Order cannot be deleted, status does not match"}
|
|
235
|
+
'404200': BadSymbol, # {"ok":false,"code":404200,"data":{},"message":"Pair was not found"}
|
|
236
|
+
},
|
|
237
|
+
'broad': {
|
|
238
|
+
'is not allowed': BadRequest, # {"message":"\"createdAt\" is not allowed","path":["createdAt"],"type":"object.unknown","context":{"child":"createdAt","label":"createdAt","value":"DESC","key":"createdAt"}}
|
|
239
|
+
'Insufficient funds': InsufficientFunds, # {"ok":false,"code":450000,"data":null,"message":"Insufficient funds"}
|
|
240
|
+
'Invalid request params input': BadRequest, # {"ok":false,"code":400000,"data":{},"message":"Invalid request params input"}
|
|
241
|
+
'must be a number': BadRequest, # [ExchangeError] bitteam {"message":"\"currency\" must be a number","path":["currency"],"type":"number.base","context":{"label":"currency","value":"adsf","key":"currency"}}
|
|
242
|
+
'must be a string': BadRequest, # {"message":"\"pairId\" must be a string","path":["pairId"],"type":"string.base","context":{"label":"pairId","value":87,"key":"pairId"}}
|
|
243
|
+
'must be of type': BadRequest, # {"message":"\"order\" must be of type object","path":["order"],"type":"object.base","context":{"type":"object","label":"order","value":"107218781","key":"order"}}
|
|
244
|
+
'must be one of': BadRequest, # {"message":"\"resolution\" must be one of [1, 5, 15, 60, 1D]","path":["resolution"],"type":"any.only","context":{"valids":["1","5","15","60","1D"],"label":"resolution","value":"1d","key":"resolution"}}
|
|
245
|
+
'Order not found': OrderNotFound, # {"ok":false,"code":404300,"data":{},"message":"Order not found"}
|
|
246
|
+
'Pair with pair name': BadSymbol, # {"ok":false,"code":404000,"data":{"pairName":"ETH_USasdf"},"msg":"Pair with pair name ETH_USasdf was not found"}
|
|
247
|
+
'pairName': BadSymbol, # {"message":"\"pairName\" length must be at least 7 characters long","path":["pairName"],"type":"string.min","context":{"limit":7,"value":"ETH_US","label":"pairName","key":"pairName"}}
|
|
248
|
+
'Service Unavailable': ExchangeNotAvailable, # {"message":"Service Unavailable","code":403000,"ok":false}
|
|
249
|
+
'Symbol ': BadSymbol, # {"ok":false,"code":404000,"data":{},"message":"Symbol asdfasdfas was not found"}
|
|
250
|
+
},
|
|
251
|
+
},
|
|
252
|
+
})
|
|
253
|
+
|
|
254
|
+
def fetch_markets(self, params={}) -> List[Market]:
|
|
255
|
+
"""
|
|
256
|
+
retrieves data on all markets for bitteam
|
|
257
|
+
:see: https://bit.team/trade/api/documentation#/CCXT/getTradeApiCcxtPairs
|
|
258
|
+
:param dict [params]: extra parameters specific to the exchange api endpoint
|
|
259
|
+
:returns dict[]: an array of objects representing market data
|
|
260
|
+
"""
|
|
261
|
+
response = self.publicGetTradeApiCcxtPairs(params)
|
|
262
|
+
#
|
|
263
|
+
# {
|
|
264
|
+
# "ok": True,
|
|
265
|
+
# "result": {
|
|
266
|
+
# "count": 28,
|
|
267
|
+
# "pairs": [
|
|
268
|
+
# {
|
|
269
|
+
# "id": 2,
|
|
270
|
+
# "name": "eth_usdt",
|
|
271
|
+
# "baseAssetId": 2,
|
|
272
|
+
# "quoteAssetId": 3,
|
|
273
|
+
# "fullName": "ETH USDT",
|
|
274
|
+
# "description": "ETH USDT",
|
|
275
|
+
# "lastBuy": 1964.665001,
|
|
276
|
+
# "lastSell": 1959.835005,
|
|
277
|
+
# "lastPrice": 1964.665001,
|
|
278
|
+
# "change24": 1.41,
|
|
279
|
+
# "volume24": 28.22627543,
|
|
280
|
+
# "volume24USD": 55662.35636401598,
|
|
281
|
+
# "active": True,
|
|
282
|
+
# "baseStep": 8,
|
|
283
|
+
# "quoteStep": 6,
|
|
284
|
+
# "status": 1,
|
|
285
|
+
# "settings": {
|
|
286
|
+
# "limit_usd": "0.1",
|
|
287
|
+
# "price_max": "10000000000000",
|
|
288
|
+
# "price_min": "1",
|
|
289
|
+
# "price_tick": "1",
|
|
290
|
+
# "pricescale": 10000,
|
|
291
|
+
# "lot_size_max": "1000000000000000",
|
|
292
|
+
# "lot_size_min": "1",
|
|
293
|
+
# "lot_size_tick": "1",
|
|
294
|
+
# "price_view_min": 6,
|
|
295
|
+
# "default_slippage": 10,
|
|
296
|
+
# "lot_size_view_min": 6
|
|
297
|
+
# },
|
|
298
|
+
# "updateId": "50620",
|
|
299
|
+
# "timeStart": "2021-01-28T09:19:30.706Z",
|
|
300
|
+
# "makerFee": 200,
|
|
301
|
+
# "takerFee": 200,
|
|
302
|
+
# "quoteVolume24": 54921.93404134529,
|
|
303
|
+
# "lowPrice24": 1919.355,
|
|
304
|
+
# "highPrice24": 1971.204995
|
|
305
|
+
# },
|
|
306
|
+
# {
|
|
307
|
+
# "id": 27,
|
|
308
|
+
# "name": "ltc_usdt",
|
|
309
|
+
# "baseAssetId": 13,
|
|
310
|
+
# "quoteAssetId": 3,
|
|
311
|
+
# "fullName": "LTC USDT",
|
|
312
|
+
# "description": "This is LTC USDT",
|
|
313
|
+
# "lastBuy": 53.14,
|
|
314
|
+
# "lastSell": 53.58,
|
|
315
|
+
# "lastPrice": 53.58,
|
|
316
|
+
# "change24": -6.72,
|
|
317
|
+
# "volume24": 0,
|
|
318
|
+
# "volume24USD": null,
|
|
319
|
+
# "active": True,
|
|
320
|
+
# "baseStep": 8,
|
|
321
|
+
# "quoteStep": 6,
|
|
322
|
+
# "status": 0,
|
|
323
|
+
# "settings": {
|
|
324
|
+
# "limit_usd": "0.1",
|
|
325
|
+
# "price_max": "1000000000000",
|
|
326
|
+
# "price_min": "1",
|
|
327
|
+
# "price_tick": "1",
|
|
328
|
+
# "pricescale": 10000,
|
|
329
|
+
# "lot_size_max": "1000000000000",
|
|
330
|
+
# "lot_size_min": "1",
|
|
331
|
+
# "lot_size_tick": "1",
|
|
332
|
+
# "price_view_min": 6,
|
|
333
|
+
# "default_slippage": 10,
|
|
334
|
+
# "lot_size_view_min": 6
|
|
335
|
+
# },
|
|
336
|
+
# "updateId": "30",
|
|
337
|
+
# "timeStart": "2021-10-13T12:11:05.359Z",
|
|
338
|
+
# "makerFee": 200,
|
|
339
|
+
# "takerFee": 200,
|
|
340
|
+
# "quoteVolume24": 0,
|
|
341
|
+
# "lowPrice24": null,
|
|
342
|
+
# "highPrice24": null
|
|
343
|
+
# }
|
|
344
|
+
# ]
|
|
345
|
+
# }
|
|
346
|
+
# }
|
|
347
|
+
#
|
|
348
|
+
result = self.safe_value(response, 'result', {})
|
|
349
|
+
markets = self.safe_value(result, 'pairs', [])
|
|
350
|
+
return self.parse_markets(markets)
|
|
351
|
+
|
|
352
|
+
def parse_market(self, market: dict) -> Market:
|
|
353
|
+
id = self.safe_string(market, 'name')
|
|
354
|
+
numericId = self.safe_integer(market, 'id')
|
|
355
|
+
parts = id.split('_')
|
|
356
|
+
baseId = self.safe_string(parts, 0)
|
|
357
|
+
quoteId = self.safe_string(parts, 1)
|
|
358
|
+
base = self.safe_currency_code(baseId)
|
|
359
|
+
quote = self.safe_currency_code(quoteId)
|
|
360
|
+
active = self.safe_value(market, 'active')
|
|
361
|
+
timeStart = self.safe_string(market, 'timeStart')
|
|
362
|
+
created = self.parse8601(timeStart)
|
|
363
|
+
minCost = None
|
|
364
|
+
currenciesValuedInUsd = self.safe_value(self.options, 'currenciesValuedInUsd', {})
|
|
365
|
+
quoteInUsd = self.safe_bool(currenciesValuedInUsd, quote, False)
|
|
366
|
+
if quoteInUsd:
|
|
367
|
+
settings = self.safe_value(market, 'settings', {})
|
|
368
|
+
minCost = self.safe_number(settings, 'limit_usd')
|
|
369
|
+
return self.safe_market_structure({
|
|
370
|
+
'id': id,
|
|
371
|
+
'numericId': numericId,
|
|
372
|
+
'symbol': base + '/' + quote,
|
|
373
|
+
'base': base,
|
|
374
|
+
'quote': quote,
|
|
375
|
+
'settle': None,
|
|
376
|
+
'baseId': baseId,
|
|
377
|
+
'quoteId': quoteId,
|
|
378
|
+
'settleId': None,
|
|
379
|
+
'type': 'spot',
|
|
380
|
+
'spot': True,
|
|
381
|
+
'margin': False,
|
|
382
|
+
'swap': False,
|
|
383
|
+
'future': False,
|
|
384
|
+
'option': False,
|
|
385
|
+
'active': active,
|
|
386
|
+
'contract': False,
|
|
387
|
+
'linear': None,
|
|
388
|
+
'inverse': None,
|
|
389
|
+
'contractSize': None,
|
|
390
|
+
'expiry': None,
|
|
391
|
+
'expiryDatetime': None,
|
|
392
|
+
'strike': None,
|
|
393
|
+
'optionType': None,
|
|
394
|
+
'precision': {
|
|
395
|
+
'amount': self.parse_number(self.parse_precision(self.safe_string(market, 'baseStep'))),
|
|
396
|
+
'price': self.parse_number(self.parse_precision(self.safe_string(market, 'quoteStep'))),
|
|
397
|
+
},
|
|
398
|
+
'limits': {
|
|
399
|
+
'leverage': {
|
|
400
|
+
'min': None,
|
|
401
|
+
'max': None,
|
|
402
|
+
},
|
|
403
|
+
'amount': {
|
|
404
|
+
'min': None,
|
|
405
|
+
'max': None,
|
|
406
|
+
},
|
|
407
|
+
'price': {
|
|
408
|
+
'min': None,
|
|
409
|
+
'max': None,
|
|
410
|
+
},
|
|
411
|
+
'cost': {
|
|
412
|
+
'min': minCost,
|
|
413
|
+
'max': None,
|
|
414
|
+
},
|
|
415
|
+
},
|
|
416
|
+
'created': created,
|
|
417
|
+
'info': market,
|
|
418
|
+
})
|
|
419
|
+
|
|
420
|
+
def fetch_currencies(self, params={}) -> Currencies:
|
|
421
|
+
"""
|
|
422
|
+
fetches all available currencies on an exchange
|
|
423
|
+
:see: https://bit.team/trade/api/documentation#/PUBLIC/getTradeApiCurrencies
|
|
424
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
425
|
+
:returns dict: an associative dictionary of currencies
|
|
426
|
+
"""
|
|
427
|
+
response = self.publicGetTradeApiCurrencies(params)
|
|
428
|
+
#
|
|
429
|
+
# {
|
|
430
|
+
# "ok": True,
|
|
431
|
+
# "result": {
|
|
432
|
+
# "count": 24,
|
|
433
|
+
# "currencies": [
|
|
434
|
+
# {
|
|
435
|
+
# "txLimits": {
|
|
436
|
+
# "minDeposit": "0.0001",
|
|
437
|
+
# "minWithdraw": "0.02",
|
|
438
|
+
# "maxWithdraw": "10000",
|
|
439
|
+
# "withdrawCommissionPercentage": "NaN",
|
|
440
|
+
# "withdrawCommissionFixed": "0.005"
|
|
441
|
+
# },
|
|
442
|
+
# "id": 2,
|
|
443
|
+
# "status": 1,
|
|
444
|
+
# "symbol": "eth",
|
|
445
|
+
# "title": "Ethereum",
|
|
446
|
+
# "logoURL": "https://ethereum.org/static/6b935ac0e6194247347855dc3d328e83/34ca5/eth-diamond-black.png",
|
|
447
|
+
# "isDiscount": False,
|
|
448
|
+
# "address": "https://ethereum.org/",
|
|
449
|
+
# "description": "Ethereum ETH",
|
|
450
|
+
# "decimals": 18,
|
|
451
|
+
# "blockChain": "Ethereum",
|
|
452
|
+
# "precision": 8,
|
|
453
|
+
# "currentRate": null,
|
|
454
|
+
# "active": True,
|
|
455
|
+
# "timeStart": "2021-01-28T08:57:41.719Z",
|
|
456
|
+
# "type": "crypto",
|
|
457
|
+
# "typeNetwork": "internalGW",
|
|
458
|
+
# "idSorting": 2,
|
|
459
|
+
# "links": [
|
|
460
|
+
# {
|
|
461
|
+
# "tx": "https://etherscan.io/tx/",
|
|
462
|
+
# "address": "https://etherscan.io/address/",
|
|
463
|
+
# "blockChain": "Ethereum"
|
|
464
|
+
# }
|
|
465
|
+
# ]
|
|
466
|
+
# },
|
|
467
|
+
# {
|
|
468
|
+
# "txLimits": {
|
|
469
|
+
# "minDeposit": "0.001",
|
|
470
|
+
# "minWithdraw": "1",
|
|
471
|
+
# "maxWithdraw": "100000",
|
|
472
|
+
# "withdrawCommissionPercentage": "NaN",
|
|
473
|
+
# "withdrawCommissionFixed": {
|
|
474
|
+
# "Tron": "2",
|
|
475
|
+
# "Binance": "2",
|
|
476
|
+
# "Ethereum": "20"
|
|
477
|
+
# }
|
|
478
|
+
# },
|
|
479
|
+
# "id": 3,
|
|
480
|
+
# "status": 1,
|
|
481
|
+
# "symbol": "usdt",
|
|
482
|
+
# "title": "Tether USD",
|
|
483
|
+
# "logoURL": "https://cryptologos.cc/logos/tether-usdt-logo.png?v=010",
|
|
484
|
+
# "isDiscount": False,
|
|
485
|
+
# "address": "https://tether.to/",
|
|
486
|
+
# "description": "Tether USD",
|
|
487
|
+
# "decimals": 6,
|
|
488
|
+
# "blockChain": "",
|
|
489
|
+
# "precision": 6,
|
|
490
|
+
# "currentRate": null,
|
|
491
|
+
# "active": True,
|
|
492
|
+
# "timeStart": "2021-01-28T09:04:17.170Z",
|
|
493
|
+
# "type": "crypto",
|
|
494
|
+
# "typeNetwork": "internalGW",
|
|
495
|
+
# "idSorting": 0,
|
|
496
|
+
# "links": [
|
|
497
|
+
# {
|
|
498
|
+
# "tx": "https://etherscan.io/tx/",
|
|
499
|
+
# "address": "https://etherscan.io/address/",
|
|
500
|
+
# "blockChain": "Ethereum"
|
|
501
|
+
# },
|
|
502
|
+
# {
|
|
503
|
+
# "tx": "https://tronscan.org/#/transaction/",
|
|
504
|
+
# "address": "https://tronscan.org/#/address/",
|
|
505
|
+
# "blockChain": "Tron"
|
|
506
|
+
# },
|
|
507
|
+
# {
|
|
508
|
+
# "tx": "https://bscscan.com/tx/",
|
|
509
|
+
# "address": "https://bscscan.com/address/",
|
|
510
|
+
# "blockChain": "Binance"
|
|
511
|
+
# }
|
|
512
|
+
# ]
|
|
513
|
+
# }
|
|
514
|
+
# ]
|
|
515
|
+
# }
|
|
516
|
+
# }
|
|
517
|
+
#
|
|
518
|
+
responseResult = self.safe_value(response, 'result', {})
|
|
519
|
+
currencies = self.safe_value(responseResult, 'currencies', [])
|
|
520
|
+
# usding another endpoint to fetch statuses of deposits and withdrawals
|
|
521
|
+
statusesResponse = self.publicGetTradeApiCmcAssets()
|
|
522
|
+
#
|
|
523
|
+
# {
|
|
524
|
+
# "ZNX": {
|
|
525
|
+
# "name": "ZeNeX Coin",
|
|
526
|
+
# "unified_cryptoasset_id": 30,
|
|
527
|
+
# "withdrawStatus": True,
|
|
528
|
+
# "depositStatus": True,
|
|
529
|
+
# "min_withdraw": 0.00001,
|
|
530
|
+
# "max_withdraw": 10000
|
|
531
|
+
# },
|
|
532
|
+
# "USDT": {
|
|
533
|
+
# "name": "Tether USD",
|
|
534
|
+
# "unified_cryptoasset_id": 3,
|
|
535
|
+
# "withdrawStatus": True,
|
|
536
|
+
# "depositStatus": True,
|
|
537
|
+
# "min_withdraw": 1,
|
|
538
|
+
# "max_withdraw": 100000
|
|
539
|
+
# },
|
|
540
|
+
# }
|
|
541
|
+
#
|
|
542
|
+
statusesResponse = self.index_by(statusesResponse, 'unified_cryptoasset_id')
|
|
543
|
+
result: dict = {}
|
|
544
|
+
for i in range(0, len(currencies)):
|
|
545
|
+
currency = currencies[i]
|
|
546
|
+
id = self.safe_string(currency, 'symbol')
|
|
547
|
+
numericId = self.safe_integer(currency, 'id')
|
|
548
|
+
code = self.safe_currency_code(id)
|
|
549
|
+
active = self.safe_bool(currency, 'active', False)
|
|
550
|
+
precision = self.parse_number(self.parse_precision(self.safe_string(currency, 'precision')))
|
|
551
|
+
txLimits = self.safe_value(currency, 'txLimits', {})
|
|
552
|
+
minWithdraw = self.safe_string(txLimits, 'minWithdraw')
|
|
553
|
+
maxWithdraw = self.safe_string(txLimits, 'maxWithdraw')
|
|
554
|
+
minDeposit = self.safe_string(txLimits, 'minDeposit')
|
|
555
|
+
fee = None
|
|
556
|
+
withdrawCommissionFixed = self.safe_value(txLimits, 'withdrawCommissionFixed', {})
|
|
557
|
+
feesByNetworkId: dict = {}
|
|
558
|
+
blockChain = self.safe_string(currency, 'blockChain')
|
|
559
|
+
# if only one blockChain
|
|
560
|
+
if (blockChain is not None) and (blockChain != ''):
|
|
561
|
+
fee = self.parse_number(withdrawCommissionFixed)
|
|
562
|
+
feesByNetworkId[blockChain] = fee
|
|
563
|
+
else:
|
|
564
|
+
feesByNetworkId = withdrawCommissionFixed
|
|
565
|
+
statuses = self.safe_value(statusesResponse, numericId, {})
|
|
566
|
+
deposit = self.safe_value(statuses, 'depositStatus')
|
|
567
|
+
withdraw = self.safe_value(statuses, 'withdrawStatus')
|
|
568
|
+
networkIds = list(feesByNetworkId.keys())
|
|
569
|
+
networks: dict = {}
|
|
570
|
+
networkPrecision = self.parse_number(self.parse_precision(self.safe_string(currency, 'decimals')))
|
|
571
|
+
for j in range(0, len(networkIds)):
|
|
572
|
+
networkId = networkIds[j]
|
|
573
|
+
networkCode = self.network_id_to_code(networkId, code)
|
|
574
|
+
networkFee = self.safe_number(feesByNetworkId, networkId)
|
|
575
|
+
networks[networkCode] = {
|
|
576
|
+
'id': networkId,
|
|
577
|
+
'network': networkCode,
|
|
578
|
+
'deposit': deposit,
|
|
579
|
+
'withdraw': withdraw,
|
|
580
|
+
'active': active,
|
|
581
|
+
'fee': networkFee,
|
|
582
|
+
'precision': networkPrecision,
|
|
583
|
+
'limits': {
|
|
584
|
+
'amount': {
|
|
585
|
+
'min': None,
|
|
586
|
+
'max': None,
|
|
587
|
+
},
|
|
588
|
+
'withdraw': {
|
|
589
|
+
'min': self.parse_number(minWithdraw),
|
|
590
|
+
'max': self.parse_number(maxWithdraw),
|
|
591
|
+
},
|
|
592
|
+
'deposit': {
|
|
593
|
+
'min': self.parse_number(minDeposit),
|
|
594
|
+
'max': None,
|
|
595
|
+
},
|
|
596
|
+
},
|
|
597
|
+
'info': currency,
|
|
598
|
+
}
|
|
599
|
+
result[code] = {
|
|
600
|
+
'id': id,
|
|
601
|
+
'numericId': numericId,
|
|
602
|
+
'code': code,
|
|
603
|
+
'name': code,
|
|
604
|
+
'info': currency,
|
|
605
|
+
'active': active,
|
|
606
|
+
'deposit': deposit,
|
|
607
|
+
'withdraw': withdraw,
|
|
608
|
+
'fee': fee,
|
|
609
|
+
'precision': precision,
|
|
610
|
+
'limits': {
|
|
611
|
+
'amount': {
|
|
612
|
+
'min': None,
|
|
613
|
+
'max': None,
|
|
614
|
+
},
|
|
615
|
+
'withdraw': {
|
|
616
|
+
'min': self.parse_number(minWithdraw),
|
|
617
|
+
'max': self.parse_number(maxWithdraw),
|
|
618
|
+
},
|
|
619
|
+
'deposit': {
|
|
620
|
+
'min': self.parse_number(minDeposit),
|
|
621
|
+
'max': None,
|
|
622
|
+
},
|
|
623
|
+
},
|
|
624
|
+
'networks': networks,
|
|
625
|
+
}
|
|
626
|
+
return result
|
|
627
|
+
|
|
628
|
+
def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
|
629
|
+
"""
|
|
630
|
+
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
|
631
|
+
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
632
|
+
:param str timeframe: the length of time each candle represents
|
|
633
|
+
:param int [since]: timestamp in ms of the earliest candle to fetch
|
|
634
|
+
:param int [limit]: the maximum amount of candles to fetch
|
|
635
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
636
|
+
:returns int[][]: A list of candles ordered, open, high, low, close, volume
|
|
637
|
+
"""
|
|
638
|
+
self.load_markets()
|
|
639
|
+
market = self.market(symbol)
|
|
640
|
+
resolution = self.safe_string(self.timeframes, timeframe, timeframe)
|
|
641
|
+
request: dict = {
|
|
642
|
+
'pairName': market['id'],
|
|
643
|
+
'resolution': resolution,
|
|
644
|
+
}
|
|
645
|
+
response = self.historyGetApiTwHistoryPairNameResolution(self.extend(request, params))
|
|
646
|
+
#
|
|
647
|
+
# {
|
|
648
|
+
# "ok": True,
|
|
649
|
+
# "result": {
|
|
650
|
+
# "count": 364,
|
|
651
|
+
# "data": [
|
|
652
|
+
# {
|
|
653
|
+
# "t": 1669593600,
|
|
654
|
+
# "o": 16211.259266,
|
|
655
|
+
# "h": 16476.985001,
|
|
656
|
+
# "l": 16023.714999,
|
|
657
|
+
# "c": 16430.636894,
|
|
658
|
+
# "v": 2.60150368999999
|
|
659
|
+
# },
|
|
660
|
+
# {
|
|
661
|
+
# "t": 1669680000,
|
|
662
|
+
# "o": 16430.636894,
|
|
663
|
+
# "h": 17065.229582,
|
|
664
|
+
# "l": 16346.114155,
|
|
665
|
+
# "c": 16882.297736,
|
|
666
|
+
# "v": 3.0872548400000115
|
|
667
|
+
# },
|
|
668
|
+
# ...
|
|
669
|
+
# ]
|
|
670
|
+
# }
|
|
671
|
+
# }
|
|
672
|
+
#
|
|
673
|
+
result = self.safe_value(response, 'result', {})
|
|
674
|
+
data = self.safe_list(result, 'data', [])
|
|
675
|
+
return self.parse_ohlcvs(data, market, timeframe, since, limit)
|
|
676
|
+
|
|
677
|
+
def parse_ohlcv(self, ohlcv, market: Market = None) -> list:
|
|
678
|
+
#
|
|
679
|
+
# {
|
|
680
|
+
# "t": 1669680000,
|
|
681
|
+
# "o": 16430.636894,
|
|
682
|
+
# "h": 17065.229582,
|
|
683
|
+
# "l": 16346.114155,
|
|
684
|
+
# "c": 16882.297736,
|
|
685
|
+
# "v": 3.0872548400000115
|
|
686
|
+
# },
|
|
687
|
+
#
|
|
688
|
+
return [
|
|
689
|
+
self.safe_timestamp(ohlcv, 't'),
|
|
690
|
+
self.safe_number(ohlcv, 'o'),
|
|
691
|
+
self.safe_number(ohlcv, 'h'),
|
|
692
|
+
self.safe_number(ohlcv, 'l'),
|
|
693
|
+
self.safe_number(ohlcv, 'c'),
|
|
694
|
+
self.safe_number(ohlcv, 'v'),
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
|
698
|
+
"""
|
|
699
|
+
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
|
700
|
+
:see: https://bit.team/trade/api/documentation#/CMC/getTradeApiCmcOrderbookPair
|
|
701
|
+
:param str symbol: unified symbol of the market to fetch the order book for
|
|
702
|
+
:param int [limit]: the maximum amount of order book entries to return(default 100, max 200)
|
|
703
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
704
|
+
:returns dict: A dictionary of `order book structures <https://github.com/ccxt/ccxt/wiki/Manual#order-book-structure>` indexed by market symbols
|
|
705
|
+
"""
|
|
706
|
+
self.load_markets()
|
|
707
|
+
market = self.market(symbol)
|
|
708
|
+
request: dict = {
|
|
709
|
+
'pair': market['id'],
|
|
710
|
+
}
|
|
711
|
+
response = self.publicGetTradeApiCmcOrderbookPair(self.extend(request, params))
|
|
712
|
+
#
|
|
713
|
+
# {
|
|
714
|
+
# "timestamp": 1701166703285,
|
|
715
|
+
# "bids": [
|
|
716
|
+
# [
|
|
717
|
+
# 2019.334988,
|
|
718
|
+
# 0.09048525
|
|
719
|
+
# ],
|
|
720
|
+
# [
|
|
721
|
+
# 1999.860002,
|
|
722
|
+
# 0.0225
|
|
723
|
+
# ],
|
|
724
|
+
# ...
|
|
725
|
+
# ],
|
|
726
|
+
# "asks": [
|
|
727
|
+
# [
|
|
728
|
+
# 2019.334995,
|
|
729
|
+
# 0.00899078
|
|
730
|
+
# ],
|
|
731
|
+
# [
|
|
732
|
+
# 2019.335013,
|
|
733
|
+
# 0.09833052
|
|
734
|
+
# ],
|
|
735
|
+
# ...
|
|
736
|
+
# ]
|
|
737
|
+
# }
|
|
738
|
+
#
|
|
739
|
+
timestamp = self.safe_integer(response, 'timestamp')
|
|
740
|
+
orderbook = self.parse_order_book(response, symbol, timestamp)
|
|
741
|
+
return orderbook
|
|
742
|
+
|
|
743
|
+
def fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
744
|
+
"""
|
|
745
|
+
fetches information on multiple orders made by the user
|
|
746
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/getTradeApiCcxtOrdersofuser
|
|
747
|
+
:param str symbol: unified market symbol of the market orders were made in
|
|
748
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
|
749
|
+
:param int [limit]: the maximum number of orde structures to retrieve(default 10)
|
|
750
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
751
|
+
:param str [params.type]: the status of the order - 'active', 'closed', 'cancelled', 'all', 'history'(default 'all')
|
|
752
|
+
:returns Order[]: a list of `order structures <https://github.com/ccxt/ccxt/wiki/Manual#order-structure>`
|
|
753
|
+
"""
|
|
754
|
+
self.load_markets()
|
|
755
|
+
type = self.safe_string(params, 'type', 'all')
|
|
756
|
+
request: dict = {
|
|
757
|
+
'type': type,
|
|
758
|
+
}
|
|
759
|
+
market = None
|
|
760
|
+
if symbol is not None:
|
|
761
|
+
market = self.market(symbol)
|
|
762
|
+
request['pair'] = market['id']
|
|
763
|
+
if limit is not None:
|
|
764
|
+
request['limit'] = limit
|
|
765
|
+
response = self.privateGetTradeApiCcxtOrdersOfUser(self.extend(request, params))
|
|
766
|
+
#
|
|
767
|
+
# {
|
|
768
|
+
# "ok": True,
|
|
769
|
+
# "result": {
|
|
770
|
+
# "count": 3,
|
|
771
|
+
# "orders": [
|
|
772
|
+
# {
|
|
773
|
+
# "id": 106733026,
|
|
774
|
+
# "orderId": null,
|
|
775
|
+
# "userId": 21639,
|
|
776
|
+
# "pair": "btc_usdt",
|
|
777
|
+
# "pairId": 22,
|
|
778
|
+
# "quantity": "0.00001",
|
|
779
|
+
# "price": "40",
|
|
780
|
+
# "executedPrice": "0",
|
|
781
|
+
# "fee": null,
|
|
782
|
+
# "orderCid": null,
|
|
783
|
+
# "executed": "0",
|
|
784
|
+
# "expires": null,
|
|
785
|
+
# "baseDecimals": 8,
|
|
786
|
+
# "quoteDecimals": 6,
|
|
787
|
+
# "timestamp": 1700594804,
|
|
788
|
+
# "status": "inactive",
|
|
789
|
+
# "side": "buy",
|
|
790
|
+
# "type": "limit",
|
|
791
|
+
# "createdAt": "2023-11-21T19:26:43.868Z",
|
|
792
|
+
# "updatedAt": "2023-11-21T19:26:43.868Z"
|
|
793
|
+
# },
|
|
794
|
+
# {
|
|
795
|
+
# "id": 106733308,
|
|
796
|
+
# "orderId": "13074362",
|
|
797
|
+
# "userId": 21639,
|
|
798
|
+
# "pair": "btc_usdt",
|
|
799
|
+
# "pairId": 22,
|
|
800
|
+
# "quantity": "0.00001",
|
|
801
|
+
# "price": "50000",
|
|
802
|
+
# "executedPrice": "37017.495008",
|
|
803
|
+
# "fee": {
|
|
804
|
+
# "amount": "0.00000002",
|
|
805
|
+
# "symbol": "btc",
|
|
806
|
+
# "userId": 21639,
|
|
807
|
+
# "decimals": 8,
|
|
808
|
+
# "symbolId": 11
|
|
809
|
+
# },
|
|
810
|
+
# "orderCid": null,
|
|
811
|
+
# "executed": "0.00001",
|
|
812
|
+
# "expires": null,
|
|
813
|
+
# "baseDecimals": 8,
|
|
814
|
+
# "quoteDecimals": 6,
|
|
815
|
+
# "timestamp": 1700594959,
|
|
816
|
+
# "status": "executed",
|
|
817
|
+
# "side": "buy",
|
|
818
|
+
# "type": "limit",
|
|
819
|
+
# "createdAt": "2023-11-21T19:29:19.946Z",
|
|
820
|
+
# "updatedAt": "2023-11-21T19:29:19.946Z"
|
|
821
|
+
# },
|
|
822
|
+
# {
|
|
823
|
+
# "id": 106734455,
|
|
824
|
+
# "orderId": "13248984",
|
|
825
|
+
# "userId": 21639,
|
|
826
|
+
# "pair": "eth_usdt",
|
|
827
|
+
# "pairId": 2,
|
|
828
|
+
# "quantity": "0.001",
|
|
829
|
+
# "price": "1750",
|
|
830
|
+
# "executedPrice": "0",
|
|
831
|
+
# "fee": null,
|
|
832
|
+
# "orderCid": null,
|
|
833
|
+
# "executed": "0",
|
|
834
|
+
# "expires": null,
|
|
835
|
+
# "baseDecimals": 18,
|
|
836
|
+
# "quoteDecimals": 6,
|
|
837
|
+
# "timestamp": 1700595523,
|
|
838
|
+
# "status": "accepted",
|
|
839
|
+
# "side": "buy",
|
|
840
|
+
# "type": "limit",
|
|
841
|
+
# "createdAt": "2023-11-21T19:38:43.530Z",
|
|
842
|
+
# "updatedAt": "2023-11-21T19:38:43.530Z"
|
|
843
|
+
# }
|
|
844
|
+
# ]
|
|
845
|
+
# }
|
|
846
|
+
# }
|
|
847
|
+
#
|
|
848
|
+
result = self.safe_value(response, 'result', {})
|
|
849
|
+
orders = self.safe_list(result, 'orders', [])
|
|
850
|
+
return self.parse_orders(orders, market, since, limit)
|
|
851
|
+
|
|
852
|
+
def fetch_order(self, id: str, symbol: Str = None, params={}) -> Order:
|
|
853
|
+
"""
|
|
854
|
+
fetches information on an order
|
|
855
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/getTradeApiCcxtOrderId
|
|
856
|
+
:param int|str id: order id
|
|
857
|
+
:param str symbol: not used by bitteam fetchOrder()
|
|
858
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
859
|
+
:returns dict: An `order structure <https://github.com/ccxt/ccxt/wiki/Manual#order-structure>`
|
|
860
|
+
"""
|
|
861
|
+
self.load_markets()
|
|
862
|
+
request: dict = {
|
|
863
|
+
'id': id,
|
|
864
|
+
}
|
|
865
|
+
market = None
|
|
866
|
+
if symbol is not None:
|
|
867
|
+
market = self.market(symbol)
|
|
868
|
+
response = self.privateGetTradeApiCcxtOrderId(self.extend(request, params))
|
|
869
|
+
#
|
|
870
|
+
# {
|
|
871
|
+
# "ok": True,
|
|
872
|
+
# "result": {
|
|
873
|
+
# "id": 106494347,
|
|
874
|
+
# "orderId": "13214332",
|
|
875
|
+
# "userId": 15912,
|
|
876
|
+
# "pair": "eth_usdt",
|
|
877
|
+
# "pairId": 2,
|
|
878
|
+
# "quantity": "0.00448598",
|
|
879
|
+
# "price": "2015.644995",
|
|
880
|
+
# "executedPrice": "2015.644995",
|
|
881
|
+
# "fee": {
|
|
882
|
+
# "amount": "0",
|
|
883
|
+
# "symbol": "eth",
|
|
884
|
+
# "userId": 15912,
|
|
885
|
+
# "decimals": 18,
|
|
886
|
+
# "symbolId": 2,
|
|
887
|
+
# "discountAmount": "0",
|
|
888
|
+
# "discountSymbol": "btt",
|
|
889
|
+
# "discountDecimals": 18,
|
|
890
|
+
# "discountSymbolId": 5
|
|
891
|
+
# },
|
|
892
|
+
# "orderCid": null,
|
|
893
|
+
# "executed": "0.00448598",
|
|
894
|
+
# "expires": null,
|
|
895
|
+
# "baseDecimals": 18,
|
|
896
|
+
# "quoteDecimals": 6,
|
|
897
|
+
# "timestamp": 1700470476,
|
|
898
|
+
# "status": "executed",
|
|
899
|
+
# "side": "buy",
|
|
900
|
+
# "type": "limit",
|
|
901
|
+
# "stopPrice": null,
|
|
902
|
+
# "slippage": null
|
|
903
|
+
# }
|
|
904
|
+
# }
|
|
905
|
+
#
|
|
906
|
+
result = self.safe_dict(response, 'result')
|
|
907
|
+
return self.parse_order(result, market)
|
|
908
|
+
|
|
909
|
+
def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
910
|
+
"""
|
|
911
|
+
fetch all unfilled currently open orders
|
|
912
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/getTradeApiCcxtOrdersofuser
|
|
913
|
+
:param str symbol: unified market symbol
|
|
914
|
+
:param int [since]: the earliest time in ms to fetch open orders for
|
|
915
|
+
:param int [limit]: the maximum number of open order structures to retrieve(default 10)
|
|
916
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
917
|
+
:returns Order[]: a list of `order structures <https://github.com/ccxt/ccxt/wiki/Manual#order-structure>`
|
|
918
|
+
"""
|
|
919
|
+
self.load_markets()
|
|
920
|
+
request: dict = {
|
|
921
|
+
'type': 'active',
|
|
922
|
+
}
|
|
923
|
+
return self.fetch_orders(symbol, since, limit, self.extend(request, params))
|
|
924
|
+
|
|
925
|
+
def fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
926
|
+
"""
|
|
927
|
+
fetches information on multiple closed orders made by the user
|
|
928
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/getTradeApiCcxtOrdersofuser
|
|
929
|
+
:param str symbol: unified market symbol of the market orders were made in
|
|
930
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
|
931
|
+
:param int [limit]: the maximum number of closed order structures to retrieve(default 10)
|
|
932
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
933
|
+
:returns Order[]: a list of `order structures <https://github.com/ccxt/ccxt/wiki/Manual#order-structure>`
|
|
934
|
+
"""
|
|
935
|
+
self.load_markets()
|
|
936
|
+
request: dict = {
|
|
937
|
+
'type': 'closed',
|
|
938
|
+
}
|
|
939
|
+
return self.fetch_orders(symbol, since, limit, self.extend(request, params))
|
|
940
|
+
|
|
941
|
+
def fetch_canceled_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
942
|
+
"""
|
|
943
|
+
fetches information on multiple canceled orders made by the user
|
|
944
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/getTradeApiCcxtOrdersofuser
|
|
945
|
+
:param str symbol: unified market symbol of the market orders were made in
|
|
946
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
|
947
|
+
:param int [limit]: the maximum number of canceled order structures to retrieve(default 10)
|
|
948
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
949
|
+
:returns dict: a list of `order structures <https://github.com/ccxt/ccxt/wiki/Manual#order-structure>`
|
|
950
|
+
"""
|
|
951
|
+
self.load_markets()
|
|
952
|
+
request: dict = {
|
|
953
|
+
'type': 'cancelled',
|
|
954
|
+
}
|
|
955
|
+
return self.fetch_orders(symbol, since, limit, self.extend(request, params))
|
|
956
|
+
|
|
957
|
+
def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
|
|
958
|
+
"""
|
|
959
|
+
create a trade order
|
|
960
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/postTradeApiCcxtOrdercreate
|
|
961
|
+
:param str symbol: unified symbol of the market to create an order in
|
|
962
|
+
:param str type: 'market' or 'limit'
|
|
963
|
+
:param str side: 'buy' or 'sell'
|
|
964
|
+
:param float amount: how much of currency you want to trade in units of base currency
|
|
965
|
+
:param float [price]: the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
|
|
966
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
967
|
+
:returns dict: an `order structure <https://github.com/ccxt/ccxt/wiki/Manual#order-structure>`
|
|
968
|
+
"""
|
|
969
|
+
self.load_markets()
|
|
970
|
+
market = self.market(symbol)
|
|
971
|
+
request: dict = {
|
|
972
|
+
'pairId': str(market['numericId']),
|
|
973
|
+
'type': type,
|
|
974
|
+
'side': side,
|
|
975
|
+
'amount': self.amount_to_precision(symbol, amount),
|
|
976
|
+
}
|
|
977
|
+
if type == 'limit':
|
|
978
|
+
if price is None:
|
|
979
|
+
raise ArgumentsRequired(self.id + ' createOrder() requires a price argument for a ' + type + ' order')
|
|
980
|
+
else:
|
|
981
|
+
request['price'] = self.price_to_precision(symbol, price)
|
|
982
|
+
response = self.privatePostTradeApiCcxtOrdercreate(self.extend(request, params))
|
|
983
|
+
#
|
|
984
|
+
# {
|
|
985
|
+
# "ok": True,
|
|
986
|
+
# "result": {
|
|
987
|
+
# "id": 106733308,
|
|
988
|
+
# "userId": 21639,
|
|
989
|
+
# "quantity": "0.00001",
|
|
990
|
+
# "pair": "btc_usdt",
|
|
991
|
+
# "side": "buy",
|
|
992
|
+
# "price": "50000",
|
|
993
|
+
# "executed": "0",
|
|
994
|
+
# "executedPrice": "0",
|
|
995
|
+
# "status": "created",
|
|
996
|
+
# "baseDecimals": 8,
|
|
997
|
+
# "quoteDecimals": 6,
|
|
998
|
+
# "pairId": 22,
|
|
999
|
+
# "type": "limit",
|
|
1000
|
+
# "stopPrice": null,
|
|
1001
|
+
# "slippage": null,
|
|
1002
|
+
# "timestamp": "1700594959"
|
|
1003
|
+
# }
|
|
1004
|
+
# }
|
|
1005
|
+
#
|
|
1006
|
+
order = self.safe_dict(response, 'result', {})
|
|
1007
|
+
return self.parse_order(order, market)
|
|
1008
|
+
|
|
1009
|
+
def cancel_order(self, id: str, symbol: Str = None, params={}):
|
|
1010
|
+
"""
|
|
1011
|
+
cancels an open order
|
|
1012
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/postTradeApiCcxtCancelorder
|
|
1013
|
+
:param str id: order id
|
|
1014
|
+
:param str symbol: not used by bitteam cancelOrder()
|
|
1015
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
1016
|
+
:returns dict: An `order structure <https://github.com/ccxt/ccxt/wiki/Manual#order-structure>`
|
|
1017
|
+
"""
|
|
1018
|
+
self.load_markets()
|
|
1019
|
+
request: dict = {
|
|
1020
|
+
'id': id,
|
|
1021
|
+
}
|
|
1022
|
+
response = self.privatePostTradeApiCcxtCancelorder(self.extend(request, params))
|
|
1023
|
+
#
|
|
1024
|
+
# {
|
|
1025
|
+
# "ok": True,
|
|
1026
|
+
# "result": {
|
|
1027
|
+
# "message": "The request to cancel your order was received"
|
|
1028
|
+
# }
|
|
1029
|
+
# }
|
|
1030
|
+
#
|
|
1031
|
+
result = self.safe_dict(response, 'result', {})
|
|
1032
|
+
return self.parse_order(result)
|
|
1033
|
+
|
|
1034
|
+
def cancel_all_orders(self, symbol: Str = None, params={}):
|
|
1035
|
+
"""
|
|
1036
|
+
cancel open orders of market
|
|
1037
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/postTradeApiCcxtCancelallorder
|
|
1038
|
+
:param str symbol: unified market symbol
|
|
1039
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
1040
|
+
:returns dict[]: a list of `order structures <https://github.com/ccxt/ccxt/wiki/Manual#order-structure>`
|
|
1041
|
+
"""
|
|
1042
|
+
self.load_markets()
|
|
1043
|
+
market = None
|
|
1044
|
+
request: dict = {}
|
|
1045
|
+
if symbol is not None:
|
|
1046
|
+
market = self.market(symbol)
|
|
1047
|
+
request['pairId'] = str(market['numericId'])
|
|
1048
|
+
else:
|
|
1049
|
+
request['pairId'] = '0' # '0' for all markets
|
|
1050
|
+
response = self.privatePostTradeApiCcxtCancelAllOrder(self.extend(request, params))
|
|
1051
|
+
#
|
|
1052
|
+
# {
|
|
1053
|
+
# "ok": True,
|
|
1054
|
+
# "result": {
|
|
1055
|
+
# "message":"The request to cancel all your orders was received"
|
|
1056
|
+
# }
|
|
1057
|
+
# }
|
|
1058
|
+
#
|
|
1059
|
+
result = self.safe_value(response, 'result', {})
|
|
1060
|
+
orders = [result]
|
|
1061
|
+
return self.parse_orders(orders, market)
|
|
1062
|
+
|
|
1063
|
+
def parse_order(self, order: dict, market: Market = None) -> Order:
|
|
1064
|
+
#
|
|
1065
|
+
# fetchOrders
|
|
1066
|
+
# {
|
|
1067
|
+
# "id": 106733308,
|
|
1068
|
+
# "orderId": "13074362",
|
|
1069
|
+
# "userId": 21639,
|
|
1070
|
+
# "pair": "btc_usdt",
|
|
1071
|
+
# "pairId": 22,
|
|
1072
|
+
# "quantity": "0.00001",
|
|
1073
|
+
# "price": "50000",
|
|
1074
|
+
# "executedPrice": "37017.495008",
|
|
1075
|
+
# "fee": {
|
|
1076
|
+
# "amount": "0.00000002",
|
|
1077
|
+
# "symbol": "btc",
|
|
1078
|
+
# "userId": 21639,
|
|
1079
|
+
# "decimals": 8,
|
|
1080
|
+
# "symbolId": 11
|
|
1081
|
+
# },
|
|
1082
|
+
# "orderCid": null,
|
|
1083
|
+
# "executed": "0.00001",
|
|
1084
|
+
# "expires": null,
|
|
1085
|
+
# "baseDecimals": 8,
|
|
1086
|
+
# "quoteDecimals": 6,
|
|
1087
|
+
# "timestamp": 1700594959,
|
|
1088
|
+
# "status": "executed",
|
|
1089
|
+
# "side": "buy",
|
|
1090
|
+
# "type": "limit",
|
|
1091
|
+
# "createdAt": "2023-11-21T19:29:19.946Z",
|
|
1092
|
+
# "updatedAt": "2023-11-21T19:29:19.946Z"
|
|
1093
|
+
# },
|
|
1094
|
+
#
|
|
1095
|
+
# fetchOrder
|
|
1096
|
+
# {
|
|
1097
|
+
# "id": 106494347,
|
|
1098
|
+
# "orderId": "13214332",
|
|
1099
|
+
# "userId": 15912,
|
|
1100
|
+
# "pair": "eth_usdt",
|
|
1101
|
+
# "pairId": 2,
|
|
1102
|
+
# "quantity": "0.00448598",
|
|
1103
|
+
# "price": "2015.644995",
|
|
1104
|
+
# "executedPrice": "2015.644995",
|
|
1105
|
+
# "fee": {
|
|
1106
|
+
# "amount": "0",
|
|
1107
|
+
# "symbol": "eth",
|
|
1108
|
+
# "userId": 15912,
|
|
1109
|
+
# "decimals": 18,
|
|
1110
|
+
# "symbolId": 2,
|
|
1111
|
+
# "discountAmount": "0",
|
|
1112
|
+
# "discountSymbol": "btt",
|
|
1113
|
+
# "discountDecimals": 18,
|
|
1114
|
+
# "discountSymbolId": 5
|
|
1115
|
+
# },
|
|
1116
|
+
# "orderCid": null,
|
|
1117
|
+
# "executed": "0.00448598",
|
|
1118
|
+
# "expires": null,
|
|
1119
|
+
# "baseDecimals": 18,
|
|
1120
|
+
# "quoteDecimals": 6,
|
|
1121
|
+
# "timestamp": 1700470476,
|
|
1122
|
+
# "status": "executed",
|
|
1123
|
+
# "side": "buy",
|
|
1124
|
+
# "type": "limit",
|
|
1125
|
+
# "stopPrice": null,
|
|
1126
|
+
# "slippage": null
|
|
1127
|
+
# }
|
|
1128
|
+
#
|
|
1129
|
+
# createOrder
|
|
1130
|
+
# {
|
|
1131
|
+
# "id": 106733308,
|
|
1132
|
+
# "userId": 21639,
|
|
1133
|
+
# "quantity": "0.00001",
|
|
1134
|
+
# "pair": "btc_usdt",
|
|
1135
|
+
# "side": "buy",
|
|
1136
|
+
# "price": "50000",
|
|
1137
|
+
# "executed": "0",
|
|
1138
|
+
# "executedPrice": "0",
|
|
1139
|
+
# "status": "created",
|
|
1140
|
+
# "baseDecimals": 8,
|
|
1141
|
+
# "quoteDecimals": 6,
|
|
1142
|
+
# "pairId": 22,
|
|
1143
|
+
# "type": "limit",
|
|
1144
|
+
# "stopPrice": null,
|
|
1145
|
+
# "slippage": null,
|
|
1146
|
+
# "timestamp": "1700594959"
|
|
1147
|
+
# }
|
|
1148
|
+
#
|
|
1149
|
+
id = self.safe_string(order, 'id')
|
|
1150
|
+
marketId = self.safe_string(order, 'pair')
|
|
1151
|
+
market = self.safe_market(marketId, market)
|
|
1152
|
+
clientOrderId = self.safe_string(order, 'orderCid')
|
|
1153
|
+
timestamp = None
|
|
1154
|
+
createdAt = self.safe_string(order, 'createdAt')
|
|
1155
|
+
if createdAt is not None:
|
|
1156
|
+
timestamp = self.parse8601(createdAt)
|
|
1157
|
+
else:
|
|
1158
|
+
timestamp = self.safe_timestamp(order, 'timestamp')
|
|
1159
|
+
updatedAt = self.safe_string(order, 'updatedAt')
|
|
1160
|
+
lastUpdateTimestamp = self.parse8601(updatedAt)
|
|
1161
|
+
status = self.parse_order_status(self.safe_string(order, 'status'))
|
|
1162
|
+
type = self.parse_order_type(self.safe_string(order, 'type'))
|
|
1163
|
+
side = self.safe_string(order, 'side')
|
|
1164
|
+
feeRaw = self.safe_value(order, 'fee')
|
|
1165
|
+
price = self.safe_string(order, 'price')
|
|
1166
|
+
stopPrice = self.safe_string(order, 'stopPrice')
|
|
1167
|
+
amount = self.safe_string(order, 'quantity')
|
|
1168
|
+
filled = self.safe_string(order, 'executed')
|
|
1169
|
+
fee = None
|
|
1170
|
+
if feeRaw is not None:
|
|
1171
|
+
feeCost = self.safe_string(feeRaw, 'amount')
|
|
1172
|
+
feeCurrencyId = self.safe_string(feeRaw, 'symbol')
|
|
1173
|
+
fee = {
|
|
1174
|
+
'currency': self.safe_currency_code(feeCurrencyId),
|
|
1175
|
+
'cost': feeCost,
|
|
1176
|
+
'rate': None,
|
|
1177
|
+
}
|
|
1178
|
+
return self.safe_order({
|
|
1179
|
+
'id': id,
|
|
1180
|
+
'clientOrderId': clientOrderId,
|
|
1181
|
+
'timestamp': timestamp,
|
|
1182
|
+
'datetime': self.iso8601(timestamp),
|
|
1183
|
+
'lastTradeTimestamp': None,
|
|
1184
|
+
'lastUpdateTimestamp': lastUpdateTimestamp,
|
|
1185
|
+
'status': status,
|
|
1186
|
+
'symbol': market['symbol'],
|
|
1187
|
+
'type': type,
|
|
1188
|
+
'timeInForce': 'GTC',
|
|
1189
|
+
'side': side,
|
|
1190
|
+
'price': price,
|
|
1191
|
+
'stopPrice': stopPrice,
|
|
1192
|
+
'triggerPrice': stopPrice,
|
|
1193
|
+
'average': None,
|
|
1194
|
+
'amount': amount,
|
|
1195
|
+
'cost': None,
|
|
1196
|
+
'filled': filled,
|
|
1197
|
+
'remaining': None,
|
|
1198
|
+
'fee': fee,
|
|
1199
|
+
'trades': None,
|
|
1200
|
+
'info': order,
|
|
1201
|
+
'postOnly': False,
|
|
1202
|
+
}, market)
|
|
1203
|
+
|
|
1204
|
+
def parse_order_status(self, status: Str):
|
|
1205
|
+
statuses: dict = {
|
|
1206
|
+
'accepted': 'open',
|
|
1207
|
+
'executed': 'closed',
|
|
1208
|
+
'cancelled': 'canceled',
|
|
1209
|
+
'partiallyCancelled': 'canceled',
|
|
1210
|
+
'delete': 'rejected',
|
|
1211
|
+
'inactive': 'rejected',
|
|
1212
|
+
'executing': 'open',
|
|
1213
|
+
'created': 'open',
|
|
1214
|
+
}
|
|
1215
|
+
return self.safe_string(statuses, status, status)
|
|
1216
|
+
|
|
1217
|
+
def parse_order_type(self, status):
|
|
1218
|
+
statuses: dict = {
|
|
1219
|
+
'market': 'market',
|
|
1220
|
+
'limit': 'limit',
|
|
1221
|
+
}
|
|
1222
|
+
return self.safe_string(statuses, status, status)
|
|
1223
|
+
|
|
1224
|
+
def parse_value_to_pricision(self, valueObject, valueKey, preciseObject, precisionKey):
|
|
1225
|
+
valueRawString = self.safe_string(valueObject, valueKey)
|
|
1226
|
+
precisionRawString = self.safe_string(preciseObject, precisionKey)
|
|
1227
|
+
if valueRawString is None or precisionRawString is None:
|
|
1228
|
+
return None
|
|
1229
|
+
precisionString = self.parse_precision(precisionRawString)
|
|
1230
|
+
return Precise.string_mul(valueRawString, precisionString)
|
|
1231
|
+
|
|
1232
|
+
def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
|
1233
|
+
"""
|
|
1234
|
+
fetches price tickers for multiple markets, statistical calculations with the information calculated over the past 24 hours each market
|
|
1235
|
+
:see: https://bit.team/trade/api/documentation#/CMC/getTradeApiCmcSummary
|
|
1236
|
+
:param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
|
|
1237
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
1238
|
+
:returns dict: a dictionary of `ticker structures <https://github.com/ccxt/ccxt/wiki/Manual#ticker-structure>`
|
|
1239
|
+
"""
|
|
1240
|
+
self.load_markets()
|
|
1241
|
+
response = self.publicGetTradeApiCmcSummary()
|
|
1242
|
+
#
|
|
1243
|
+
# [
|
|
1244
|
+
# {
|
|
1245
|
+
# "trading_pairs": "BTC_USDT",
|
|
1246
|
+
# "base_currency": "BTC",
|
|
1247
|
+
# "quote_currency": "USDT",
|
|
1248
|
+
# "last_price": 37669.955001,
|
|
1249
|
+
# "lowest_ask": 37670.055,
|
|
1250
|
+
# "highest_bid": 37669.955,
|
|
1251
|
+
# "base_volume": 6.81156888,
|
|
1252
|
+
# "quote_volume": 257400.516878529,
|
|
1253
|
+
# "price_change_percent_24h": -0.29,
|
|
1254
|
+
# "highest_price_24h": 38389.994463,
|
|
1255
|
+
# "lowest_price_24h": 37574.894999
|
|
1256
|
+
# },
|
|
1257
|
+
# {
|
|
1258
|
+
# "trading_pairs": "BNB_USDT",
|
|
1259
|
+
# "base_currency": "BNB",
|
|
1260
|
+
# "quote_currency": "USDT",
|
|
1261
|
+
# "last_price": 233.525142,
|
|
1262
|
+
# "lowest_ask": 233.675,
|
|
1263
|
+
# "highest_bid": 233.425,
|
|
1264
|
+
# "base_volume": 245.0199339,
|
|
1265
|
+
# "quote_volume": 57356.91823827642,
|
|
1266
|
+
# "price_change_percent_24h": -0.32,
|
|
1267
|
+
# "highest_price_24h": 236.171123,
|
|
1268
|
+
# "lowest_price_24h": 231.634637
|
|
1269
|
+
# },
|
|
1270
|
+
# ...
|
|
1271
|
+
# ]
|
|
1272
|
+
#
|
|
1273
|
+
tickers = []
|
|
1274
|
+
if not isinstance(response, list):
|
|
1275
|
+
response = []
|
|
1276
|
+
for i in range(0, len(response)):
|
|
1277
|
+
rawTicker = response[i]
|
|
1278
|
+
ticker = self.parse_ticker(rawTicker)
|
|
1279
|
+
tickers.append(ticker)
|
|
1280
|
+
return self.filter_by_array_tickers(tickers, 'symbol', symbols)
|
|
1281
|
+
|
|
1282
|
+
def fetch_ticker(self, symbol: str, params={}) -> Ticker:
|
|
1283
|
+
"""
|
|
1284
|
+
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
|
1285
|
+
:see: https://bit.team/trade/api/documentation#/PUBLIC/getTradeApiPairName
|
|
1286
|
+
:param str symbol: unified symbol of the market to fetch the ticker for
|
|
1287
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
1288
|
+
:returns dict: a `ticker structure <https://github.com/ccxt/ccxt/wiki/Manual#ticker-structure>`
|
|
1289
|
+
"""
|
|
1290
|
+
self.load_markets()
|
|
1291
|
+
market = self.market(symbol)
|
|
1292
|
+
request: dict = {
|
|
1293
|
+
'name': market['id'],
|
|
1294
|
+
}
|
|
1295
|
+
response = self.publicGetTradeApiPairName(self.extend(request, params))
|
|
1296
|
+
#
|
|
1297
|
+
# {
|
|
1298
|
+
# "ok": True,
|
|
1299
|
+
# "result": {
|
|
1300
|
+
# "pair": {
|
|
1301
|
+
# "id": 2,
|
|
1302
|
+
# "name": "eth_usdt",
|
|
1303
|
+
# "baseAssetId": 2,
|
|
1304
|
+
# "quoteAssetId": 3,
|
|
1305
|
+
# "fullName": "ETH USDT",
|
|
1306
|
+
# "description": "ETH USDT",
|
|
1307
|
+
# "lastBuy": "1976.715012",
|
|
1308
|
+
# "lastSell": "1971.995006",
|
|
1309
|
+
# "lastPrice": "1976.715012",
|
|
1310
|
+
# "change24": "1.02",
|
|
1311
|
+
# "volume24": 24.0796457,
|
|
1312
|
+
# "volume24USD": 44282.347995912205,
|
|
1313
|
+
# "active": True,
|
|
1314
|
+
# "baseStep": 8,
|
|
1315
|
+
# "quoteStep": 6,
|
|
1316
|
+
# "status": 1,
|
|
1317
|
+
# "settings": {
|
|
1318
|
+
# "limit_usd": "0.1",
|
|
1319
|
+
# "price_max": "10000000000000",
|
|
1320
|
+
# "price_min": "1",
|
|
1321
|
+
# "price_tick": "1",
|
|
1322
|
+
# "pricescale": 10000,
|
|
1323
|
+
# "lot_size_max": "1000000000000000",
|
|
1324
|
+
# "lot_size_min": "1",
|
|
1325
|
+
# "lot_size_tick": "1",
|
|
1326
|
+
# "price_view_min": 6,
|
|
1327
|
+
# "default_slippage": 10,
|
|
1328
|
+
# "lot_size_view_min": 6
|
|
1329
|
+
# },
|
|
1330
|
+
# "asks": [
|
|
1331
|
+
# {
|
|
1332
|
+
# "price": "1976.405003",
|
|
1333
|
+
# "quantity": "0.0051171",
|
|
1334
|
+
# "amount": "10.1134620408513"
|
|
1335
|
+
# },
|
|
1336
|
+
# {
|
|
1337
|
+
# "price": "1976.405013",
|
|
1338
|
+
# "quantity": "0.09001559",
|
|
1339
|
+
# "amount": "177.90726332415267"
|
|
1340
|
+
# },
|
|
1341
|
+
# {
|
|
1342
|
+
# "price": "2010.704988",
|
|
1343
|
+
# "quantity": "0.00127892",
|
|
1344
|
+
# "amount": "2.57153082325296"
|
|
1345
|
+
# }
|
|
1346
|
+
# ],
|
|
1347
|
+
# "bids": [
|
|
1348
|
+
# {
|
|
1349
|
+
# "price": "1976.404988",
|
|
1350
|
+
# "quantity": "0.09875861",
|
|
1351
|
+
# "amount": "195.18700941194668"
|
|
1352
|
+
# },
|
|
1353
|
+
# {
|
|
1354
|
+
# "price": "1905.472973",
|
|
1355
|
+
# "quantity": "0.00263591",
|
|
1356
|
+
# "amount": "5.02265526426043"
|
|
1357
|
+
# },
|
|
1358
|
+
# {
|
|
1359
|
+
# "price": "1904.274973",
|
|
1360
|
+
# "quantity": "0.09425304",
|
|
1361
|
+
# "amount": "179.48370520116792"
|
|
1362
|
+
# }
|
|
1363
|
+
# ],
|
|
1364
|
+
# "updateId": "78",
|
|
1365
|
+
# "timeStart": "2021-01-28T09:19:30.706Z",
|
|
1366
|
+
# "makerFee": 200,
|
|
1367
|
+
# "takerFee": 200,
|
|
1368
|
+
# "quoteVolume24": 49125.1374009045,
|
|
1369
|
+
# "lowPrice24": 1966.704999,
|
|
1370
|
+
# "highPrice24": 2080.354997,
|
|
1371
|
+
# "baseCurrency": {
|
|
1372
|
+
# "id": 2,
|
|
1373
|
+
# "status": 1,
|
|
1374
|
+
# "symbol": "eth",
|
|
1375
|
+
# "title": "Ethereum",
|
|
1376
|
+
# "logoURL": "https://ethereum.org/static/6b935ac0e6194247347855dc3d328e83/34ca5/eth-diamond-black.png",
|
|
1377
|
+
# "isDiscount": False,
|
|
1378
|
+
# "address": "https://ethereum.org/",
|
|
1379
|
+
# "description": "Ethereum ETH",
|
|
1380
|
+
# "decimals": 18,
|
|
1381
|
+
# "blockChain": "Ethereum",
|
|
1382
|
+
# "precision": 8,
|
|
1383
|
+
# "currentRate": null,
|
|
1384
|
+
# "active": True,
|
|
1385
|
+
# "timeStart": "2021-01-28T08:57:41.719Z",
|
|
1386
|
+
# "txLimits": {
|
|
1387
|
+
# "minDeposit": "100000000000000",
|
|
1388
|
+
# "maxWithdraw": "10000000000000000000000",
|
|
1389
|
+
# "minWithdraw": "20000000000000000",
|
|
1390
|
+
# "withdrawCommissionFixed": "5000000000000000",
|
|
1391
|
+
# "withdrawCommissionPercentage": "NaN"
|
|
1392
|
+
# },
|
|
1393
|
+
# "type": "crypto",
|
|
1394
|
+
# "typeNetwork": "internalGW",
|
|
1395
|
+
# "icon": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMTVDMCA2LjcxNTczIDYuNzE1NzMgMCAxNSAwVjBDMjMuMjg0MyAwIDMwIDYuNzE1NzMgMzAgMTVWMTVDMzAgMjMuMjg0MyAyMy4yODQzIDMwIDE1IDMwVjMwQzYuNzE1NzMgMzAgMCAyMy4yODQzIDAgMTVWMTVaIiBmaWxsPSJibGFjayIvPgo8cGF0aCBkPSJNMTQuOTU1NyAxOS45NzM5TDkgMTYuMzUwOUwxNC45NTIxIDI1TDIwLjkxMDkgMTYuMzUwOUwxNC45NTIxIDE5Ljk3MzlIMTQuOTU1N1pNMTUuMDQ0MyA1TDkuMDkwOTUgMTUuMTg1M0wxNS4wNDQzIDE4LjgxNDZMMjEgMTUuMTg5MUwxNS4wNDQzIDVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K",
|
|
1396
|
+
# "idSorting": 2,
|
|
1397
|
+
# "links": [
|
|
1398
|
+
# {
|
|
1399
|
+
# "tx": "https://etherscan.io/tx/",
|
|
1400
|
+
# "address": "https://etherscan.io/address/",
|
|
1401
|
+
# "blockChain": "Ethereum"
|
|
1402
|
+
# }
|
|
1403
|
+
# ],
|
|
1404
|
+
# "clientTxLimits": {
|
|
1405
|
+
# "minDeposit": "0.0001",
|
|
1406
|
+
# "minWithdraw": "0.02",
|
|
1407
|
+
# "maxWithdraw": "10000",
|
|
1408
|
+
# "withdrawCommissionPercentage": "NaN",
|
|
1409
|
+
# "withdrawCommissionFixed": "0.005"
|
|
1410
|
+
# }
|
|
1411
|
+
# },
|
|
1412
|
+
# "quoteCurrency": {
|
|
1413
|
+
# "id": 3,
|
|
1414
|
+
# "status": 1,
|
|
1415
|
+
# "symbol": "usdt",
|
|
1416
|
+
# "title": "Tether USD",
|
|
1417
|
+
# "logoURL": "https://cryptologos.cc/logos/tether-usdt-logo.png?v=010",
|
|
1418
|
+
# "isDiscount": False,
|
|
1419
|
+
# "address": "https://tether.to/",
|
|
1420
|
+
# "description": "Tether USD",
|
|
1421
|
+
# "decimals": 6,
|
|
1422
|
+
# "blockChain": "",
|
|
1423
|
+
# "precision": 6,
|
|
1424
|
+
# "currentRate": null,
|
|
1425
|
+
# "active": True,
|
|
1426
|
+
# "timeStart": "2021-01-28T09:04:17.170Z",
|
|
1427
|
+
# "txLimits": {
|
|
1428
|
+
# "minDeposit": "1000",
|
|
1429
|
+
# "maxWithdraw": "100000000000",
|
|
1430
|
+
# "minWithdraw": "1000000",
|
|
1431
|
+
# "withdrawCommissionFixed": {
|
|
1432
|
+
# "Tron": "2000000",
|
|
1433
|
+
# "Binance": "2000000000000000000",
|
|
1434
|
+
# "Ethereum": "20000000"
|
|
1435
|
+
# },
|
|
1436
|
+
# "withdrawCommissionPercentage": "NaN"
|
|
1437
|
+
# },
|
|
1438
|
+
# "type": "crypto",
|
|
1439
|
+
# "typeNetwork": "internalGW",
|
|
1440
|
+
# "icon": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMTVDMCA2LjcxNTczIDYuNzE1NzMgMCAxNSAwVjBDMjMuMjg0MyAwIDMwIDYuNzE1NzMgMzAgMTVWMTVDMzAgMjMuMjg0MyAyMy4yODQzIDMwIDE1IDMwVjMwQzYuNzE1NzMgMzAgMCAyMy4yODQzIDAgMTVWMTVaIiBmaWxsPSIjNkZBNjg4Ii8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjMgN0g3VjExSDEzVjEyLjA2MkM4Ljk5MjAyIDEyLjMxNDYgNiAxMy4zMTAyIDYgMTQuNUM2IDE1LjY4OTggOC45OTIwMiAxNi42ODU0IDEzIDE2LjkzOFYyM0gxN1YxNi45MzhDMjEuMDA4IDE2LjY4NTQgMjQgMTUuNjg5OCAyNCAxNC41QzI0IDEzLjMxMDIgMjEuMDA4IDEyLjMxNDYgMTcgMTIuMDYyVjExSDIzVjdaTTcuNSAxNC41QzcuNSAxMy40NjA2IDkuMzMzMzMgMTIuMzY4IDEzIDEyLjA3NTZWMTUuNUgxN1YxMi4wNzU5QzIwLjkzODQgMTIuMzkyNyAyMi41IDEzLjYzMzkgMjIuNSAxNC41QzIyLjUgMTUuMzIyIDIwLjAwMDggMTUuODA2MSAxNyAxNS45NTI1QzE1LjcwODIgMTYuMDQ2MiAxMy43OTUxIDE1Ljk4MjYgMTMgMTUuOTM5MUM5Ljk5OTIxIDE1Ljc1NTkgNy41IDE1LjE4MDkgNy41IDE0LjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K",
|
|
1441
|
+
# "idSorting": 0,
|
|
1442
|
+
# "links": [
|
|
1443
|
+
# {
|
|
1444
|
+
# "tx": "https://etherscan.io/tx/",
|
|
1445
|
+
# "address": "https://etherscan.io/address/",
|
|
1446
|
+
# "blockChain": "Ethereum"
|
|
1447
|
+
# },
|
|
1448
|
+
# {
|
|
1449
|
+
# "tx": "https://tronscan.org/#/transaction/",
|
|
1450
|
+
# "address": "https://tronscan.org/#/address/",
|
|
1451
|
+
# "blockChain": "Tron"
|
|
1452
|
+
# },
|
|
1453
|
+
# {
|
|
1454
|
+
# "tx": "https://bscscan.com/tx/",
|
|
1455
|
+
# "address": "https://bscscan.com/address/",
|
|
1456
|
+
# "blockChain": "Binance"
|
|
1457
|
+
# }
|
|
1458
|
+
# ],
|
|
1459
|
+
# "clientTxLimits": {
|
|
1460
|
+
# "minDeposit": "0.001",
|
|
1461
|
+
# "minWithdraw": "1",
|
|
1462
|
+
# "maxWithdraw": "100000",
|
|
1463
|
+
# "withdrawCommissionPercentage": "NaN",
|
|
1464
|
+
# "withdrawCommissionFixed": {
|
|
1465
|
+
# "Tron": "2",
|
|
1466
|
+
# "Binance": "2",
|
|
1467
|
+
# "Ethereum": "20"
|
|
1468
|
+
# }
|
|
1469
|
+
# }
|
|
1470
|
+
# },
|
|
1471
|
+
# "quantities": {
|
|
1472
|
+
# "asks": "5.58760757",
|
|
1473
|
+
# "bids": "2226.98663823032198"
|
|
1474
|
+
# }
|
|
1475
|
+
# }
|
|
1476
|
+
# }
|
|
1477
|
+
# }
|
|
1478
|
+
#
|
|
1479
|
+
result = self.safe_value(response, 'result', {})
|
|
1480
|
+
pair = self.safe_dict(result, 'pair', {})
|
|
1481
|
+
return self.parse_ticker(pair, market)
|
|
1482
|
+
|
|
1483
|
+
def parse_ticker(self, ticker: dict, market: Market = None) -> Ticker:
|
|
1484
|
+
#
|
|
1485
|
+
# fetchTicker
|
|
1486
|
+
# {
|
|
1487
|
+
# "id": 2,
|
|
1488
|
+
# "name": "eth_usdt",
|
|
1489
|
+
# "baseAssetId": 2,
|
|
1490
|
+
# "quoteAssetId": 3,
|
|
1491
|
+
# "fullName": "ETH USDT",
|
|
1492
|
+
# "description": "ETH USDT",
|
|
1493
|
+
# "lastBuy": "1976.715012",
|
|
1494
|
+
# "lastSell": "1971.995006",
|
|
1495
|
+
# "lastPrice": "1976.715012",
|
|
1496
|
+
# "change24": "1.02",
|
|
1497
|
+
# "volume24": 24.0796457,
|
|
1498
|
+
# "volume24USD": 44282.347995912205,
|
|
1499
|
+
# "active": True,
|
|
1500
|
+
# "baseStep": 8,
|
|
1501
|
+
# "quoteStep": 6,
|
|
1502
|
+
# "status": 1,
|
|
1503
|
+
# "asks": [
|
|
1504
|
+
# {
|
|
1505
|
+
# "price": "1976.405003",
|
|
1506
|
+
# "quantity": "0.0051171",
|
|
1507
|
+
# "amount": "10.1134620408513"
|
|
1508
|
+
# },
|
|
1509
|
+
# {
|
|
1510
|
+
# "price": "1976.405013",
|
|
1511
|
+
# "quantity": "0.09001559",
|
|
1512
|
+
# "amount": "177.90726332415267"
|
|
1513
|
+
# },
|
|
1514
|
+
# {
|
|
1515
|
+
# "price": "2010.704988",
|
|
1516
|
+
# "quantity": "0.00127892",
|
|
1517
|
+
# "amount": "2.57153082325296"
|
|
1518
|
+
# }
|
|
1519
|
+
# ...
|
|
1520
|
+
# ],
|
|
1521
|
+
# "bids": [
|
|
1522
|
+
# {
|
|
1523
|
+
# "price": "1976.404988",
|
|
1524
|
+
# "quantity": "0.09875861",
|
|
1525
|
+
# "amount": "195.18700941194668"
|
|
1526
|
+
# },
|
|
1527
|
+
# {
|
|
1528
|
+
# "price": "1905.472973",
|
|
1529
|
+
# "quantity": "0.00263591",
|
|
1530
|
+
# "amount": "5.02265526426043"
|
|
1531
|
+
# },
|
|
1532
|
+
# {
|
|
1533
|
+
# "price": "1904.274973",
|
|
1534
|
+
# "quantity": "0.09425304",
|
|
1535
|
+
# "amount": "179.48370520116792"
|
|
1536
|
+
# }
|
|
1537
|
+
# ...
|
|
1538
|
+
# ],
|
|
1539
|
+
# "updateId": "78",
|
|
1540
|
+
# "timeStart": "2021-01-28T09:19:30.706Z",
|
|
1541
|
+
# "makerFee": 200,
|
|
1542
|
+
# "takerFee": 200,
|
|
1543
|
+
# "quoteVolume24": 49125.1374009045,
|
|
1544
|
+
# "lowPrice24": 1966.704999,
|
|
1545
|
+
# "highPrice24": 2080.354997,
|
|
1546
|
+
# ...
|
|
1547
|
+
# }
|
|
1548
|
+
#
|
|
1549
|
+
# fetchTickers
|
|
1550
|
+
# {
|
|
1551
|
+
# "trading_pairs": "BTC_USDT",
|
|
1552
|
+
# "base_currency": "BTC",
|
|
1553
|
+
# "quote_currency": "USDT",
|
|
1554
|
+
# "last_price": 37669.955001,
|
|
1555
|
+
# "lowest_ask": 37670.055,
|
|
1556
|
+
# "highest_bid": 37669.955,
|
|
1557
|
+
# "base_volume": 6.81156888,
|
|
1558
|
+
# "quote_volume": 257400.516878529,
|
|
1559
|
+
# "price_change_percent_24h": -0.29,
|
|
1560
|
+
# "highest_price_24h": 38389.994463,
|
|
1561
|
+
# "lowest_price_24h": 37574.894999
|
|
1562
|
+
# }
|
|
1563
|
+
marketId = self.safe_string_lower(ticker, 'trading_pairs')
|
|
1564
|
+
market = self.safe_market(marketId, market)
|
|
1565
|
+
bestBidPrice = None
|
|
1566
|
+
bestAskPrice = None
|
|
1567
|
+
bestBidVolume = None
|
|
1568
|
+
bestAskVolume = None
|
|
1569
|
+
bids = self.safe_value(ticker, 'bids')
|
|
1570
|
+
asks = self.safe_value(ticker, 'asks')
|
|
1571
|
+
if (bids is not None) and (isinstance(bids, list)) and (asks is not None) and (isinstance(asks, list)):
|
|
1572
|
+
bestBid = self.safe_value(bids, 0, {})
|
|
1573
|
+
bestBidPrice = self.safe_string(bestBid, 'price')
|
|
1574
|
+
bestBidVolume = self.safe_string(bestBid, 'quantity')
|
|
1575
|
+
bestAsk = self.safe_value(asks, 0, {})
|
|
1576
|
+
bestAskPrice = self.safe_string(bestAsk, 'price')
|
|
1577
|
+
bestAskVolume = self.safe_string(bestAsk, 'quantity')
|
|
1578
|
+
else:
|
|
1579
|
+
bestBidPrice = self.safe_string(ticker, 'highest_bid')
|
|
1580
|
+
bestAskPrice = self.safe_string(ticker, 'lowest_ask')
|
|
1581
|
+
baseVolume = self.safe_string_2(ticker, 'volume24', 'base_volume')
|
|
1582
|
+
quoteVolume = self.safe_string_2(ticker, 'quoteVolume24', 'quote_volume')
|
|
1583
|
+
high = self.safe_string_2(ticker, 'highPrice24', 'highest_price_24h')
|
|
1584
|
+
low = self.safe_string_2(ticker, 'lowPrice24', 'lowest_price_24h')
|
|
1585
|
+
close = self.safe_string_2(ticker, 'lastPrice', 'last_price')
|
|
1586
|
+
changePcnt = self.safe_string_2(ticker, 'change24', 'price_change_percent_24h')
|
|
1587
|
+
return self.safe_ticker({
|
|
1588
|
+
'symbol': market['symbol'],
|
|
1589
|
+
'timestamp': None,
|
|
1590
|
+
'datetime': None,
|
|
1591
|
+
'open': None,
|
|
1592
|
+
'high': high,
|
|
1593
|
+
'low': low,
|
|
1594
|
+
'close': close,
|
|
1595
|
+
'bid': bestBidPrice,
|
|
1596
|
+
'bidVolume': bestBidVolume,
|
|
1597
|
+
'ask': bestAskPrice,
|
|
1598
|
+
'askVolume': bestAskVolume,
|
|
1599
|
+
'vwap': None,
|
|
1600
|
+
'previousClose': None,
|
|
1601
|
+
'change': None,
|
|
1602
|
+
'percentage': changePcnt,
|
|
1603
|
+
'average': None,
|
|
1604
|
+
'baseVolume': baseVolume,
|
|
1605
|
+
'quoteVolume': quoteVolume,
|
|
1606
|
+
'info': ticker,
|
|
1607
|
+
}, market)
|
|
1608
|
+
|
|
1609
|
+
def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
|
1610
|
+
"""
|
|
1611
|
+
get the list of most recent trades for a particular symbol
|
|
1612
|
+
:see: https://bit.team/trade/api/documentation#/CMC/getTradeApiCmcTradesPair
|
|
1613
|
+
:param str symbol: unified symbol of the market to fetch trades for
|
|
1614
|
+
:param int [since]: timestamp in ms of the earliest trade to fetch
|
|
1615
|
+
:param int [limit]: the maximum amount of trades to fetch
|
|
1616
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
1617
|
+
:returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
|
|
1618
|
+
"""
|
|
1619
|
+
self.load_markets()
|
|
1620
|
+
market = self.market(symbol)
|
|
1621
|
+
request: dict = {
|
|
1622
|
+
'pair': market['id'],
|
|
1623
|
+
}
|
|
1624
|
+
response = self.publicGetTradeApiCmcTradesPair(self.extend(request, params))
|
|
1625
|
+
#
|
|
1626
|
+
# [
|
|
1627
|
+
# {
|
|
1628
|
+
# "trade_id": 34970337,
|
|
1629
|
+
# "price": 37769.994793,
|
|
1630
|
+
# "base_volume": 0.00119062,
|
|
1631
|
+
# "quote_volume": 44.96971120044166,
|
|
1632
|
+
# "timestamp": 1700827234000,
|
|
1633
|
+
# "type": "buy"
|
|
1634
|
+
# },
|
|
1635
|
+
# {
|
|
1636
|
+
# "trade_id": 34970347,
|
|
1637
|
+
# "price": 37769.634497,
|
|
1638
|
+
# "base_volume": 0.00104009,
|
|
1639
|
+
# "quote_volume": 39.28381914398473,
|
|
1640
|
+
# "timestamp": 1700827248000,
|
|
1641
|
+
# "type": "buy"
|
|
1642
|
+
# },
|
|
1643
|
+
# ...
|
|
1644
|
+
# ]
|
|
1645
|
+
#
|
|
1646
|
+
return self.parse_trades(response, market, since, limit)
|
|
1647
|
+
|
|
1648
|
+
def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
1649
|
+
"""
|
|
1650
|
+
fetch all trades made by the user
|
|
1651
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/getTradeApiCcxtTradesofuser
|
|
1652
|
+
:param str symbol: unified market symbol
|
|
1653
|
+
:param int [since]: the earliest time in ms to fetch trades for
|
|
1654
|
+
:param int [limit]: the maximum number of trades structures to retrieve(default 10)
|
|
1655
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
1656
|
+
:returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#trade-structure>`
|
|
1657
|
+
"""
|
|
1658
|
+
self.load_markets()
|
|
1659
|
+
request: dict = {}
|
|
1660
|
+
market = None
|
|
1661
|
+
if symbol is not None:
|
|
1662
|
+
market = self.market(symbol)
|
|
1663
|
+
request['pairId'] = market['numericId']
|
|
1664
|
+
if limit is not None:
|
|
1665
|
+
request['limit'] = limit
|
|
1666
|
+
response = self.privateGetTradeApiCcxtTradesOfUser(self.extend(request, params))
|
|
1667
|
+
#
|
|
1668
|
+
# {
|
|
1669
|
+
# "ok": True,
|
|
1670
|
+
# "result": {
|
|
1671
|
+
# "count": 3,
|
|
1672
|
+
# "trades": [
|
|
1673
|
+
# {
|
|
1674
|
+
# "id": 34880724,
|
|
1675
|
+
# "tradeId": "4368041",
|
|
1676
|
+
# "makerOrderId": 106742914,
|
|
1677
|
+
# "takerOrderId": 106761614,
|
|
1678
|
+
# "pairId": 2,
|
|
1679
|
+
# "quantity": "0.00955449",
|
|
1680
|
+
# "price": "1993.674994",
|
|
1681
|
+
# "isBuyerMaker": True,
|
|
1682
|
+
# "baseDecimals": 18,
|
|
1683
|
+
# "quoteDecimals": 6,
|
|
1684
|
+
# "side": "sell",
|
|
1685
|
+
# "timestamp": 1700615250,
|
|
1686
|
+
# "rewarded": True,
|
|
1687
|
+
# "makerUserId": 21639,
|
|
1688
|
+
# "takerUserId": 15913,
|
|
1689
|
+
# "baseCurrencyId": 2,
|
|
1690
|
+
# "quoteCurrencyId": 3,
|
|
1691
|
+
# "feeMaker": {
|
|
1692
|
+
# "amount": "0.0000191",
|
|
1693
|
+
# "symbol": "eth",
|
|
1694
|
+
# "userId": 21639,
|
|
1695
|
+
# "decimals": 18,
|
|
1696
|
+
# "symbolId": 2
|
|
1697
|
+
# },
|
|
1698
|
+
# "feeTaker": {
|
|
1699
|
+
# "amount": "0",
|
|
1700
|
+
# "symbol": "usdt",
|
|
1701
|
+
# "userId": 15913,
|
|
1702
|
+
# "decimals": 6,
|
|
1703
|
+
# "symbolId": 3,
|
|
1704
|
+
# "discountAmount": "0",
|
|
1705
|
+
# "discountSymbol": "btt",
|
|
1706
|
+
# "discountDecimals": 18,
|
|
1707
|
+
# "discountSymbolId": 5
|
|
1708
|
+
# },
|
|
1709
|
+
# "pair": "eth_usdt",
|
|
1710
|
+
# "createdAt": "2023-11-22T01:07:30.593Z",
|
|
1711
|
+
# "updatedAt": "2023-11-22T01:10:00.117Z",
|
|
1712
|
+
# "isCurrentSide": "maker"
|
|
1713
|
+
# },
|
|
1714
|
+
# {
|
|
1715
|
+
# "id": 34875793,
|
|
1716
|
+
# "tradeId": "4368010",
|
|
1717
|
+
# "makerOrderId": 106742914,
|
|
1718
|
+
# "takerOrderId": 106745926,
|
|
1719
|
+
# "pairId": 2,
|
|
1720
|
+
# "quantity": "0.0027193",
|
|
1721
|
+
# "price": "1993.674994",
|
|
1722
|
+
# "isBuyerMaker": True,
|
|
1723
|
+
# "baseDecimals": 18,
|
|
1724
|
+
# "quoteDecimals": 6,
|
|
1725
|
+
# "side": "sell",
|
|
1726
|
+
# "timestamp": 1700602983,
|
|
1727
|
+
# "rewarded": True,
|
|
1728
|
+
# "makerUserId": 21639,
|
|
1729
|
+
# "takerUserId": 15912,
|
|
1730
|
+
# "baseCurrencyId": 2,
|
|
1731
|
+
# "quoteCurrencyId": 3,
|
|
1732
|
+
# "feeMaker": {
|
|
1733
|
+
# "amount": "0.00000543",
|
|
1734
|
+
# "symbol": "eth",
|
|
1735
|
+
# "userId": 21639,
|
|
1736
|
+
# "decimals": 18,
|
|
1737
|
+
# "symbolId": 2
|
|
1738
|
+
# },
|
|
1739
|
+
# "feeTaker": {
|
|
1740
|
+
# "amount": "0",
|
|
1741
|
+
# "symbol": "usdt",
|
|
1742
|
+
# "userId": 15912,
|
|
1743
|
+
# "decimals": 6,
|
|
1744
|
+
# "symbolId": 3,
|
|
1745
|
+
# "discountAmount": "0",
|
|
1746
|
+
# "discountSymbol": "btt",
|
|
1747
|
+
# "discountDecimals": 18,
|
|
1748
|
+
# "discountSymbolId": 5
|
|
1749
|
+
# },
|
|
1750
|
+
# "pair": "eth_usdt",
|
|
1751
|
+
# "createdAt": "2023-11-21T21:43:02.758Z",
|
|
1752
|
+
# "updatedAt": "2023-11-21T21:45:00.147Z",
|
|
1753
|
+
# "isCurrentSide": "maker"
|
|
1754
|
+
# },
|
|
1755
|
+
# {
|
|
1756
|
+
# "id": 34871727,
|
|
1757
|
+
# "tradeId": "3441840",
|
|
1758
|
+
# "makerOrderId": 106733299,
|
|
1759
|
+
# "takerOrderId": 106733308,
|
|
1760
|
+
# "pairId": 22,
|
|
1761
|
+
# "quantity": "0.00001",
|
|
1762
|
+
# "price": "37017.495008",
|
|
1763
|
+
# "isBuyerMaker": False,
|
|
1764
|
+
# "baseDecimals": 8,
|
|
1765
|
+
# "quoteDecimals": 6,
|
|
1766
|
+
# "side": "buy",
|
|
1767
|
+
# "timestamp": 1700594960,
|
|
1768
|
+
# "rewarded": True,
|
|
1769
|
+
# "makerUserId": 15909,
|
|
1770
|
+
# "takerUserId": 21639,
|
|
1771
|
+
# "baseCurrencyId": 11,
|
|
1772
|
+
# "quoteCurrencyId": 3,
|
|
1773
|
+
# "feeMaker": {
|
|
1774
|
+
# "amount": "0",
|
|
1775
|
+
# "symbol": "usdt",
|
|
1776
|
+
# "userId": 15909,
|
|
1777
|
+
# "decimals": 6,
|
|
1778
|
+
# "symbolId": 3,
|
|
1779
|
+
# "discountAmount": "0",
|
|
1780
|
+
# "discountSymbol": "btt",
|
|
1781
|
+
# "discountDecimals": 18,
|
|
1782
|
+
# "discountSymbolId": 5
|
|
1783
|
+
# },
|
|
1784
|
+
# "feeTaker": {
|
|
1785
|
+
# "amount": "0.00000002",
|
|
1786
|
+
# "symbol": "btc",
|
|
1787
|
+
# "userId": 21639,
|
|
1788
|
+
# "decimals": 8,
|
|
1789
|
+
# "symbolId": 11
|
|
1790
|
+
# },
|
|
1791
|
+
# "pair": "btc_usdt",
|
|
1792
|
+
# "createdAt": "2023-11-21T19:29:20.092Z",
|
|
1793
|
+
# "updatedAt": "2023-11-21T19:30:00.159Z"
|
|
1794
|
+
# "isCurrentSide": "taker"
|
|
1795
|
+
# }
|
|
1796
|
+
# ]
|
|
1797
|
+
# }
|
|
1798
|
+
# }
|
|
1799
|
+
#
|
|
1800
|
+
result = self.safe_value(response, 'result', {})
|
|
1801
|
+
trades = self.safe_list(result, 'trades', [])
|
|
1802
|
+
return self.parse_trades(trades, market, since, limit)
|
|
1803
|
+
|
|
1804
|
+
def parse_trade(self, trade: dict, market: Market = None) -> Trade:
|
|
1805
|
+
#
|
|
1806
|
+
# fetchTrades
|
|
1807
|
+
# {
|
|
1808
|
+
# "trade_id": 34970337,
|
|
1809
|
+
# "price": 37769.994793,
|
|
1810
|
+
# "base_volume": 0.00119062,
|
|
1811
|
+
# "quote_volume": 44.96971120044166,
|
|
1812
|
+
# "timestamp": 1700827234000,
|
|
1813
|
+
# "type": "buy"
|
|
1814
|
+
# },
|
|
1815
|
+
#
|
|
1816
|
+
# fetchMyTrades
|
|
1817
|
+
# {
|
|
1818
|
+
# "id": 34875793,
|
|
1819
|
+
# "tradeId": "4368010",
|
|
1820
|
+
# "makerOrderId": 106742914,
|
|
1821
|
+
# "takerOrderId": 106745926,
|
|
1822
|
+
# "pairId": 2,
|
|
1823
|
+
# "quantity": "0.0027193",
|
|
1824
|
+
# "price": "1993.674994",
|
|
1825
|
+
# "isBuyerMaker": True,
|
|
1826
|
+
# "baseDecimals": 18,
|
|
1827
|
+
# "quoteDecimals": 6,
|
|
1828
|
+
# "side": "sell",
|
|
1829
|
+
# "timestamp": 1700602983,
|
|
1830
|
+
# "rewarded": True,
|
|
1831
|
+
# "makerUserId": 21639,
|
|
1832
|
+
# "takerUserId": 15912,
|
|
1833
|
+
# "baseCurrencyId": 2,
|
|
1834
|
+
# "quoteCurrencyId": 3,
|
|
1835
|
+
# "feeMaker": {
|
|
1836
|
+
# "amount": "0.00000543",
|
|
1837
|
+
# "symbol": "eth",
|
|
1838
|
+
# "userId": 21639,
|
|
1839
|
+
# "decimals": 18,
|
|
1840
|
+
# "symbolId": 2
|
|
1841
|
+
# },
|
|
1842
|
+
# "feeTaker": {
|
|
1843
|
+
# "amount": "0",
|
|
1844
|
+
# "symbol": "usdt",
|
|
1845
|
+
# "userId": 15912,
|
|
1846
|
+
# "decimals": 6,
|
|
1847
|
+
# "symbolId": 3,
|
|
1848
|
+
# "discountAmount": "0",
|
|
1849
|
+
# "discountSymbol": "btt",
|
|
1850
|
+
# "discountDecimals": 18,
|
|
1851
|
+
# "discountSymbolId": 5
|
|
1852
|
+
# },
|
|
1853
|
+
# "pair": "eth_usdt",
|
|
1854
|
+
# "createdAt": "2023-11-21T21:43:02.758Z",
|
|
1855
|
+
# "updatedAt": "2023-11-21T21:45:00.147Z",
|
|
1856
|
+
# "isCurrentSide": "maker"
|
|
1857
|
+
# }
|
|
1858
|
+
#
|
|
1859
|
+
marketId = self.safe_string(trade, 'pair')
|
|
1860
|
+
market = self.safe_market(marketId, market)
|
|
1861
|
+
symbol = market['symbol']
|
|
1862
|
+
id = self.safe_string_2(trade, 'id', 'trade_id')
|
|
1863
|
+
price = self.safe_string(trade, 'price')
|
|
1864
|
+
amount = self.safe_string_2(trade, 'quantity', 'base_volume')
|
|
1865
|
+
cost = self.safe_string(trade, 'quote_volume')
|
|
1866
|
+
takerOrMaker = self.safe_string(trade, 'isCurrentSide')
|
|
1867
|
+
timestamp = self.safe_string(trade, 'timestamp')
|
|
1868
|
+
if takerOrMaker is not None:
|
|
1869
|
+
timestamp = Precise.string_mul(timestamp, '1000')
|
|
1870
|
+
# the exchange returns the side of the taker
|
|
1871
|
+
side = self.safe_string_2(trade, 'side', 'type')
|
|
1872
|
+
feeInfo = None
|
|
1873
|
+
order = None
|
|
1874
|
+
if takerOrMaker == 'maker':
|
|
1875
|
+
if side == 'sell':
|
|
1876
|
+
side = 'buy'
|
|
1877
|
+
elif side == 'buy':
|
|
1878
|
+
side = 'sell'
|
|
1879
|
+
order = self.safe_string(trade, 'makerOrderId')
|
|
1880
|
+
feeInfo = self.safe_value(trade, 'feeMaker', {})
|
|
1881
|
+
elif takerOrMaker == 'taker':
|
|
1882
|
+
order = self.safe_string(trade, 'takerOrderId')
|
|
1883
|
+
feeInfo = self.safe_value(trade, 'feeTaker', {})
|
|
1884
|
+
feeCurrencyId = self.safe_string(feeInfo, 'symbol')
|
|
1885
|
+
feeCost = self.safe_string(feeInfo, 'amount')
|
|
1886
|
+
fee = {
|
|
1887
|
+
'currency': self.safe_currency_code(feeCurrencyId),
|
|
1888
|
+
'cost': feeCost,
|
|
1889
|
+
'rate': None,
|
|
1890
|
+
}
|
|
1891
|
+
intTs = self.parse_to_int(timestamp)
|
|
1892
|
+
return self.safe_trade({
|
|
1893
|
+
'id': id,
|
|
1894
|
+
'order': order,
|
|
1895
|
+
'timestamp': intTs,
|
|
1896
|
+
'datetime': self.iso8601(intTs),
|
|
1897
|
+
'symbol': symbol,
|
|
1898
|
+
'type': None,
|
|
1899
|
+
'side': side,
|
|
1900
|
+
'takerOrMaker': takerOrMaker,
|
|
1901
|
+
'price': price,
|
|
1902
|
+
'amount': amount,
|
|
1903
|
+
'cost': cost,
|
|
1904
|
+
'fee': fee,
|
|
1905
|
+
'info': trade,
|
|
1906
|
+
}, market)
|
|
1907
|
+
|
|
1908
|
+
def fetch_balance(self, params={}) -> Balances:
|
|
1909
|
+
"""
|
|
1910
|
+
query for balance and get the amount of funds available for trading or funds locked in orders
|
|
1911
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/getTradeApiCcxtBalance
|
|
1912
|
+
:param dict [params]: extra parameters specific to the betteam api endpoint
|
|
1913
|
+
:returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
|
|
1914
|
+
"""
|
|
1915
|
+
self.load_markets()
|
|
1916
|
+
response = self.privateGetTradeApiCcxtBalance(params)
|
|
1917
|
+
return self.parse_balance(response)
|
|
1918
|
+
|
|
1919
|
+
def parse_balance(self, response) -> Balances:
|
|
1920
|
+
#
|
|
1921
|
+
# {
|
|
1922
|
+
# "ok": True,
|
|
1923
|
+
# "result": {
|
|
1924
|
+
# "free": {
|
|
1925
|
+
# "USDT": "0",
|
|
1926
|
+
# "DEL": "0",
|
|
1927
|
+
# "BTC": "0",
|
|
1928
|
+
# ...
|
|
1929
|
+
# },
|
|
1930
|
+
# "used": {
|
|
1931
|
+
# "USDT": "0",
|
|
1932
|
+
# "DEL": "0",
|
|
1933
|
+
# "BTC": "0",
|
|
1934
|
+
# ...
|
|
1935
|
+
# },
|
|
1936
|
+
# "total": {
|
|
1937
|
+
# "USDT": "0",
|
|
1938
|
+
# "DEL": "0",
|
|
1939
|
+
# "BTC": "0",
|
|
1940
|
+
# ...
|
|
1941
|
+
# },
|
|
1942
|
+
# "USDT": {
|
|
1943
|
+
# "free": "0",
|
|
1944
|
+
# "used": "0",
|
|
1945
|
+
# "total": "0",
|
|
1946
|
+
# },
|
|
1947
|
+
# "DEL": {
|
|
1948
|
+
# "free": "0",
|
|
1949
|
+
# "used": "0",
|
|
1950
|
+
# "total": "0",
|
|
1951
|
+
# },
|
|
1952
|
+
# "BTC": {
|
|
1953
|
+
# "free": "0",
|
|
1954
|
+
# "used": "0",
|
|
1955
|
+
# "total": "0",
|
|
1956
|
+
# }
|
|
1957
|
+
# ...
|
|
1958
|
+
# }
|
|
1959
|
+
# }
|
|
1960
|
+
#
|
|
1961
|
+
timestamp = self.milliseconds()
|
|
1962
|
+
balance: dict = {
|
|
1963
|
+
'info': response,
|
|
1964
|
+
'timestamp': timestamp,
|
|
1965
|
+
'datetime': self.iso8601(timestamp),
|
|
1966
|
+
}
|
|
1967
|
+
result = self.safe_value(response, 'result', {})
|
|
1968
|
+
balanceByCurrencies = self.omit(result, ['free', 'used', 'total'])
|
|
1969
|
+
rawCurrencyIds = list(balanceByCurrencies.keys())
|
|
1970
|
+
for i in range(0, len(rawCurrencyIds)):
|
|
1971
|
+
rawCurrencyId = rawCurrencyIds[i]
|
|
1972
|
+
currencyBalance = self.safe_value(result, rawCurrencyId)
|
|
1973
|
+
free = self.safe_string(currencyBalance, 'free')
|
|
1974
|
+
used = self.safe_string(currencyBalance, 'used')
|
|
1975
|
+
total = self.safe_string(currencyBalance, 'total')
|
|
1976
|
+
currencyCode = self.safe_currency_code(rawCurrencyId.lower())
|
|
1977
|
+
balance[currencyCode] = {
|
|
1978
|
+
'free': free,
|
|
1979
|
+
'used': used,
|
|
1980
|
+
'total': total,
|
|
1981
|
+
}
|
|
1982
|
+
return self.safe_balance(balance)
|
|
1983
|
+
|
|
1984
|
+
def fetch_deposits_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
|
1985
|
+
"""
|
|
1986
|
+
fetch history of deposits and withdrawals from external wallets and between CoinList Pro trading account and CoinList wallet
|
|
1987
|
+
:see: https://bit.team/trade/api/documentation#/PRIVATE/getTradeApiTransactionsofuser
|
|
1988
|
+
:param str [code]: unified currency code for the currency of the deposit/withdrawals
|
|
1989
|
+
:param int [since]: timestamp in ms of the earliest deposit/withdrawal
|
|
1990
|
+
:param int [limit]: max number of deposit/withdrawals to return(default 10)
|
|
1991
|
+
:param dict [params]: extra parameters specific to the bitteam api endpoint
|
|
1992
|
+
:returns dict: a list of `transaction structure <https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure>`
|
|
1993
|
+
"""
|
|
1994
|
+
self.load_markets()
|
|
1995
|
+
currency = None
|
|
1996
|
+
request: dict = {}
|
|
1997
|
+
if code is not None:
|
|
1998
|
+
currency = self.currency(code)
|
|
1999
|
+
request['currency'] = currency['numericId']
|
|
2000
|
+
if limit is not None:
|
|
2001
|
+
request['limit'] = limit
|
|
2002
|
+
response = self.privateGetTradeApiTransactionsOfUser(self.extend(request, params))
|
|
2003
|
+
#
|
|
2004
|
+
# {
|
|
2005
|
+
# "ok": True,
|
|
2006
|
+
# "result": {
|
|
2007
|
+
# "count": 2,
|
|
2008
|
+
# "transactions": [
|
|
2009
|
+
# {
|
|
2010
|
+
# "id": 1329686,
|
|
2011
|
+
# "orderId": "2f060ad5-30f7-4f2b-ac5f-1bb8f5fd34dc",
|
|
2012
|
+
# "transactionCoreId": "561863",
|
|
2013
|
+
# "userId": 21639,
|
|
2014
|
+
# "recipient": "0x9050dfA063D1bE7cA711c750b18D51fDD13e90Ee",
|
|
2015
|
+
# "sender": "0x6894a93B6fea044584649278621723cac51443Cd",
|
|
2016
|
+
# "symbolId": 2,
|
|
2017
|
+
# "CommissionId": 17571,
|
|
2018
|
+
# "amount": "44000000000000000",
|
|
2019
|
+
# "params": {},
|
|
2020
|
+
# "reason": null,
|
|
2021
|
+
# "timestamp": 1700715341743,
|
|
2022
|
+
# "status": "approving",
|
|
2023
|
+
# "statusDescription": null,
|
|
2024
|
+
# "type": "withdraw",
|
|
2025
|
+
# "message": null,
|
|
2026
|
+
# "blockChain": "",
|
|
2027
|
+
# "before": null,
|
|
2028
|
+
# "after": null,
|
|
2029
|
+
# "currency": {
|
|
2030
|
+
# "symbol": "eth",
|
|
2031
|
+
# "decimals": 18,
|
|
2032
|
+
# "blockChain": "Ethereum",
|
|
2033
|
+
# "links": [
|
|
2034
|
+
# {
|
|
2035
|
+
# "tx": "https://etherscan.io/tx/",
|
|
2036
|
+
# "address": "https://etherscan.io/address/",
|
|
2037
|
+
# "blockChain": "Ethereum"
|
|
2038
|
+
# }
|
|
2039
|
+
# ]
|
|
2040
|
+
# }
|
|
2041
|
+
# },
|
|
2042
|
+
# {
|
|
2043
|
+
# "id": 1329229,
|
|
2044
|
+
# "orderId": null,
|
|
2045
|
+
# "transactionCoreId": "561418",
|
|
2046
|
+
# "userId": 21639,
|
|
2047
|
+
# "recipient": "0x7d6a797f2406e06b2f9b41d067df324affa315dd",
|
|
2048
|
+
# "sender": null,
|
|
2049
|
+
# "symbolId": 3,
|
|
2050
|
+
# "CommissionId": null,
|
|
2051
|
+
# "amount": "100000000",
|
|
2052
|
+
# "params": {
|
|
2053
|
+
# "tx_id": "0x2253823c828d838acd983fe6a348fb0e034efe3874b081871d8b80da76ec758b"
|
|
2054
|
+
# },
|
|
2055
|
+
# "reason": null,
|
|
2056
|
+
# "timestamp": 1700594180417,
|
|
2057
|
+
# "status": "success",
|
|
2058
|
+
# "statusDescription": null,
|
|
2059
|
+
# "type": "deposit",
|
|
2060
|
+
# "message": null,
|
|
2061
|
+
# "blockChain": "Ethereum",
|
|
2062
|
+
# "before": 0,
|
|
2063
|
+
# "after": 100000000,
|
|
2064
|
+
# "currency": {
|
|
2065
|
+
# "symbol": "usdt",
|
|
2066
|
+
# "decimals": 6,
|
|
2067
|
+
# "blockChain": "",
|
|
2068
|
+
# "links": [
|
|
2069
|
+
# {
|
|
2070
|
+
# "tx": "https://etherscan.io/tx/",
|
|
2071
|
+
# "address": "https://etherscan.io/address/",
|
|
2072
|
+
# "blockChain": "Ethereum"
|
|
2073
|
+
# },
|
|
2074
|
+
# {
|
|
2075
|
+
# "tx": "https://tronscan.org/#/transaction/",
|
|
2076
|
+
# "address": "https://tronscan.org/#/address/",
|
|
2077
|
+
# "blockChain": "Tron"
|
|
2078
|
+
# },
|
|
2079
|
+
# {
|
|
2080
|
+
# "tx": "https://bscscan.com/tx/",
|
|
2081
|
+
# "address": "https://bscscan.com/address/",
|
|
2082
|
+
# "blockChain": "Binance"
|
|
2083
|
+
# }
|
|
2084
|
+
# ]
|
|
2085
|
+
# }
|
|
2086
|
+
# }
|
|
2087
|
+
# ]
|
|
2088
|
+
# }
|
|
2089
|
+
# }
|
|
2090
|
+
#
|
|
2091
|
+
result = self.safe_value(response, 'result', {})
|
|
2092
|
+
transactions = self.safe_list(result, 'transactions', [])
|
|
2093
|
+
return self.parse_transactions(transactions, currency, since, limit)
|
|
2094
|
+
|
|
2095
|
+
def parse_transaction(self, transaction: dict, currency: Currency = None) -> Transaction:
|
|
2096
|
+
#
|
|
2097
|
+
# {
|
|
2098
|
+
# "id": 1329229,
|
|
2099
|
+
# "orderId": null,
|
|
2100
|
+
# "transactionCoreId": "561418",
|
|
2101
|
+
# "userId": 21639,
|
|
2102
|
+
# "recipient": "0x7d6a797f2406e06b2f9b41d067df324affa315dd",
|
|
2103
|
+
# "sender": null,
|
|
2104
|
+
# "symbolId": 3,
|
|
2105
|
+
# "CommissionId": null,
|
|
2106
|
+
# "amount": "100000000",
|
|
2107
|
+
# "params": {
|
|
2108
|
+
# "tx_id": "0x2253823c828d838acd983fe6a348fb0e034efe3874b081871d8b80da76ec758b"
|
|
2109
|
+
# },
|
|
2110
|
+
# "reason": null,
|
|
2111
|
+
# "timestamp": 1700594180417,
|
|
2112
|
+
# "status": "success",
|
|
2113
|
+
# "statusDescription": null,
|
|
2114
|
+
# "type": "deposit",
|
|
2115
|
+
# "message": null,
|
|
2116
|
+
# "blockChain": "Ethereum",
|
|
2117
|
+
# "before": 0,
|
|
2118
|
+
# "after": 100000000,
|
|
2119
|
+
# "currency": {
|
|
2120
|
+
# "symbol": "usdt",
|
|
2121
|
+
# "decimals": 6,
|
|
2122
|
+
# "blockChain": "",
|
|
2123
|
+
# "links": [
|
|
2124
|
+
# {
|
|
2125
|
+
# "tx": "https://etherscan.io/tx/",
|
|
2126
|
+
# "address": "https://etherscan.io/address/",
|
|
2127
|
+
# "blockChain": "Ethereum"
|
|
2128
|
+
# },
|
|
2129
|
+
# {
|
|
2130
|
+
# "tx": "https://tronscan.org/#/transaction/",
|
|
2131
|
+
# "address": "https://tronscan.org/#/address/",
|
|
2132
|
+
# "blockChain": "Tron"
|
|
2133
|
+
# },
|
|
2134
|
+
# {
|
|
2135
|
+
# "tx": "https://bscscan.com/tx/",
|
|
2136
|
+
# "address": "https://bscscan.com/address/",
|
|
2137
|
+
# "blockChain": "Binance"
|
|
2138
|
+
# }
|
|
2139
|
+
# ]
|
|
2140
|
+
# }
|
|
2141
|
+
# }
|
|
2142
|
+
#
|
|
2143
|
+
currencyObject = self.safe_value(transaction, 'currency')
|
|
2144
|
+
currencyId = self.safe_string(currencyObject, 'symbol')
|
|
2145
|
+
code = self.safe_currency_code(currencyId, currency)
|
|
2146
|
+
id = self.safe_string(transaction, 'id')
|
|
2147
|
+
params = self.safe_value(transaction, 'params')
|
|
2148
|
+
txid = self.safe_string(params, 'tx_id')
|
|
2149
|
+
timestamp = self.safe_integer(transaction, 'timestamp')
|
|
2150
|
+
networkId = self.safe_string(transaction, 'blockChain')
|
|
2151
|
+
if networkId is None:
|
|
2152
|
+
links = self.safe_value(currencyObject, 'links', [])
|
|
2153
|
+
blockChain = self.safe_value(links, 0, {})
|
|
2154
|
+
networkId = self.safe_string(blockChain, 'blockChain')
|
|
2155
|
+
addressFrom = self.safe_string(transaction, 'sender')
|
|
2156
|
+
addressTo = self.safe_string(transaction, 'recipient')
|
|
2157
|
+
tag = self.safe_string(transaction, 'message')
|
|
2158
|
+
type = self.parse_transaction_type(self.safe_string(transaction, 'type'))
|
|
2159
|
+
amount = self.parse_value_to_pricision(transaction, 'amount', currencyObject, 'decimals')
|
|
2160
|
+
status = self.parse_transaction_status(self.safe_value(transaction, 'status'))
|
|
2161
|
+
return {
|
|
2162
|
+
'info': transaction,
|
|
2163
|
+
'id': id,
|
|
2164
|
+
'txid': txid,
|
|
2165
|
+
'timestamp': timestamp,
|
|
2166
|
+
'datetime': self.iso8601(timestamp),
|
|
2167
|
+
'network': self.network_id_to_code(networkId),
|
|
2168
|
+
'addressFrom': addressFrom,
|
|
2169
|
+
'address': None,
|
|
2170
|
+
'addressTo': addressTo,
|
|
2171
|
+
'tagFrom': None,
|
|
2172
|
+
'tag': tag,
|
|
2173
|
+
'tagTo': None,
|
|
2174
|
+
'type': type,
|
|
2175
|
+
'amount': self.parse_number(amount),
|
|
2176
|
+
'currency': code,
|
|
2177
|
+
'status': status,
|
|
2178
|
+
'updated': None,
|
|
2179
|
+
'fee': None,
|
|
2180
|
+
'comment': self.safe_string(transaction, 'description'),
|
|
2181
|
+
'internal': False,
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
def parse_transaction_type(self, type):
|
|
2185
|
+
types: dict = {
|
|
2186
|
+
'deposit': 'deposit',
|
|
2187
|
+
'withdraw': 'withdrawal',
|
|
2188
|
+
}
|
|
2189
|
+
return self.safe_string(types, type, type)
|
|
2190
|
+
|
|
2191
|
+
def parse_transaction_status(self, status: Str):
|
|
2192
|
+
statuses: dict = {
|
|
2193
|
+
'approving': 'pending',
|
|
2194
|
+
'success': 'ok',
|
|
2195
|
+
}
|
|
2196
|
+
return self.safe_string(statuses, status, status)
|
|
2197
|
+
|
|
2198
|
+
def sign(self, path, api='public', method='GET', params={}, headers=None, body=None):
|
|
2199
|
+
request = self.omit(params, self.extract_params(path))
|
|
2200
|
+
endpoint = '/' + self.implode_params(path, params)
|
|
2201
|
+
url = self.urls['api'][api] + endpoint
|
|
2202
|
+
query = self.urlencode(request)
|
|
2203
|
+
if api == 'private':
|
|
2204
|
+
self.check_required_credentials()
|
|
2205
|
+
if method == 'POST':
|
|
2206
|
+
body = self.json(request)
|
|
2207
|
+
elif len(query) != 0:
|
|
2208
|
+
url += '?' + query
|
|
2209
|
+
auth = self.apiKey + ':' + self.secret
|
|
2210
|
+
auth64 = self.string_to_base64(auth)
|
|
2211
|
+
signature = 'Basic ' + auth64
|
|
2212
|
+
headers = {
|
|
2213
|
+
'Authorization': signature,
|
|
2214
|
+
'Content-Type': 'application/json',
|
|
2215
|
+
}
|
|
2216
|
+
elif len(query) != 0:
|
|
2217
|
+
url += '?' + query
|
|
2218
|
+
return {'url': url, 'method': method, 'body': body, 'headers': headers}
|
|
2219
|
+
|
|
2220
|
+
def handle_errors(self, code: int, reason: str, url: str, method: str, headers: dict, body: str, response, requestHeaders, requestBody):
|
|
2221
|
+
if response is None:
|
|
2222
|
+
return None
|
|
2223
|
+
if code != 200:
|
|
2224
|
+
if code == 404:
|
|
2225
|
+
if (url.find('/ccxt/order/') >= 0) and (method == 'GET'):
|
|
2226
|
+
parts = url.split('/order/')
|
|
2227
|
+
orderId = self.safe_string(parts, 1)
|
|
2228
|
+
raise OrderNotFound(self.id + ' order ' + orderId + ' not found')
|
|
2229
|
+
if url.find('/cmc/orderbook/') >= 0:
|
|
2230
|
+
parts = url.split('/cmc/orderbook/')
|
|
2231
|
+
symbolId = self.safe_string(parts, 1)
|
|
2232
|
+
raise BadSymbol(self.id + ' symbolId ' + symbolId + ' not found')
|
|
2233
|
+
feedback = self.id + ' ' + body
|
|
2234
|
+
message = self.safe_string(response, 'message')
|
|
2235
|
+
responseCode = self.safe_string(response, 'code')
|
|
2236
|
+
self.throw_broadly_matched_exception(self.exceptions['broad'], message, feedback)
|
|
2237
|
+
self.throw_exactly_matched_exception(self.exceptions['exact'], responseCode, feedback)
|
|
2238
|
+
raise ExchangeError(feedback)
|
|
2239
|
+
return None
|