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/yobit.py
ADDED
|
@@ -0,0 +1,1283 @@
|
|
|
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.yobit import ImplicitAPI
|
|
8
|
+
import hashlib
|
|
9
|
+
from ccxt.base.types import Balances, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFees
|
|
10
|
+
from typing import List
|
|
11
|
+
from ccxt.base.errors import ExchangeError
|
|
12
|
+
from ccxt.base.errors import AuthenticationError
|
|
13
|
+
from ccxt.base.errors import ArgumentsRequired
|
|
14
|
+
from ccxt.base.errors import InsufficientFunds
|
|
15
|
+
from ccxt.base.errors import InvalidOrder
|
|
16
|
+
from ccxt.base.errors import OrderNotFound
|
|
17
|
+
from ccxt.base.errors import DDoSProtection
|
|
18
|
+
from ccxt.base.errors import RateLimitExceeded
|
|
19
|
+
from ccxt.base.errors import ExchangeNotAvailable
|
|
20
|
+
from ccxt.base.errors import InvalidNonce
|
|
21
|
+
from ccxt.base.decimal_to_precision import TICK_SIZE
|
|
22
|
+
from ccxt.base.precise import Precise
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class yobit(Exchange, ImplicitAPI):
|
|
26
|
+
|
|
27
|
+
def describe(self):
|
|
28
|
+
return self.deep_extend(super(yobit, self).describe(), {
|
|
29
|
+
'id': 'yobit',
|
|
30
|
+
'name': 'YoBit',
|
|
31
|
+
'countries': ['RU'],
|
|
32
|
+
'rateLimit': 2000, # responses are cached every 2 seconds
|
|
33
|
+
'version': '3',
|
|
34
|
+
'pro': False,
|
|
35
|
+
'has': {
|
|
36
|
+
'CORS': None,
|
|
37
|
+
'spot': True,
|
|
38
|
+
'margin': False,
|
|
39
|
+
'swap': False,
|
|
40
|
+
'future': False,
|
|
41
|
+
'option': False,
|
|
42
|
+
'addMargin': False,
|
|
43
|
+
'cancelOrder': True,
|
|
44
|
+
'closeAllPositions': False,
|
|
45
|
+
'closePosition': False,
|
|
46
|
+
'createDepositAddress': True,
|
|
47
|
+
'createMarketOrder': False,
|
|
48
|
+
'createOrder': True,
|
|
49
|
+
'createReduceOnlyOrder': False,
|
|
50
|
+
'createStopLimitOrder': False,
|
|
51
|
+
'createStopMarketOrder': False,
|
|
52
|
+
'createStopOrder': False,
|
|
53
|
+
'fetchBalance': True,
|
|
54
|
+
'fetchBorrowRateHistories': False,
|
|
55
|
+
'fetchBorrowRateHistory': False,
|
|
56
|
+
'fetchCrossBorrowRate': False,
|
|
57
|
+
'fetchCrossBorrowRates': False,
|
|
58
|
+
'fetchDepositAddress': True,
|
|
59
|
+
'fetchDeposits': False,
|
|
60
|
+
'fetchFundingHistory': False,
|
|
61
|
+
'fetchFundingRate': False,
|
|
62
|
+
'fetchFundingRateHistory': False,
|
|
63
|
+
'fetchFundingRates': False,
|
|
64
|
+
'fetchIndexOHLCV': False,
|
|
65
|
+
'fetchIsolatedBorrowRate': False,
|
|
66
|
+
'fetchIsolatedBorrowRates': False,
|
|
67
|
+
'fetchLeverage': False,
|
|
68
|
+
'fetchLeverageTiers': False,
|
|
69
|
+
'fetchMarginMode': False,
|
|
70
|
+
'fetchMarkets': True,
|
|
71
|
+
'fetchMarkOHLCV': False,
|
|
72
|
+
'fetchMyTrades': True,
|
|
73
|
+
'fetchOpenInterestHistory': False,
|
|
74
|
+
'fetchOpenOrders': True,
|
|
75
|
+
'fetchOrder': True,
|
|
76
|
+
'fetchOrderBook': True,
|
|
77
|
+
'fetchOrderBooks': True,
|
|
78
|
+
'fetchPosition': False,
|
|
79
|
+
'fetchPositionHistory': False,
|
|
80
|
+
'fetchPositionMode': False,
|
|
81
|
+
'fetchPositions': False,
|
|
82
|
+
'fetchPositionsForSymbol': False,
|
|
83
|
+
'fetchPositionsHistory': False,
|
|
84
|
+
'fetchPositionsRisk': False,
|
|
85
|
+
'fetchPremiumIndexOHLCV': False,
|
|
86
|
+
'fetchTicker': True,
|
|
87
|
+
'fetchTickers': True,
|
|
88
|
+
'fetchTrades': True,
|
|
89
|
+
'fetchTradingFee': False,
|
|
90
|
+
'fetchTradingFees': True,
|
|
91
|
+
'fetchTransactions': False,
|
|
92
|
+
'fetchTransfer': False,
|
|
93
|
+
'fetchTransfers': False,
|
|
94
|
+
'fetchWithdrawals': False,
|
|
95
|
+
'reduceMargin': False,
|
|
96
|
+
'setLeverage': False,
|
|
97
|
+
'setMarginMode': False,
|
|
98
|
+
'setPositionMode': False,
|
|
99
|
+
'transfer': False,
|
|
100
|
+
'withdraw': True,
|
|
101
|
+
'ws': False,
|
|
102
|
+
},
|
|
103
|
+
'urls': {
|
|
104
|
+
'logo': 'https://user-images.githubusercontent.com/1294454/27766910-cdcbfdae-5eea-11e7-9859-03fea873272d.jpg',
|
|
105
|
+
'api': {
|
|
106
|
+
'public': 'https://yobit.net/api',
|
|
107
|
+
'private': 'https://yobit.net/tapi',
|
|
108
|
+
},
|
|
109
|
+
'www': 'https://www.yobit.net',
|
|
110
|
+
'doc': 'https://www.yobit.net/en/api/',
|
|
111
|
+
'fees': 'https://www.yobit.net/en/fees/',
|
|
112
|
+
},
|
|
113
|
+
'api': {
|
|
114
|
+
'public': {
|
|
115
|
+
'get': {
|
|
116
|
+
'depth/{pair}': 1,
|
|
117
|
+
'info': 1,
|
|
118
|
+
'ticker/{pair}': 1,
|
|
119
|
+
'trades/{pair}': 1,
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
'private': {
|
|
123
|
+
'post': {
|
|
124
|
+
'ActiveOrders': 1,
|
|
125
|
+
'CancelOrder': 1,
|
|
126
|
+
'GetDepositAddress': 1,
|
|
127
|
+
'getInfo': 1,
|
|
128
|
+
'OrderInfo': 1,
|
|
129
|
+
'Trade': 1,
|
|
130
|
+
'TradeHistory': 1,
|
|
131
|
+
'WithdrawCoinsToAddress': 1,
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
'fees': {
|
|
136
|
+
'trading': {
|
|
137
|
+
'maker': 0.002,
|
|
138
|
+
'taker': 0.002,
|
|
139
|
+
},
|
|
140
|
+
'funding': {
|
|
141
|
+
'withdraw': {},
|
|
142
|
+
},
|
|
143
|
+
},
|
|
144
|
+
'commonCurrencies': {
|
|
145
|
+
'AIR': 'AirCoin',
|
|
146
|
+
'ANI': 'ANICoin',
|
|
147
|
+
'ANT': 'AntsCoin', # what is self, a coin for ants?
|
|
148
|
+
'ATMCHA': 'ATM',
|
|
149
|
+
'ASN': 'Ascension',
|
|
150
|
+
'AST': 'Astral',
|
|
151
|
+
'ATM': 'Autumncoin',
|
|
152
|
+
'AUR': 'AuroraCoin',
|
|
153
|
+
'BAB': 'Babel',
|
|
154
|
+
'BAN': 'BANcoin',
|
|
155
|
+
'BCC': 'BCH',
|
|
156
|
+
'BCS': 'BitcoinStake',
|
|
157
|
+
'BITS': 'Bitstar',
|
|
158
|
+
'BLN': 'Bulleon',
|
|
159
|
+
'BNS': 'Benefit Bonus Coin',
|
|
160
|
+
'BOT': 'BOTcoin',
|
|
161
|
+
'BON': 'BONES',
|
|
162
|
+
'BPC': 'BitcoinPremium',
|
|
163
|
+
'BST': 'BitStone',
|
|
164
|
+
'BTS': 'Bitshares2',
|
|
165
|
+
'CAT': 'BitClave',
|
|
166
|
+
'CBC': 'CryptoBossCoin',
|
|
167
|
+
'CMT': 'CometCoin',
|
|
168
|
+
'COIN': 'Coin.com',
|
|
169
|
+
'COV': 'Coven Coin',
|
|
170
|
+
'COVX': 'COV',
|
|
171
|
+
'CPC': 'Capricoin',
|
|
172
|
+
'CREDIT': 'Creditbit',
|
|
173
|
+
'CS': 'CryptoSpots',
|
|
174
|
+
'DCT': 'Discount',
|
|
175
|
+
'DFT': 'DraftCoin',
|
|
176
|
+
'DGD': 'DarkGoldCoin',
|
|
177
|
+
'DIRT': 'DIRTY',
|
|
178
|
+
'DROP': 'FaucetCoin',
|
|
179
|
+
'DSH': 'DASH',
|
|
180
|
+
'EGC': 'EverGreenCoin',
|
|
181
|
+
'EGG': 'EggCoin',
|
|
182
|
+
'EKO': 'EkoCoin',
|
|
183
|
+
'ENTER': 'ENTRC',
|
|
184
|
+
'EPC': 'ExperienceCoin',
|
|
185
|
+
'ESC': 'EdwardSnowden',
|
|
186
|
+
'EUROPE': 'EUROP',
|
|
187
|
+
'EXT': 'LifeExtension',
|
|
188
|
+
'FUND': 'FUNDChains',
|
|
189
|
+
'FUNK': 'FUNKCoin',
|
|
190
|
+
'FX': 'FCoin',
|
|
191
|
+
'GCC': 'GlobalCryptocurrency',
|
|
192
|
+
'GEN': 'Genstake',
|
|
193
|
+
'GENE': 'Genesiscoin',
|
|
194
|
+
'GMR': 'Gimmer',
|
|
195
|
+
'GOLD': 'GoldMint',
|
|
196
|
+
'GOT': 'Giotto Coin',
|
|
197
|
+
'GSX': 'GlowShares',
|
|
198
|
+
'GT': 'GTcoin',
|
|
199
|
+
'HTML5': 'HTML',
|
|
200
|
+
'HYPERX': 'HYPER',
|
|
201
|
+
'ICN': 'iCoin',
|
|
202
|
+
'INSANE': 'INSN',
|
|
203
|
+
'JNT': 'JointCoin',
|
|
204
|
+
'JPC': 'JupiterCoin',
|
|
205
|
+
'JWL': 'Jewels',
|
|
206
|
+
'KNC': 'KingN Coin',
|
|
207
|
+
'LBTCX': 'LiteBitcoin',
|
|
208
|
+
'LIZI': 'LiZi',
|
|
209
|
+
'LOC': 'LocoCoin',
|
|
210
|
+
'LOCX': 'LOC',
|
|
211
|
+
'LUNYR': 'LUN',
|
|
212
|
+
'LUN': 'LunarCoin', # they just change the ticker if it is already taken
|
|
213
|
+
'LUNA': 'Luna Coin',
|
|
214
|
+
'MASK': 'Yobit MASK',
|
|
215
|
+
'MDT': 'Midnight',
|
|
216
|
+
'MEME': 'Memez Token', # conflict with Meme Inu / Degenerator Meme
|
|
217
|
+
'MIS': 'MIScoin',
|
|
218
|
+
'MM': 'MasterMint', # conflict with MilliMeter
|
|
219
|
+
'NAV': 'NavajoCoin',
|
|
220
|
+
'NBT': 'NiceBytes',
|
|
221
|
+
'OMG': 'OMGame',
|
|
222
|
+
'ONX': 'Onix',
|
|
223
|
+
'PAC': '$PAC',
|
|
224
|
+
'PLAY': 'PlayCoin',
|
|
225
|
+
'PIVX': 'Darknet',
|
|
226
|
+
'PURE': 'PurePOS',
|
|
227
|
+
'PUTIN': 'PutinCoin',
|
|
228
|
+
'SPACE': 'Spacecoin',
|
|
229
|
+
'STK': 'StakeCoin',
|
|
230
|
+
'SUB': 'Subscriptio',
|
|
231
|
+
'PAY': 'EPAY',
|
|
232
|
+
'PLC': 'Platin Coin',
|
|
233
|
+
'RAI': 'RaiderCoin',
|
|
234
|
+
'RCN': 'RCoin',
|
|
235
|
+
'REP': 'Republicoin',
|
|
236
|
+
'RUR': 'RUB',
|
|
237
|
+
'SBTC': 'Super Bitcoin',
|
|
238
|
+
'SMC': 'SmartCoin',
|
|
239
|
+
'SOLO': 'SoloCoin',
|
|
240
|
+
'SOUL': 'SoulCoin',
|
|
241
|
+
'STAR': 'StarCoin',
|
|
242
|
+
'SUPER': 'SuperCoin',
|
|
243
|
+
'TNS': 'Transcodium',
|
|
244
|
+
'TTC': 'TittieCoin',
|
|
245
|
+
'UNI': 'Universe',
|
|
246
|
+
'UST': 'Uservice',
|
|
247
|
+
'VOL': 'VolumeCoin',
|
|
248
|
+
'XIN': 'XINCoin',
|
|
249
|
+
'XMT': 'SummitCoin',
|
|
250
|
+
'XRA': 'Ratecoin',
|
|
251
|
+
},
|
|
252
|
+
'options': {
|
|
253
|
+
'maxUrlLength': 2048,
|
|
254
|
+
'fetchOrdersRequiresSymbol': True,
|
|
255
|
+
'networks': {
|
|
256
|
+
'ETH': 'ERC20',
|
|
257
|
+
'TRX': 'TRC20',
|
|
258
|
+
'BSC': 'BEP20',
|
|
259
|
+
},
|
|
260
|
+
},
|
|
261
|
+
'precisionMode': TICK_SIZE,
|
|
262
|
+
'exceptions': {
|
|
263
|
+
'exact': {
|
|
264
|
+
'803': InvalidOrder, # "Count could not be less than 0.001."(selling below minAmount)
|
|
265
|
+
'804': InvalidOrder, # "Count could not be more than 10000."(buying above maxAmount)
|
|
266
|
+
'805': InvalidOrder, # "price could not be less than X."(minPrice violation on buy & sell)
|
|
267
|
+
'806': InvalidOrder, # "price could not be more than X."(maxPrice violation on buy & sell)
|
|
268
|
+
'807': InvalidOrder, # "cost could not be less than X."(minCost violation on buy & sell)
|
|
269
|
+
'831': InsufficientFunds, # "Not enougth X to create buy order."(buying with balance.quote < order.cost)
|
|
270
|
+
'832': InsufficientFunds, # "Not enougth X to create sell order."(selling with balance.base < order.amount)
|
|
271
|
+
'833': OrderNotFound, # "Order with id X was not found."(cancelling non-existent, closed and cancelled order)
|
|
272
|
+
},
|
|
273
|
+
'broad': {
|
|
274
|
+
'Invalid pair name': ExchangeError, # {"success":0,"error":"Invalid pair name: btc_eth"}
|
|
275
|
+
'invalid api key': AuthenticationError,
|
|
276
|
+
'invalid sign': AuthenticationError,
|
|
277
|
+
'api key dont have trade permission': AuthenticationError,
|
|
278
|
+
'invalid parameter': InvalidOrder,
|
|
279
|
+
'invalid order': InvalidOrder,
|
|
280
|
+
'The given order has already been cancelled': InvalidOrder,
|
|
281
|
+
'Requests too often': DDoSProtection,
|
|
282
|
+
'not available': ExchangeNotAvailable,
|
|
283
|
+
'data unavailable': ExchangeNotAvailable,
|
|
284
|
+
'external service unavailable': ExchangeNotAvailable,
|
|
285
|
+
'Total transaction amount': InvalidOrder, # {"success": 0, "error": "Total transaction amount is less than minimal total: 0.00010000"}
|
|
286
|
+
'The given order has already been closed and cannot be cancelled': InvalidOrder,
|
|
287
|
+
'Insufficient funds': InsufficientFunds,
|
|
288
|
+
'invalid key': AuthenticationError,
|
|
289
|
+
'invalid nonce': InvalidNonce, # {"success":0,"error":"invalid nonce(has already been used)"}'
|
|
290
|
+
'Total order amount is less than minimal amount': InvalidOrder,
|
|
291
|
+
'Rate Limited': RateLimitExceeded,
|
|
292
|
+
},
|
|
293
|
+
},
|
|
294
|
+
'orders': {}, # orders cache / emulation
|
|
295
|
+
})
|
|
296
|
+
|
|
297
|
+
def parse_balance(self, response) -> Balances:
|
|
298
|
+
balances = self.safe_dict(response, 'return', {})
|
|
299
|
+
timestamp = self.safe_integer(balances, 'server_time')
|
|
300
|
+
result: dict = {
|
|
301
|
+
'info': response,
|
|
302
|
+
'timestamp': timestamp,
|
|
303
|
+
'datetime': self.iso8601(timestamp),
|
|
304
|
+
}
|
|
305
|
+
free = self.safe_dict(balances, 'funds', {})
|
|
306
|
+
total = self.safe_dict(balances, 'funds_incl_orders', {})
|
|
307
|
+
currencyIds = list(self.extend(free, total).keys())
|
|
308
|
+
for i in range(0, len(currencyIds)):
|
|
309
|
+
currencyId = currencyIds[i]
|
|
310
|
+
code = self.safe_currency_code(currencyId)
|
|
311
|
+
account = self.account()
|
|
312
|
+
account['free'] = self.safe_string(free, currencyId)
|
|
313
|
+
account['total'] = self.safe_string(total, currencyId)
|
|
314
|
+
result[code] = account
|
|
315
|
+
return self.safe_balance(result)
|
|
316
|
+
|
|
317
|
+
def fetch_balance(self, params={}) -> Balances:
|
|
318
|
+
"""
|
|
319
|
+
:see: https://yobit.net/en/api
|
|
320
|
+
query for balance and get the amount of funds available for trading or funds locked in orders
|
|
321
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
322
|
+
:returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
|
|
323
|
+
"""
|
|
324
|
+
self.load_markets()
|
|
325
|
+
response = self.privatePostGetInfo(params)
|
|
326
|
+
#
|
|
327
|
+
# {
|
|
328
|
+
# "success":1,
|
|
329
|
+
# "return":{
|
|
330
|
+
# "funds":{
|
|
331
|
+
# "ltc":22,
|
|
332
|
+
# "nvc":423.998,
|
|
333
|
+
# "ppc":10,
|
|
334
|
+
# },
|
|
335
|
+
# "funds_incl_orders":{
|
|
336
|
+
# "ltc":32,
|
|
337
|
+
# "nvc":523.998,
|
|
338
|
+
# "ppc":20,
|
|
339
|
+
# },
|
|
340
|
+
# "rights":{
|
|
341
|
+
# "info":1,
|
|
342
|
+
# "trade":0,
|
|
343
|
+
# "withdraw":0
|
|
344
|
+
# },
|
|
345
|
+
# "transaction_count":0,
|
|
346
|
+
# "open_orders":1,
|
|
347
|
+
# "server_time":1418654530
|
|
348
|
+
# }
|
|
349
|
+
# }
|
|
350
|
+
#
|
|
351
|
+
return self.parse_balance(response)
|
|
352
|
+
|
|
353
|
+
def fetch_markets(self, params={}) -> List[Market]:
|
|
354
|
+
"""
|
|
355
|
+
:see: https://yobit.net/en/api
|
|
356
|
+
retrieves data on all markets for yobit
|
|
357
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
358
|
+
:returns dict[]: an array of objects representing market data
|
|
359
|
+
"""
|
|
360
|
+
response = self.publicGetInfo(params)
|
|
361
|
+
#
|
|
362
|
+
# {
|
|
363
|
+
# "server_time":1615856752,
|
|
364
|
+
# "pairs":{
|
|
365
|
+
# "ltc_btc":{
|
|
366
|
+
# "decimal_places":8,
|
|
367
|
+
# "min_price":0.00000001,
|
|
368
|
+
# "max_price":10000,
|
|
369
|
+
# "min_amount":0.0001,
|
|
370
|
+
# "min_total":0.0001,
|
|
371
|
+
# "hidden":0,
|
|
372
|
+
# "fee":0.2,
|
|
373
|
+
# "fee_buyer":0.2,
|
|
374
|
+
# "fee_seller":0.2
|
|
375
|
+
# },
|
|
376
|
+
# },
|
|
377
|
+
# }
|
|
378
|
+
#
|
|
379
|
+
markets = self.safe_dict(response, 'pairs', {})
|
|
380
|
+
keys = list(markets.keys())
|
|
381
|
+
result = []
|
|
382
|
+
for i in range(0, len(keys)):
|
|
383
|
+
id = keys[i]
|
|
384
|
+
market = markets[id]
|
|
385
|
+
baseId, quoteId = id.split('_')
|
|
386
|
+
base = baseId.upper()
|
|
387
|
+
quote = quoteId.upper()
|
|
388
|
+
base = self.safe_currency_code(base)
|
|
389
|
+
quote = self.safe_currency_code(quote)
|
|
390
|
+
hidden = self.safe_integer(market, 'hidden')
|
|
391
|
+
feeString = self.safe_string(market, 'fee')
|
|
392
|
+
feeString = Precise.string_div(feeString, '100')
|
|
393
|
+
# yobit maker = taker
|
|
394
|
+
result.append({
|
|
395
|
+
'id': id,
|
|
396
|
+
'symbol': base + '/' + quote,
|
|
397
|
+
'base': base,
|
|
398
|
+
'quote': quote,
|
|
399
|
+
'settle': None,
|
|
400
|
+
'baseId': baseId,
|
|
401
|
+
'quoteId': quoteId,
|
|
402
|
+
'settleId': None,
|
|
403
|
+
'type': 'spot',
|
|
404
|
+
'spot': True,
|
|
405
|
+
'margin': False,
|
|
406
|
+
'swap': False,
|
|
407
|
+
'future': False,
|
|
408
|
+
'option': False,
|
|
409
|
+
'active': (hidden == 0),
|
|
410
|
+
'contract': False,
|
|
411
|
+
'linear': None,
|
|
412
|
+
'inverse': None,
|
|
413
|
+
'taker': self.parse_number(feeString),
|
|
414
|
+
'maker': self.parse_number(feeString),
|
|
415
|
+
'contractSize': None,
|
|
416
|
+
'expiry': None,
|
|
417
|
+
'expiryDatetime': None,
|
|
418
|
+
'strike': None,
|
|
419
|
+
'optionType': None,
|
|
420
|
+
'precision': {
|
|
421
|
+
'amount': self.parse_number(self.parse_precision(self.safe_string(market, 'decimal_places'))),
|
|
422
|
+
'price': self.parse_number(self.parse_precision(self.safe_string(market, 'decimal_places'))),
|
|
423
|
+
},
|
|
424
|
+
'limits': {
|
|
425
|
+
'leverage': {
|
|
426
|
+
'min': None,
|
|
427
|
+
'max': None,
|
|
428
|
+
},
|
|
429
|
+
'amount': {
|
|
430
|
+
'min': self.safe_number(market, 'min_amount'),
|
|
431
|
+
'max': self.safe_number(market, 'max_amount'),
|
|
432
|
+
},
|
|
433
|
+
'price': {
|
|
434
|
+
'min': self.safe_number(market, 'min_price'),
|
|
435
|
+
'max': self.safe_number(market, 'max_price'),
|
|
436
|
+
},
|
|
437
|
+
'cost': {
|
|
438
|
+
'min': self.safe_number(market, 'min_total'),
|
|
439
|
+
'max': None,
|
|
440
|
+
},
|
|
441
|
+
},
|
|
442
|
+
'created': None,
|
|
443
|
+
'info': market,
|
|
444
|
+
})
|
|
445
|
+
return result
|
|
446
|
+
|
|
447
|
+
def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
|
448
|
+
"""
|
|
449
|
+
:see: https://yobit.net/en/api
|
|
450
|
+
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
|
451
|
+
:param str symbol: unified symbol of the market to fetch the order book for
|
|
452
|
+
:param int [limit]: the maximum amount of order book entries to return
|
|
453
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
454
|
+
:returns dict: A dictionary of `order book structures <https://docs.ccxt.com/#/?id=order-book-structure>` indexed by market symbols
|
|
455
|
+
"""
|
|
456
|
+
self.load_markets()
|
|
457
|
+
market = self.market(symbol)
|
|
458
|
+
request: dict = {
|
|
459
|
+
'pair': market['id'],
|
|
460
|
+
}
|
|
461
|
+
if limit is not None:
|
|
462
|
+
request['limit'] = limit # default = 150, max = 2000
|
|
463
|
+
response = self.publicGetDepthPair(self.extend(request, params))
|
|
464
|
+
market_id_in_reponse = (market['id'] in response)
|
|
465
|
+
if not market_id_in_reponse:
|
|
466
|
+
raise ExchangeError(self.id + ' ' + market['symbol'] + ' order book is empty or not available')
|
|
467
|
+
orderbook = response[market['id']]
|
|
468
|
+
return self.parse_order_book(orderbook, symbol)
|
|
469
|
+
|
|
470
|
+
def fetch_order_books(self, symbols: Strings = None, limit: Int = None, params={}):
|
|
471
|
+
"""
|
|
472
|
+
:see: https://yobit.net/en/api
|
|
473
|
+
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data for multiple markets
|
|
474
|
+
:param str[]|None symbols: list of unified market symbols, all symbols fetched if None, default is None
|
|
475
|
+
:param int [limit]: max number of entries per orderbook to return, default is None
|
|
476
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
477
|
+
:returns dict: a dictionary of `order book structures <https://docs.ccxt.com/#/?id=order-book-structure>` indexed by market symbol
|
|
478
|
+
"""
|
|
479
|
+
self.load_markets()
|
|
480
|
+
ids = None
|
|
481
|
+
if symbols is None:
|
|
482
|
+
ids = '-'.join(self.ids)
|
|
483
|
+
# max URL length is 2083 symbols, including http schema, hostname, tld, etc...
|
|
484
|
+
if len(ids) > 2048:
|
|
485
|
+
numIds = len(self.ids)
|
|
486
|
+
raise ExchangeError(self.id + ' fetchOrderBooks() has ' + str(numIds) + ' symbols exceeding max URL length, you are required to specify a list of symbols in the first argument to fetchOrderBooks')
|
|
487
|
+
else:
|
|
488
|
+
ids = self.market_ids(symbols)
|
|
489
|
+
ids = '-'.join(ids)
|
|
490
|
+
request: dict = {
|
|
491
|
+
'pair': ids,
|
|
492
|
+
# 'ignore_invalid': True,
|
|
493
|
+
}
|
|
494
|
+
if limit is not None:
|
|
495
|
+
request['limit'] = limit
|
|
496
|
+
response = self.publicGetDepthPair(self.extend(request, params))
|
|
497
|
+
result: dict = {}
|
|
498
|
+
ids = list(response.keys())
|
|
499
|
+
for i in range(0, len(ids)):
|
|
500
|
+
id = ids[i]
|
|
501
|
+
symbol = self.safe_symbol(id)
|
|
502
|
+
result[symbol] = self.parse_order_book(response[id], symbol)
|
|
503
|
+
return result
|
|
504
|
+
|
|
505
|
+
def parse_ticker(self, ticker: dict, market: Market = None) -> Ticker:
|
|
506
|
+
#
|
|
507
|
+
# {
|
|
508
|
+
# "high": 0.03497582,
|
|
509
|
+
# "low": 0.03248474,
|
|
510
|
+
# "avg": 0.03373028,
|
|
511
|
+
# "vol": 120.11485715062999,
|
|
512
|
+
# "vol_cur": 3572.24914074,
|
|
513
|
+
# "last": 0.0337611,
|
|
514
|
+
# "buy": 0.0337442,
|
|
515
|
+
# "sell": 0.03377798,
|
|
516
|
+
# "updated": 1537522009
|
|
517
|
+
# }
|
|
518
|
+
#
|
|
519
|
+
timestamp = self.safe_timestamp(ticker, 'updated')
|
|
520
|
+
last = self.safe_string(ticker, 'last')
|
|
521
|
+
return self.safe_ticker({
|
|
522
|
+
'symbol': self.safe_symbol(None, market),
|
|
523
|
+
'timestamp': timestamp,
|
|
524
|
+
'datetime': self.iso8601(timestamp),
|
|
525
|
+
'high': self.safe_string(ticker, 'high'),
|
|
526
|
+
'low': self.safe_string(ticker, 'low'),
|
|
527
|
+
'bid': self.safe_string(ticker, 'buy'),
|
|
528
|
+
'bidVolume': None,
|
|
529
|
+
'ask': self.safe_string(ticker, 'sell'),
|
|
530
|
+
'askVolume': None,
|
|
531
|
+
'vwap': None,
|
|
532
|
+
'open': None,
|
|
533
|
+
'close': last,
|
|
534
|
+
'last': last,
|
|
535
|
+
'previousClose': None,
|
|
536
|
+
'change': None,
|
|
537
|
+
'percentage': None,
|
|
538
|
+
'average': self.safe_string(ticker, 'avg'),
|
|
539
|
+
'baseVolume': self.safe_string(ticker, 'vol_cur'),
|
|
540
|
+
'quoteVolume': self.safe_string(ticker, 'vol'),
|
|
541
|
+
'info': ticker,
|
|
542
|
+
}, market)
|
|
543
|
+
|
|
544
|
+
def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
|
545
|
+
"""
|
|
546
|
+
:see: https://yobit.net/en/api
|
|
547
|
+
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
|
|
548
|
+
:param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
|
|
549
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
550
|
+
:returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
|
|
551
|
+
"""
|
|
552
|
+
if symbols is None:
|
|
553
|
+
raise ArgumentsRequired(self.id + ' fetchTickers() requires "symbols" argument')
|
|
554
|
+
self.load_markets()
|
|
555
|
+
symbols = self.market_symbols(symbols)
|
|
556
|
+
ids = None
|
|
557
|
+
if symbols is None:
|
|
558
|
+
ids = self.ids
|
|
559
|
+
else:
|
|
560
|
+
ids = self.market_ids(symbols)
|
|
561
|
+
idsLength = len(ids)
|
|
562
|
+
idsString = '-'.join(ids)
|
|
563
|
+
maxLength = self.safe_integer(self.options, 'maxUrlLength', 2048)
|
|
564
|
+
# max URL length is 2048 symbols, including http schema, hostname, tld, etc...
|
|
565
|
+
lenghtOfBaseUrl = 30 # the url including api-base and endpoint dir is 30 chars
|
|
566
|
+
actualLength = len(idsString) + lenghtOfBaseUrl
|
|
567
|
+
if actualLength > maxLength:
|
|
568
|
+
raise ArgumentsRequired(self.id + ' fetchTickers() is being requested for ' + str(idsLength) + ' markets(which has an URL length of ' + str(actualLength) + ' characters), but it exceedes max URL length(' + str(maxLength) + '), please pass limisted symbols array to fetchTickers to fit in one request')
|
|
569
|
+
request: dict = {
|
|
570
|
+
'pair': idsString,
|
|
571
|
+
}
|
|
572
|
+
tickers = self.publicGetTickerPair(self.extend(request, params))
|
|
573
|
+
result: dict = {}
|
|
574
|
+
keys = list(tickers.keys())
|
|
575
|
+
for k in range(0, len(keys)):
|
|
576
|
+
id = keys[k]
|
|
577
|
+
ticker = tickers[id]
|
|
578
|
+
market = self.safe_market(id)
|
|
579
|
+
symbol = market['symbol']
|
|
580
|
+
result[symbol] = self.parse_ticker(ticker, market)
|
|
581
|
+
return self.filter_by_array_tickers(result, 'symbol', symbols)
|
|
582
|
+
|
|
583
|
+
def fetch_ticker(self, symbol: str, params={}) -> Ticker:
|
|
584
|
+
"""
|
|
585
|
+
:see: https://yobit.net/en/api
|
|
586
|
+
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
|
587
|
+
:param str symbol: unified symbol of the market to fetch the ticker for
|
|
588
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
589
|
+
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
|
590
|
+
"""
|
|
591
|
+
tickers = self.fetch_tickers([symbol], params)
|
|
592
|
+
return tickers[symbol]
|
|
593
|
+
|
|
594
|
+
def parse_trade(self, trade: dict, market: Market = None) -> Trade:
|
|
595
|
+
#
|
|
596
|
+
# fetchTrades(public)
|
|
597
|
+
#
|
|
598
|
+
# {
|
|
599
|
+
# "type":"bid",
|
|
600
|
+
# "price":0.14046179,
|
|
601
|
+
# "amount":0.001,
|
|
602
|
+
# "tid":200256901,
|
|
603
|
+
# "timestamp":1649861004
|
|
604
|
+
# }
|
|
605
|
+
#
|
|
606
|
+
# fetchMyTrades(private)
|
|
607
|
+
#
|
|
608
|
+
# {
|
|
609
|
+
# "pair":"doge_usdt",
|
|
610
|
+
# "type":"sell",
|
|
611
|
+
# "amount":139,
|
|
612
|
+
# "rate":0.139,
|
|
613
|
+
# "order_id":"2101103631773172",
|
|
614
|
+
# "is_your_order":1,
|
|
615
|
+
# "timestamp":"1649861561"
|
|
616
|
+
# }
|
|
617
|
+
#
|
|
618
|
+
timestamp = self.safe_timestamp(trade, 'timestamp')
|
|
619
|
+
side = self.safe_string(trade, 'type')
|
|
620
|
+
if side == 'ask':
|
|
621
|
+
side = 'sell'
|
|
622
|
+
elif side == 'bid':
|
|
623
|
+
side = 'buy'
|
|
624
|
+
priceString = self.safe_string_2(trade, 'rate', 'price')
|
|
625
|
+
id = self.safe_string_2(trade, 'trade_id', 'tid')
|
|
626
|
+
order = self.safe_string(trade, 'order_id')
|
|
627
|
+
marketId = self.safe_string(trade, 'pair')
|
|
628
|
+
symbol = self.safe_symbol(marketId, market)
|
|
629
|
+
amountString = self.safe_string(trade, 'amount')
|
|
630
|
+
# arguments for calculateFee(need to be numbers)
|
|
631
|
+
price = self.parse_number(priceString)
|
|
632
|
+
amount = self.parse_number(amountString)
|
|
633
|
+
type = 'limit' # all trades are still limit trades
|
|
634
|
+
fee = None
|
|
635
|
+
feeCostString = self.safe_number(trade, 'commission')
|
|
636
|
+
if feeCostString is not None:
|
|
637
|
+
feeCurrencyId = self.safe_string(trade, 'commissionCurrency')
|
|
638
|
+
feeCurrencyCode = self.safe_currency_code(feeCurrencyId)
|
|
639
|
+
fee = {
|
|
640
|
+
'cost': feeCostString,
|
|
641
|
+
'currency': feeCurrencyCode,
|
|
642
|
+
}
|
|
643
|
+
isYourOrder = self.safe_string(trade, 'is_your_order')
|
|
644
|
+
if isYourOrder is not None:
|
|
645
|
+
if fee is None:
|
|
646
|
+
feeInNumbers = self.calculate_fee(symbol, type, side, amount, price, 'taker')
|
|
647
|
+
fee = {
|
|
648
|
+
'currency': self.safe_string(feeInNumbers, 'currency'),
|
|
649
|
+
'cost': self.safe_string(feeInNumbers, 'cost'),
|
|
650
|
+
'rate': self.safe_string(feeInNumbers, 'rate'),
|
|
651
|
+
}
|
|
652
|
+
return self.safe_trade({
|
|
653
|
+
'id': id,
|
|
654
|
+
'order': order,
|
|
655
|
+
'timestamp': timestamp,
|
|
656
|
+
'datetime': self.iso8601(timestamp),
|
|
657
|
+
'symbol': symbol,
|
|
658
|
+
'type': type,
|
|
659
|
+
'side': side,
|
|
660
|
+
'takerOrMaker': None,
|
|
661
|
+
'price': priceString,
|
|
662
|
+
'amount': amountString,
|
|
663
|
+
'cost': None,
|
|
664
|
+
'fee': fee,
|
|
665
|
+
'info': trade,
|
|
666
|
+
}, market)
|
|
667
|
+
|
|
668
|
+
def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
|
669
|
+
"""
|
|
670
|
+
:see: https://yobit.net/en/api
|
|
671
|
+
get the list of most recent trades for a particular symbol
|
|
672
|
+
:param str symbol: unified symbol of the market to fetch trades for
|
|
673
|
+
:param int [since]: timestamp in ms of the earliest trade to fetch
|
|
674
|
+
:param int [limit]: the maximum amount of trades to fetch
|
|
675
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
676
|
+
:returns Trade[]: a list of `trade structures <https://docs.ccxt.com/#/?id=public-trades>`
|
|
677
|
+
"""
|
|
678
|
+
self.load_markets()
|
|
679
|
+
market = self.market(symbol)
|
|
680
|
+
request: dict = {
|
|
681
|
+
'pair': market['id'],
|
|
682
|
+
}
|
|
683
|
+
if limit is not None:
|
|
684
|
+
request['limit'] = limit
|
|
685
|
+
response = self.publicGetTradesPair(self.extend(request, params))
|
|
686
|
+
#
|
|
687
|
+
# {
|
|
688
|
+
# "doge_usdt": [
|
|
689
|
+
# {
|
|
690
|
+
# "type":"ask",
|
|
691
|
+
# "price":0.13956743,
|
|
692
|
+
# "amount":0.0008,
|
|
693
|
+
# "tid":200256900,
|
|
694
|
+
# "timestamp":1649860521
|
|
695
|
+
# },
|
|
696
|
+
# ]
|
|
697
|
+
# }
|
|
698
|
+
#
|
|
699
|
+
if isinstance(response, list):
|
|
700
|
+
numElements = len(response)
|
|
701
|
+
if numElements == 0:
|
|
702
|
+
return []
|
|
703
|
+
result = self.safe_list(response, market['id'], [])
|
|
704
|
+
return self.parse_trades(result, market, since, limit)
|
|
705
|
+
|
|
706
|
+
def fetch_trading_fees(self, params={}) -> TradingFees:
|
|
707
|
+
"""
|
|
708
|
+
:see: https://yobit.net/en/api
|
|
709
|
+
fetch the trading fees for multiple markets
|
|
710
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
711
|
+
:returns dict: a dictionary of `fee structures <https://docs.ccxt.com/#/?id=fee-structure>` indexed by market symbols
|
|
712
|
+
"""
|
|
713
|
+
self.load_markets()
|
|
714
|
+
response = self.publicGetInfo(params)
|
|
715
|
+
#
|
|
716
|
+
# {
|
|
717
|
+
# "server_time":1615856752,
|
|
718
|
+
# "pairs":{
|
|
719
|
+
# "ltc_btc":{
|
|
720
|
+
# "decimal_places":8,
|
|
721
|
+
# "min_price":0.00000001,
|
|
722
|
+
# "max_price":10000,
|
|
723
|
+
# "min_amount":0.0001,
|
|
724
|
+
# "min_total":0.0001,
|
|
725
|
+
# "hidden":0,
|
|
726
|
+
# "fee":0.2,
|
|
727
|
+
# "fee_buyer":0.2,
|
|
728
|
+
# "fee_seller":0.2
|
|
729
|
+
# },
|
|
730
|
+
# ...
|
|
731
|
+
# },
|
|
732
|
+
# }
|
|
733
|
+
#
|
|
734
|
+
pairs = self.safe_dict(response, 'pairs', {})
|
|
735
|
+
marketIds = list(pairs.keys())
|
|
736
|
+
result: dict = {}
|
|
737
|
+
for i in range(0, len(marketIds)):
|
|
738
|
+
marketId = marketIds[i]
|
|
739
|
+
pair = self.safe_dict(pairs, marketId, {})
|
|
740
|
+
symbol = self.safe_symbol(marketId, None, '_')
|
|
741
|
+
takerString = self.safe_string(pair, 'fee_buyer')
|
|
742
|
+
makerString = self.safe_string(pair, 'fee_seller')
|
|
743
|
+
taker = self.parse_number(Precise.string_div(takerString, '100'))
|
|
744
|
+
maker = self.parse_number(Precise.string_div(makerString, '100'))
|
|
745
|
+
result[symbol] = {
|
|
746
|
+
'info': pair,
|
|
747
|
+
'symbol': symbol,
|
|
748
|
+
'taker': taker,
|
|
749
|
+
'maker': maker,
|
|
750
|
+
'percentage': True,
|
|
751
|
+
'tierBased': False,
|
|
752
|
+
}
|
|
753
|
+
return result
|
|
754
|
+
|
|
755
|
+
def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
|
|
756
|
+
"""
|
|
757
|
+
:see: https://yobit.net/en/api
|
|
758
|
+
create a trade order
|
|
759
|
+
:param str symbol: unified symbol of the market to create an order in
|
|
760
|
+
:param str type: must be 'limit'
|
|
761
|
+
:param str side: 'buy' or 'sell'
|
|
762
|
+
:param float amount: how much of currency you want to trade in units of base currency
|
|
763
|
+
:param float [price]: the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
|
|
764
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
765
|
+
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
766
|
+
"""
|
|
767
|
+
if type == 'market':
|
|
768
|
+
raise ExchangeError(self.id + ' createOrder() allows limit orders only')
|
|
769
|
+
self.load_markets()
|
|
770
|
+
market = self.market(symbol)
|
|
771
|
+
request: dict = {
|
|
772
|
+
'pair': market['id'],
|
|
773
|
+
'type': side,
|
|
774
|
+
'amount': self.amount_to_precision(symbol, amount),
|
|
775
|
+
'rate': self.price_to_precision(symbol, price),
|
|
776
|
+
}
|
|
777
|
+
response = self.privatePostTrade(self.extend(request, params))
|
|
778
|
+
#
|
|
779
|
+
# {
|
|
780
|
+
# "success":1,
|
|
781
|
+
# "return": {
|
|
782
|
+
# "received":0,
|
|
783
|
+
# "remains":10,
|
|
784
|
+
# "order_id":1101103635125179,
|
|
785
|
+
# "funds": {
|
|
786
|
+
# "usdt":27.84756553,
|
|
787
|
+
# "usdttrc20":0,
|
|
788
|
+
# "doge":19.98327206
|
|
789
|
+
# },
|
|
790
|
+
# "funds_incl_orders": {
|
|
791
|
+
# "usdt":30.35256553,
|
|
792
|
+
# "usdttrc20":0,
|
|
793
|
+
# "doge":19.98327206
|
|
794
|
+
# },
|
|
795
|
+
# "server_time":1650114256
|
|
796
|
+
# }
|
|
797
|
+
# }
|
|
798
|
+
#
|
|
799
|
+
result = self.safe_dict(response, 'return')
|
|
800
|
+
return self.parse_order(result, market)
|
|
801
|
+
|
|
802
|
+
def cancel_order(self, id: str, symbol: Str = None, params={}):
|
|
803
|
+
"""
|
|
804
|
+
:see: https://yobit.net/en/api
|
|
805
|
+
cancels an open order
|
|
806
|
+
:param str id: order id
|
|
807
|
+
:param str symbol: not used by yobit cancelOrder()
|
|
808
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
809
|
+
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
810
|
+
"""
|
|
811
|
+
self.load_markets()
|
|
812
|
+
request: dict = {
|
|
813
|
+
'order_id': int(id),
|
|
814
|
+
}
|
|
815
|
+
response = self.privatePostCancelOrder(self.extend(request, params))
|
|
816
|
+
#
|
|
817
|
+
# {
|
|
818
|
+
# "success":1,
|
|
819
|
+
# "return": {
|
|
820
|
+
# "order_id":1101103632552304,
|
|
821
|
+
# "funds": {
|
|
822
|
+
# "usdt":30.71055443,
|
|
823
|
+
# "usdttrc20":0,
|
|
824
|
+
# "doge":9.98327206
|
|
825
|
+
# },
|
|
826
|
+
# "funds_incl_orders": {
|
|
827
|
+
# "usdt":31.81275443,
|
|
828
|
+
# "usdttrc20":0,
|
|
829
|
+
# "doge":9.98327206
|
|
830
|
+
# },
|
|
831
|
+
# "server_time":1649918298
|
|
832
|
+
# }
|
|
833
|
+
# }
|
|
834
|
+
#
|
|
835
|
+
result = self.safe_dict(response, 'return', {})
|
|
836
|
+
return self.parse_order(result)
|
|
837
|
+
|
|
838
|
+
def parse_order_status(self, status: Str):
|
|
839
|
+
statuses: dict = {
|
|
840
|
+
'0': 'open',
|
|
841
|
+
'1': 'closed',
|
|
842
|
+
'2': 'canceled',
|
|
843
|
+
'3': 'open', # or partially-filled and canceled? https://github.com/ccxt/ccxt/issues/1594
|
|
844
|
+
}
|
|
845
|
+
return self.safe_string(statuses, status, status)
|
|
846
|
+
|
|
847
|
+
def parse_order(self, order: dict, market: Market = None) -> Order:
|
|
848
|
+
#
|
|
849
|
+
# createOrder(private)
|
|
850
|
+
#
|
|
851
|
+
# {
|
|
852
|
+
# "received":0,
|
|
853
|
+
# "remains":10,
|
|
854
|
+
# "order_id":1101103635125179,
|
|
855
|
+
# "funds": {
|
|
856
|
+
# "usdt":27.84756553,
|
|
857
|
+
# "usdttrc20":0,
|
|
858
|
+
# "doge":19.98327206
|
|
859
|
+
# },
|
|
860
|
+
# "funds_incl_orders": {
|
|
861
|
+
# "usdt":30.35256553,
|
|
862
|
+
# "usdttrc20":0,
|
|
863
|
+
# "doge":19.98327206
|
|
864
|
+
# },
|
|
865
|
+
# "server_time":1650114256
|
|
866
|
+
# }
|
|
867
|
+
#
|
|
868
|
+
# fetchOrder(private)
|
|
869
|
+
#
|
|
870
|
+
# {
|
|
871
|
+
# "id: "1101103635103335", # id-field is manually added in fetchOrder() from exchange response id-order dictionary structure
|
|
872
|
+
# "pair":"doge_usdt",
|
|
873
|
+
# "type":"buy",
|
|
874
|
+
# "start_amount":10,
|
|
875
|
+
# "amount":10,
|
|
876
|
+
# "rate":0.05,
|
|
877
|
+
# "timestamp_created":"1650112553",
|
|
878
|
+
# "status":0
|
|
879
|
+
# }
|
|
880
|
+
#
|
|
881
|
+
# fetchOpenOrders(private)
|
|
882
|
+
#
|
|
883
|
+
# {
|
|
884
|
+
# "id":"1101103635103335", # id-field is manually added in fetchOpenOrders() from exchange response id-order dictionary structure
|
|
885
|
+
# "pair":"doge_usdt",
|
|
886
|
+
# "type":"buy",
|
|
887
|
+
# "amount":10,
|
|
888
|
+
# "rate":0.05,
|
|
889
|
+
# "timestamp_created":"1650112553",
|
|
890
|
+
# "status":0
|
|
891
|
+
# }
|
|
892
|
+
#
|
|
893
|
+
# cancelOrder(private)
|
|
894
|
+
#
|
|
895
|
+
# {
|
|
896
|
+
# "order_id":1101103634000197,
|
|
897
|
+
# "funds": {
|
|
898
|
+
# "usdt":31.81275443,
|
|
899
|
+
# "usdttrc20":0,
|
|
900
|
+
# "doge":9.98327206
|
|
901
|
+
# },
|
|
902
|
+
# "funds_incl_orders": {
|
|
903
|
+
# "usdt":31.81275443,
|
|
904
|
+
# "usdttrc20":0,
|
|
905
|
+
# "doge":9.98327206
|
|
906
|
+
# }
|
|
907
|
+
# }
|
|
908
|
+
#
|
|
909
|
+
id = self.safe_string_2(order, 'id', 'order_id')
|
|
910
|
+
status = self.parse_order_status(self.safe_string(order, 'status', 'open'))
|
|
911
|
+
if id == '0':
|
|
912
|
+
id = self.safe_string(order, 'init_order_id')
|
|
913
|
+
status = 'closed'
|
|
914
|
+
timestamp = self.safe_timestamp_2(order, 'timestamp_created', 'server_time')
|
|
915
|
+
marketId = self.safe_string(order, 'pair')
|
|
916
|
+
symbol = self.safe_symbol(marketId, market)
|
|
917
|
+
amount = self.safe_string(order, 'start_amount')
|
|
918
|
+
remaining = self.safe_string_2(order, 'amount', 'remains')
|
|
919
|
+
filled = self.safe_string(order, 'received', '0.0')
|
|
920
|
+
price = self.safe_string(order, 'rate')
|
|
921
|
+
fee = None
|
|
922
|
+
type = 'limit'
|
|
923
|
+
side = self.safe_string(order, 'type')
|
|
924
|
+
return self.safe_order({
|
|
925
|
+
'info': order,
|
|
926
|
+
'id': id,
|
|
927
|
+
'clientOrderId': None,
|
|
928
|
+
'symbol': symbol,
|
|
929
|
+
'timestamp': timestamp,
|
|
930
|
+
'datetime': self.iso8601(timestamp),
|
|
931
|
+
'lastTradeTimestamp': None,
|
|
932
|
+
'type': type,
|
|
933
|
+
'timeInForce': None,
|
|
934
|
+
'postOnly': None,
|
|
935
|
+
'side': side,
|
|
936
|
+
'price': price,
|
|
937
|
+
'stopPrice': None,
|
|
938
|
+
'triggerPrice': None,
|
|
939
|
+
'cost': None,
|
|
940
|
+
'amount': amount,
|
|
941
|
+
'remaining': remaining,
|
|
942
|
+
'filled': filled,
|
|
943
|
+
'status': status,
|
|
944
|
+
'fee': fee,
|
|
945
|
+
'average': None,
|
|
946
|
+
'trades': None,
|
|
947
|
+
}, market)
|
|
948
|
+
|
|
949
|
+
def fetch_order(self, id: str, symbol: Str = None, params={}):
|
|
950
|
+
"""
|
|
951
|
+
:see: https://yobit.net/en/api
|
|
952
|
+
fetches information on an order made by the user
|
|
953
|
+
:param str symbol: not used by yobit fetchOrder
|
|
954
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
955
|
+
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
956
|
+
"""
|
|
957
|
+
self.load_markets()
|
|
958
|
+
request: dict = {
|
|
959
|
+
'order_id': int(id),
|
|
960
|
+
}
|
|
961
|
+
response = self.privatePostOrderInfo(self.extend(request, params))
|
|
962
|
+
id = str(id)
|
|
963
|
+
orders = self.safe_dict(response, 'return', {})
|
|
964
|
+
#
|
|
965
|
+
# {
|
|
966
|
+
# "success":1,
|
|
967
|
+
# "return": {
|
|
968
|
+
# "1101103635103335": {
|
|
969
|
+
# "pair":"doge_usdt",
|
|
970
|
+
# "type":"buy",
|
|
971
|
+
# "start_amount":10,
|
|
972
|
+
# "amount":10,
|
|
973
|
+
# "rate":0.05,
|
|
974
|
+
# "timestamp_created":"1650112553",
|
|
975
|
+
# "status":0
|
|
976
|
+
# }
|
|
977
|
+
# }
|
|
978
|
+
# }
|
|
979
|
+
#
|
|
980
|
+
return self.parse_order(self.extend({'id': id}, orders[id]))
|
|
981
|
+
|
|
982
|
+
def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
983
|
+
"""
|
|
984
|
+
:see: https://yobit.net/en/api
|
|
985
|
+
fetch all unfilled currently open orders
|
|
986
|
+
:param str symbol: unified market symbol
|
|
987
|
+
:param int [since]: the earliest time in ms to fetch open orders for
|
|
988
|
+
:param int [limit]: the maximum number of open order structures to retrieve
|
|
989
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
990
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
991
|
+
"""
|
|
992
|
+
if symbol is None:
|
|
993
|
+
raise ArgumentsRequired(self.id + ' fetchOpenOrders() requires a symbol argument')
|
|
994
|
+
self.load_markets()
|
|
995
|
+
request: dict = {}
|
|
996
|
+
market = None
|
|
997
|
+
if symbol is not None:
|
|
998
|
+
marketInner = self.market(symbol)
|
|
999
|
+
request['pair'] = marketInner['id']
|
|
1000
|
+
response = self.privatePostActiveOrders(self.extend(request, params))
|
|
1001
|
+
#
|
|
1002
|
+
# {
|
|
1003
|
+
# "success":1,
|
|
1004
|
+
# "return": {
|
|
1005
|
+
# "1101103634006799": {
|
|
1006
|
+
# "pair":"doge_usdt",
|
|
1007
|
+
# "type":"buy",
|
|
1008
|
+
# "amount":10,
|
|
1009
|
+
# "rate":0.1,
|
|
1010
|
+
# "timestamp_created":"1650034937",
|
|
1011
|
+
# "status":0
|
|
1012
|
+
# },
|
|
1013
|
+
# "1101103634006738": {
|
|
1014
|
+
# "pair":"doge_usdt",
|
|
1015
|
+
# "type":"buy",
|
|
1016
|
+
# "amount":10,
|
|
1017
|
+
# "rate":0.1,
|
|
1018
|
+
# "timestamp_created":"1650034932",
|
|
1019
|
+
# "status":0
|
|
1020
|
+
# }
|
|
1021
|
+
# }
|
|
1022
|
+
# }
|
|
1023
|
+
#
|
|
1024
|
+
result = self.safe_dict(response, 'return', {})
|
|
1025
|
+
return self.parse_orders(result, market, since, limit)
|
|
1026
|
+
|
|
1027
|
+
def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
1028
|
+
"""
|
|
1029
|
+
:see: https://yobit.net/en/api
|
|
1030
|
+
fetch all trades made by the user
|
|
1031
|
+
:param str symbol: unified market symbol
|
|
1032
|
+
:param int [since]: the earliest time in ms to fetch trades for
|
|
1033
|
+
:param int [limit]: the maximum number of trades structures to retrieve
|
|
1034
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1035
|
+
:returns Trade[]: a list of `trade structures <https://docs.ccxt.com/#/?id=trade-structure>`
|
|
1036
|
+
"""
|
|
1037
|
+
if symbol is None:
|
|
1038
|
+
raise ArgumentsRequired(self.id + ' fetchMyTrades() requires a symbol argument')
|
|
1039
|
+
self.load_markets()
|
|
1040
|
+
market = self.market(symbol)
|
|
1041
|
+
# some derived classes use camelcase notation for request fields
|
|
1042
|
+
request: dict = {
|
|
1043
|
+
# 'from': 123456789, # trade ID, from which the display starts numerical 0(test result: liqui ignores self field)
|
|
1044
|
+
# 'count': 1000, # the number of trades for display numerical, default = 1000
|
|
1045
|
+
# 'from_id': trade ID, from which the display starts numerical 0
|
|
1046
|
+
# 'end_id': trade ID on which the display ends numerical ∞
|
|
1047
|
+
# 'order': 'ASC', # sorting, default = DESC(test result: liqui ignores self field, most recent trade always goes last)
|
|
1048
|
+
# 'since': 1234567890, # UTC start time, default = 0(test result: liqui ignores self field)
|
|
1049
|
+
# 'end': 1234567890, # UTC end time, default = ∞(test result: liqui ignores self field)
|
|
1050
|
+
'pair': market['id'],
|
|
1051
|
+
}
|
|
1052
|
+
if limit is not None:
|
|
1053
|
+
request['count'] = limit
|
|
1054
|
+
if since is not None:
|
|
1055
|
+
request['since'] = self.parse_to_int(since / 1000)
|
|
1056
|
+
response = self.privatePostTradeHistory(self.extend(request, params))
|
|
1057
|
+
#
|
|
1058
|
+
# {
|
|
1059
|
+
# "success":1,
|
|
1060
|
+
# "return": {
|
|
1061
|
+
# "200257004": {
|
|
1062
|
+
# "pair":"doge_usdt",
|
|
1063
|
+
# "type":"sell",
|
|
1064
|
+
# "amount":139,
|
|
1065
|
+
# "rate":0.139,
|
|
1066
|
+
# "order_id":"2101103631773172",
|
|
1067
|
+
# "is_your_order":1,
|
|
1068
|
+
# "timestamp":"1649861561"
|
|
1069
|
+
# }
|
|
1070
|
+
# }
|
|
1071
|
+
# }
|
|
1072
|
+
#
|
|
1073
|
+
trades = self.safe_dict(response, 'return', {})
|
|
1074
|
+
ids = list(trades.keys())
|
|
1075
|
+
result = []
|
|
1076
|
+
for i in range(0, len(ids)):
|
|
1077
|
+
id = ids[i]
|
|
1078
|
+
trade = self.parse_trade(self.extend(trades[id], {
|
|
1079
|
+
'trade_id': id,
|
|
1080
|
+
}), market)
|
|
1081
|
+
result.append(trade)
|
|
1082
|
+
return self.filter_by_symbol_since_limit(result, market['symbol'], since, limit)
|
|
1083
|
+
|
|
1084
|
+
def create_deposit_address(self, code: str, params={}):
|
|
1085
|
+
"""
|
|
1086
|
+
:see: https://yobit.net/en/api
|
|
1087
|
+
create a currency deposit address
|
|
1088
|
+
:param str code: unified currency code of the currency for the deposit address
|
|
1089
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1090
|
+
:returns dict: an `address structure <https://docs.ccxt.com/#/?id=address-structure>`
|
|
1091
|
+
"""
|
|
1092
|
+
request: dict = {
|
|
1093
|
+
'need_new': 1,
|
|
1094
|
+
}
|
|
1095
|
+
response = self.fetch_deposit_address(code, self.extend(request, params))
|
|
1096
|
+
address = self.safe_string(response, 'address')
|
|
1097
|
+
self.check_address(address)
|
|
1098
|
+
return {
|
|
1099
|
+
'currency': code,
|
|
1100
|
+
'address': address,
|
|
1101
|
+
'tag': None,
|
|
1102
|
+
'info': response['info'],
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
def fetch_deposit_address(self, code: str, params={}):
|
|
1106
|
+
"""
|
|
1107
|
+
:see: https://yobit.net/en/api
|
|
1108
|
+
fetch the deposit address for a currency associated with self account
|
|
1109
|
+
:param str code: unified currency code
|
|
1110
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1111
|
+
:returns dict: an `address structure <https://docs.ccxt.com/#/?id=address-structure>`
|
|
1112
|
+
"""
|
|
1113
|
+
self.load_markets()
|
|
1114
|
+
currency = self.currency(code)
|
|
1115
|
+
currencyId = currency['id']
|
|
1116
|
+
networks = self.safe_dict(self.options, 'networks', {})
|
|
1117
|
+
network = self.safe_string_upper(params, 'network') # self line allows the user to specify either ERC20 or ETH
|
|
1118
|
+
network = self.safe_string(networks, network, network) # handle ERC20>ETH alias
|
|
1119
|
+
if network is not None:
|
|
1120
|
+
if network != 'ERC20':
|
|
1121
|
+
currencyId = currencyId + network.lower()
|
|
1122
|
+
params = self.omit(params, 'network')
|
|
1123
|
+
request: dict = {
|
|
1124
|
+
'coinName': currencyId,
|
|
1125
|
+
'need_new': 0,
|
|
1126
|
+
}
|
|
1127
|
+
response = self.privatePostGetDepositAddress(self.extend(request, params))
|
|
1128
|
+
address = self.safe_string(response['return'], 'address')
|
|
1129
|
+
self.check_address(address)
|
|
1130
|
+
return {
|
|
1131
|
+
'id': None,
|
|
1132
|
+
'currency': code,
|
|
1133
|
+
'address': address,
|
|
1134
|
+
'tag': None,
|
|
1135
|
+
'network': None,
|
|
1136
|
+
'info': response,
|
|
1137
|
+
'txid': None,
|
|
1138
|
+
'type': None,
|
|
1139
|
+
'amount': None,
|
|
1140
|
+
'status': None,
|
|
1141
|
+
'timestamp': None,
|
|
1142
|
+
'datetime': None,
|
|
1143
|
+
'addressFrom': None,
|
|
1144
|
+
'addressTo': None,
|
|
1145
|
+
'tagFrom': None,
|
|
1146
|
+
'tagTo': None,
|
|
1147
|
+
'updated': None,
|
|
1148
|
+
'comment': None,
|
|
1149
|
+
'fee': {
|
|
1150
|
+
'currency': None,
|
|
1151
|
+
'cost': None,
|
|
1152
|
+
'rate': None,
|
|
1153
|
+
},
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
|
1157
|
+
"""
|
|
1158
|
+
:see: https://yobit.net/en/api
|
|
1159
|
+
make a withdrawal
|
|
1160
|
+
:param str code: unified currency code
|
|
1161
|
+
:param float amount: the amount to withdraw
|
|
1162
|
+
:param str address: the address to withdraw to
|
|
1163
|
+
:param str tag:
|
|
1164
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1165
|
+
:returns dict: a `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1166
|
+
"""
|
|
1167
|
+
tag, params = self.handle_withdraw_tag_and_params(tag, params)
|
|
1168
|
+
self.check_address(address)
|
|
1169
|
+
self.load_markets()
|
|
1170
|
+
currency = self.currency(code)
|
|
1171
|
+
request: dict = {
|
|
1172
|
+
'coinName': currency['id'],
|
|
1173
|
+
'amount': amount,
|
|
1174
|
+
'address': address,
|
|
1175
|
+
}
|
|
1176
|
+
# no docs on the tag, yet...
|
|
1177
|
+
if tag is not None:
|
|
1178
|
+
raise ExchangeError(self.id + ' withdraw() does not support the tag argument yet due to a lack of docs on withdrawing with tag/memo on behalf of the exchange.')
|
|
1179
|
+
response = self.privatePostWithdrawCoinsToAddress(self.extend(request, params))
|
|
1180
|
+
return {
|
|
1181
|
+
'info': response,
|
|
1182
|
+
'id': None,
|
|
1183
|
+
'txid': None,
|
|
1184
|
+
'type': None,
|
|
1185
|
+
'currency': None,
|
|
1186
|
+
'network': None,
|
|
1187
|
+
'amount': None,
|
|
1188
|
+
'status': None,
|
|
1189
|
+
'timestamp': None,
|
|
1190
|
+
'datetime': None,
|
|
1191
|
+
'address': None,
|
|
1192
|
+
'addressFrom': None,
|
|
1193
|
+
'addressTo': None,
|
|
1194
|
+
'tag': None,
|
|
1195
|
+
'tagFrom': None,
|
|
1196
|
+
'tagTo': None,
|
|
1197
|
+
'updated': None,
|
|
1198
|
+
'comment': None,
|
|
1199
|
+
'fee': {
|
|
1200
|
+
'currency': None,
|
|
1201
|
+
'cost': None,
|
|
1202
|
+
'rate': None,
|
|
1203
|
+
},
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
def sign(self, path, api='public', method='GET', params={}, headers=None, body=None):
|
|
1207
|
+
url = self.urls['api'][api]
|
|
1208
|
+
query = self.omit(params, self.extract_params(path))
|
|
1209
|
+
if api == 'private':
|
|
1210
|
+
self.check_required_credentials()
|
|
1211
|
+
nonce = self.nonce()
|
|
1212
|
+
body = self.urlencode(self.extend({
|
|
1213
|
+
'nonce': nonce,
|
|
1214
|
+
'method': path,
|
|
1215
|
+
}, query))
|
|
1216
|
+
signature = self.hmac(self.encode(body), self.encode(self.secret), hashlib.sha512)
|
|
1217
|
+
headers = {
|
|
1218
|
+
'Content-Type': 'application/x-www-form-urlencoded',
|
|
1219
|
+
'Key': self.apiKey,
|
|
1220
|
+
'Sign': signature,
|
|
1221
|
+
}
|
|
1222
|
+
elif api == 'public':
|
|
1223
|
+
url += '/' + self.version + '/' + self.implode_params(path, params)
|
|
1224
|
+
if query:
|
|
1225
|
+
url += '?' + self.urlencode(query)
|
|
1226
|
+
else:
|
|
1227
|
+
url += '/' + self.implode_params(path, params)
|
|
1228
|
+
if method == 'GET':
|
|
1229
|
+
if query:
|
|
1230
|
+
url += '?' + self.urlencode(query)
|
|
1231
|
+
else:
|
|
1232
|
+
if query:
|
|
1233
|
+
body = self.json(query)
|
|
1234
|
+
headers = {
|
|
1235
|
+
'Content-Type': 'application/json',
|
|
1236
|
+
}
|
|
1237
|
+
return {'url': url, 'method': method, 'body': body, 'headers': headers}
|
|
1238
|
+
|
|
1239
|
+
def handle_errors(self, httpCode: int, reason: str, url: str, method: str, headers: dict, body: str, response, requestHeaders, requestBody):
|
|
1240
|
+
if response is None:
|
|
1241
|
+
return None # fallback to default error handler
|
|
1242
|
+
if 'success' in response:
|
|
1243
|
+
#
|
|
1244
|
+
# 1 - Liqui only returns the integer 'success' key from their private API
|
|
1245
|
+
#
|
|
1246
|
+
# {"success": 1, ...} httpCode == 200
|
|
1247
|
+
# {"success": 0, ...} httpCode == 200
|
|
1248
|
+
#
|
|
1249
|
+
# 2 - However, exchanges derived from Liqui, can return non-integers
|
|
1250
|
+
#
|
|
1251
|
+
# It can be a numeric string
|
|
1252
|
+
# {"sucesss": "1", ...}
|
|
1253
|
+
# {"sucesss": "0", ...}, httpCode >= 200(can be 403, 502, etc)
|
|
1254
|
+
#
|
|
1255
|
+
# Or just a string
|
|
1256
|
+
# {"success": "true", ...}
|
|
1257
|
+
# {"success": "false", ...}, httpCode >= 200
|
|
1258
|
+
#
|
|
1259
|
+
# Or a boolean
|
|
1260
|
+
# {"success": True, ...}
|
|
1261
|
+
# {"success": False, ...}, httpCode >= 200
|
|
1262
|
+
#
|
|
1263
|
+
# 3 - Oversimplified, Python PEP8 forbids comparison operator(==) of different types
|
|
1264
|
+
#
|
|
1265
|
+
# 4 - We do not want to copy-paste and duplicate the code of self handler to other exchanges derived from Liqui
|
|
1266
|
+
#
|
|
1267
|
+
# To cover points 1, 2, 3 and 4 combined self handler should work like self:
|
|
1268
|
+
#
|
|
1269
|
+
success = self.safe_value(response, 'success') # don't replace with safeBool here
|
|
1270
|
+
if isinstance(success, str):
|
|
1271
|
+
if (success == 'true') or (success == '1'):
|
|
1272
|
+
success = True
|
|
1273
|
+
else:
|
|
1274
|
+
success = False
|
|
1275
|
+
if not success:
|
|
1276
|
+
code = self.safe_string(response, 'code')
|
|
1277
|
+
message = self.safe_string(response, 'error')
|
|
1278
|
+
feedback = self.id + ' ' + body
|
|
1279
|
+
self.throw_exactly_matched_exception(self.exceptions['exact'], code, feedback)
|
|
1280
|
+
self.throw_exactly_matched_exception(self.exceptions['exact'], message, feedback)
|
|
1281
|
+
self.throw_broadly_matched_exception(self.exceptions['broad'], message, feedback)
|
|
1282
|
+
raise ExchangeError(feedback) # unknown message
|
|
1283
|
+
return None
|