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
|
@@ -0,0 +1,1484 @@
|
|
|
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.async_support.base.exchange import Exchange
|
|
7
|
+
from ccxt.abstract.novadax import ImplicitAPI
|
|
8
|
+
import hashlib
|
|
9
|
+
from ccxt.base.types import Account, Balances, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
|
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 PermissionDenied
|
|
14
|
+
from ccxt.base.errors import AccountNotEnabled
|
|
15
|
+
from ccxt.base.errors import AccountSuspended
|
|
16
|
+
from ccxt.base.errors import ArgumentsRequired
|
|
17
|
+
from ccxt.base.errors import BadRequest
|
|
18
|
+
from ccxt.base.errors import BadSymbol
|
|
19
|
+
from ccxt.base.errors import InsufficientFunds
|
|
20
|
+
from ccxt.base.errors import InvalidOrder
|
|
21
|
+
from ccxt.base.errors import OrderNotFound
|
|
22
|
+
from ccxt.base.errors import CancelPending
|
|
23
|
+
from ccxt.base.errors import RateLimitExceeded
|
|
24
|
+
from ccxt.base.errors import OnMaintenance
|
|
25
|
+
from ccxt.base.decimal_to_precision import TICK_SIZE
|
|
26
|
+
from ccxt.base.precise import Precise
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class novadax(Exchange, ImplicitAPI):
|
|
30
|
+
|
|
31
|
+
def describe(self):
|
|
32
|
+
return self.deep_extend(super(novadax, self).describe(), {
|
|
33
|
+
'id': 'novadax',
|
|
34
|
+
'name': 'NovaDAX',
|
|
35
|
+
'countries': ['BR'], # Brazil
|
|
36
|
+
# 6000 weight per min => 100 weight per second => min weight = 1
|
|
37
|
+
# 100 requests per second =>( 1000ms / 100 ) = 10 ms between requests on average
|
|
38
|
+
'rateLimit': 10,
|
|
39
|
+
'version': 'v1',
|
|
40
|
+
# new metainfo interface
|
|
41
|
+
'has': {
|
|
42
|
+
'CORS': None,
|
|
43
|
+
'spot': True,
|
|
44
|
+
'margin': False,
|
|
45
|
+
'swap': False,
|
|
46
|
+
'future': False,
|
|
47
|
+
'option': False,
|
|
48
|
+
'addMargin': False,
|
|
49
|
+
'cancelOrder': True,
|
|
50
|
+
'closeAllPositions': False,
|
|
51
|
+
'closePosition': False,
|
|
52
|
+
'createMarketBuyOrderWithCost': True,
|
|
53
|
+
'createMarketOrderWithCost': False,
|
|
54
|
+
'createMarketSellOrderWithCost': False,
|
|
55
|
+
'createOrder': True,
|
|
56
|
+
'createReduceOnlyOrder': False,
|
|
57
|
+
'createStopLimitOrder': True,
|
|
58
|
+
'createStopMarketOrder': True,
|
|
59
|
+
'createStopOrder': True,
|
|
60
|
+
'fetchAccounts': True,
|
|
61
|
+
'fetchBalance': True,
|
|
62
|
+
'fetchBorrowRateHistories': False,
|
|
63
|
+
'fetchBorrowRateHistory': False,
|
|
64
|
+
'fetchClosedOrders': True,
|
|
65
|
+
'fetchCrossBorrowRate': False,
|
|
66
|
+
'fetchCrossBorrowRates': False,
|
|
67
|
+
'fetchDepositAddress': False,
|
|
68
|
+
'fetchDepositAddresses': False,
|
|
69
|
+
'fetchDepositAddressesByNetwork': False,
|
|
70
|
+
'fetchDeposits': True,
|
|
71
|
+
'fetchDepositsWithdrawals': True,
|
|
72
|
+
'fetchFundingHistory': False,
|
|
73
|
+
'fetchFundingRate': False,
|
|
74
|
+
'fetchFundingRateHistory': False,
|
|
75
|
+
'fetchFundingRates': False,
|
|
76
|
+
'fetchIndexOHLCV': False,
|
|
77
|
+
'fetchIsolatedBorrowRate': False,
|
|
78
|
+
'fetchIsolatedBorrowRates': False,
|
|
79
|
+
'fetchLeverage': False,
|
|
80
|
+
'fetchLeverageTiers': False,
|
|
81
|
+
'fetchMarkets': True,
|
|
82
|
+
'fetchMarkOHLCV': False,
|
|
83
|
+
'fetchMyTrades': True,
|
|
84
|
+
'fetchOHLCV': True,
|
|
85
|
+
'fetchOpenInterestHistory': False,
|
|
86
|
+
'fetchOpenOrders': True,
|
|
87
|
+
'fetchOrder': True,
|
|
88
|
+
'fetchOrderBook': True,
|
|
89
|
+
'fetchOrders': True,
|
|
90
|
+
'fetchOrderTrades': True,
|
|
91
|
+
'fetchPosition': False,
|
|
92
|
+
'fetchPositionHistory': False,
|
|
93
|
+
'fetchPositionMode': False,
|
|
94
|
+
'fetchPositions': False,
|
|
95
|
+
'fetchPositionsForSymbol': False,
|
|
96
|
+
'fetchPositionsHistory': False,
|
|
97
|
+
'fetchPositionsRisk': False,
|
|
98
|
+
'fetchPremiumIndexOHLCV': False,
|
|
99
|
+
'fetchTicker': True,
|
|
100
|
+
'fetchTickers': True,
|
|
101
|
+
'fetchTime': True,
|
|
102
|
+
'fetchTrades': True,
|
|
103
|
+
'fetchTradingFee': False,
|
|
104
|
+
'fetchTradingFees': False,
|
|
105
|
+
'fetchTransactions': 'emulated',
|
|
106
|
+
'fetchWithdrawals': True,
|
|
107
|
+
'reduceMargin': False,
|
|
108
|
+
'setLeverage': False,
|
|
109
|
+
'setMarginMode': False,
|
|
110
|
+
'setPositionMode': False,
|
|
111
|
+
'transfer': True,
|
|
112
|
+
'withdraw': True,
|
|
113
|
+
},
|
|
114
|
+
'timeframes': {
|
|
115
|
+
'1m': 'ONE_MIN',
|
|
116
|
+
'5m': 'FIVE_MIN',
|
|
117
|
+
'15m': 'FIFTEEN_MIN',
|
|
118
|
+
'30m': 'HALF_HOU',
|
|
119
|
+
'1h': 'ONE_HOU',
|
|
120
|
+
'1d': 'ONE_DAY',
|
|
121
|
+
'1w': 'ONE_WEE',
|
|
122
|
+
'1M': 'ONE_MON',
|
|
123
|
+
},
|
|
124
|
+
'urls': {
|
|
125
|
+
'logo': 'https://user-images.githubusercontent.com/1294454/92337550-2b085500-f0b3-11ea-98e7-5794fb07dd3b.jpg',
|
|
126
|
+
'api': {
|
|
127
|
+
'public': 'https://api.novadax.com',
|
|
128
|
+
'private': 'https://api.novadax.com',
|
|
129
|
+
},
|
|
130
|
+
'www': 'https://www.novadax.com.br',
|
|
131
|
+
'doc': [
|
|
132
|
+
'https://doc.novadax.com/pt-BR/',
|
|
133
|
+
],
|
|
134
|
+
'fees': 'https://www.novadax.com.br/fees-and-limits',
|
|
135
|
+
'referral': 'https://www.novadax.com.br/?s=ccxt',
|
|
136
|
+
},
|
|
137
|
+
'api': {
|
|
138
|
+
'public': {
|
|
139
|
+
'get': {
|
|
140
|
+
'common/symbol': 1,
|
|
141
|
+
'common/symbols': 1,
|
|
142
|
+
'common/timestamp': 1,
|
|
143
|
+
'market/tickers': 5,
|
|
144
|
+
'market/ticker': 1,
|
|
145
|
+
'market/depth': 1,
|
|
146
|
+
'market/trades': 5,
|
|
147
|
+
'market/kline/history': 5,
|
|
148
|
+
},
|
|
149
|
+
},
|
|
150
|
+
'private': {
|
|
151
|
+
'get': {
|
|
152
|
+
'orders/get': 1,
|
|
153
|
+
'orders/list': 10,
|
|
154
|
+
'orders/fill': 3, # not found in doc
|
|
155
|
+
'orders/fills': 10,
|
|
156
|
+
'account/getBalance': 1,
|
|
157
|
+
'account/subs': 1,
|
|
158
|
+
'account/subs/balance': 1,
|
|
159
|
+
'account/subs/transfer/record': 10,
|
|
160
|
+
'wallet/query/deposit-withdraw': 3,
|
|
161
|
+
},
|
|
162
|
+
'post': {
|
|
163
|
+
'orders/create': 5,
|
|
164
|
+
'orders/batch-create': 50,
|
|
165
|
+
'orders/cancel': 1,
|
|
166
|
+
'orders/batch-cancel': 10,
|
|
167
|
+
'orders/cancel-by-symbol': 10,
|
|
168
|
+
'account/subs/transfer': 5,
|
|
169
|
+
'wallet/withdraw/coin': 3,
|
|
170
|
+
'account/withdraw/coin': 3, # not found in doc
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
'fees': {
|
|
175
|
+
'trading': {
|
|
176
|
+
'tierBased': False,
|
|
177
|
+
'percentage': True,
|
|
178
|
+
'taker': self.parse_number('0.005'),
|
|
179
|
+
'maker': self.parse_number('0.0025'),
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
'requiredCredentials': {
|
|
183
|
+
'apiKey': True,
|
|
184
|
+
'secret': True,
|
|
185
|
+
},
|
|
186
|
+
'precisionMode': TICK_SIZE,
|
|
187
|
+
'exceptions': {
|
|
188
|
+
'exact': {
|
|
189
|
+
'A99999': ExchangeError, # 500 Failed Internal error
|
|
190
|
+
# 'A10000': ExchangeError, # 200 Success Successful request
|
|
191
|
+
'A10001': BadRequest, # 400 Params error Parameter is invalid
|
|
192
|
+
'A10002': ExchangeError, # 404 Api not found API used is irrelevant
|
|
193
|
+
'A10003': AuthenticationError, # 403 Authentication failed Authentication is failed
|
|
194
|
+
'A10004': RateLimitExceeded, # 429 Too many requests Too many requests are made
|
|
195
|
+
'A10005': PermissionDenied, # 403 Kyc required Need to complete KYC firstly
|
|
196
|
+
'A10006': AccountSuspended, # 403 Customer canceled Account is canceled
|
|
197
|
+
'A10007': AccountNotEnabled, # 400 Account not exist Sub account does not exist
|
|
198
|
+
'A10011': BadSymbol, # 400 Symbol not exist Trading symbol does not exist
|
|
199
|
+
'A10012': BadSymbol, # 400 Symbol not trading Trading symbol is temporarily not available
|
|
200
|
+
'A10013': OnMaintenance, # 503 Symbol maintain Trading symbol is in maintain
|
|
201
|
+
'A30001': OrderNotFound, # 400 Order not found Queried order is not found
|
|
202
|
+
'A30002': InvalidOrder, # 400 Order amount is too small Order amount is too small
|
|
203
|
+
'A30003': InvalidOrder, # 400 Order amount is invalid Order amount is invalid
|
|
204
|
+
'A30004': InvalidOrder, # 400 Order value is too small Order value is too small
|
|
205
|
+
'A30005': InvalidOrder, # 400 Order value is invalid Order value is invalid
|
|
206
|
+
'A30006': InvalidOrder, # 400 Order price is invalid Order price is invalid
|
|
207
|
+
'A30007': InsufficientFunds, # 400 Insufficient balance The balance is insufficient
|
|
208
|
+
'A30008': InvalidOrder, # 400 Order was closed The order has been executed
|
|
209
|
+
'A30009': InvalidOrder, # 400 Order canceled The order has been cancelled
|
|
210
|
+
'A30010': CancelPending, # 400 Order cancelling The order is being cancelled
|
|
211
|
+
'A30011': InvalidOrder, # 400 Order price too high The order price is too high
|
|
212
|
+
'A30012': InvalidOrder, # 400 Order price too low The order price is too low
|
|
213
|
+
'A40004': InsufficientFunds, # {"code":"A40004","data":[],"message":"sub account balance Insufficient"}
|
|
214
|
+
},
|
|
215
|
+
'broad': {
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
'options': {
|
|
219
|
+
'fetchOHLCV': {
|
|
220
|
+
'volume': 'amount', # 'amount' for base volume or 'vol' for quote volume
|
|
221
|
+
},
|
|
222
|
+
'transfer': {
|
|
223
|
+
'fillResponseFromRequest': True,
|
|
224
|
+
},
|
|
225
|
+
},
|
|
226
|
+
})
|
|
227
|
+
|
|
228
|
+
async def fetch_time(self, params={}):
|
|
229
|
+
"""
|
|
230
|
+
fetches the current integer timestamp in milliseconds from the exchange server
|
|
231
|
+
:see: https://doc.novadax.com/en-US/#get-current-system-time
|
|
232
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
233
|
+
:returns int: the current integer timestamp in milliseconds from the exchange server
|
|
234
|
+
"""
|
|
235
|
+
response = await self.publicGetCommonTimestamp(params)
|
|
236
|
+
#
|
|
237
|
+
# {
|
|
238
|
+
# "code":"A10000",
|
|
239
|
+
# "data":1599090512080,
|
|
240
|
+
# "message":"Success"
|
|
241
|
+
# }
|
|
242
|
+
#
|
|
243
|
+
return self.safe_integer(response, 'data')
|
|
244
|
+
|
|
245
|
+
async def fetch_markets(self, params={}) -> List[Market]:
|
|
246
|
+
"""
|
|
247
|
+
retrieves data on all markets for novadax
|
|
248
|
+
:see: https://doc.novadax.com/en-US/#get-all-supported-trading-symbol
|
|
249
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
250
|
+
:returns dict[]: an array of objects representing market data
|
|
251
|
+
"""
|
|
252
|
+
response = await self.publicGetCommonSymbols(params)
|
|
253
|
+
#
|
|
254
|
+
# {
|
|
255
|
+
# "code":"A10000",
|
|
256
|
+
# "data":[
|
|
257
|
+
# {
|
|
258
|
+
# "amountPrecision":8,
|
|
259
|
+
# "baseCurrency":"BTC",
|
|
260
|
+
# "minOrderAmount":"0.001",
|
|
261
|
+
# "minOrderValue":"25",
|
|
262
|
+
# "pricePrecision":2,
|
|
263
|
+
# "quoteCurrency":"BRL",
|
|
264
|
+
# "status":"ONLINE",
|
|
265
|
+
# "symbol":"BTC_BRL",
|
|
266
|
+
# "valuePrecision":2
|
|
267
|
+
# },
|
|
268
|
+
# ],
|
|
269
|
+
# "message":"Success"
|
|
270
|
+
# }
|
|
271
|
+
#
|
|
272
|
+
data = self.safe_value(response, 'data', [])
|
|
273
|
+
return self.parse_markets(data)
|
|
274
|
+
|
|
275
|
+
def parse_market(self, market: dict) -> Market:
|
|
276
|
+
baseId = self.safe_string(market, 'baseCurrency')
|
|
277
|
+
quoteId = self.safe_string(market, 'quoteCurrency')
|
|
278
|
+
id = self.safe_string(market, 'symbol')
|
|
279
|
+
base = self.safe_currency_code(baseId)
|
|
280
|
+
quote = self.safe_currency_code(quoteId)
|
|
281
|
+
status = self.safe_string(market, 'status')
|
|
282
|
+
return {
|
|
283
|
+
'id': id,
|
|
284
|
+
'symbol': base + '/' + quote,
|
|
285
|
+
'base': base,
|
|
286
|
+
'quote': quote,
|
|
287
|
+
'settle': None,
|
|
288
|
+
'baseId': baseId,
|
|
289
|
+
'quoteId': quoteId,
|
|
290
|
+
'settleId': None,
|
|
291
|
+
'type': 'spot',
|
|
292
|
+
'spot': True,
|
|
293
|
+
'margin': False,
|
|
294
|
+
'swap': False,
|
|
295
|
+
'future': False,
|
|
296
|
+
'option': False,
|
|
297
|
+
'active': (status == 'ONLINE'),
|
|
298
|
+
'contract': False,
|
|
299
|
+
'linear': None,
|
|
300
|
+
'inverse': None,
|
|
301
|
+
'contractSize': None,
|
|
302
|
+
'expiry': None,
|
|
303
|
+
'expiryDatetime': None,
|
|
304
|
+
'strike': None,
|
|
305
|
+
'optionType': None,
|
|
306
|
+
'precision': {
|
|
307
|
+
'amount': self.parse_number(self.parse_precision(self.safe_string(market, 'amountPrecision'))),
|
|
308
|
+
'price': self.parse_number(self.parse_precision(self.safe_string(market, 'pricePrecision'))),
|
|
309
|
+
# 'cost': self.parse_number(self.parse_precision(self.safe_string(market, 'valuePrecision'))),
|
|
310
|
+
},
|
|
311
|
+
'limits': {
|
|
312
|
+
'leverage': {
|
|
313
|
+
'min': None,
|
|
314
|
+
'max': None,
|
|
315
|
+
},
|
|
316
|
+
'amount': {
|
|
317
|
+
'min': self.safe_number(market, 'minOrderAmount'),
|
|
318
|
+
'max': None,
|
|
319
|
+
},
|
|
320
|
+
'price': {
|
|
321
|
+
'min': None,
|
|
322
|
+
'max': None,
|
|
323
|
+
},
|
|
324
|
+
'cost': {
|
|
325
|
+
'min': self.safe_number(market, 'minOrderValue'),
|
|
326
|
+
'max': None,
|
|
327
|
+
},
|
|
328
|
+
},
|
|
329
|
+
'created': None,
|
|
330
|
+
'info': market,
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
def parse_ticker(self, ticker: dict, market: Market = None) -> Ticker:
|
|
334
|
+
#
|
|
335
|
+
# fetchTicker, fetchTickers
|
|
336
|
+
#
|
|
337
|
+
# {
|
|
338
|
+
# "ask":"61946.1",
|
|
339
|
+
# "baseVolume24h":"164.41930186",
|
|
340
|
+
# "bid":"61815",
|
|
341
|
+
# "high24h":"64930.72",
|
|
342
|
+
# "lastPrice":"61928.41",
|
|
343
|
+
# "low24h":"61156.32",
|
|
344
|
+
# "open24h":"64512.46",
|
|
345
|
+
# "quoteVolume24h":"10308157.95",
|
|
346
|
+
# "symbol":"BTC_BRL",
|
|
347
|
+
# "timestamp":1599091115090
|
|
348
|
+
# }
|
|
349
|
+
#
|
|
350
|
+
timestamp = self.safe_integer(ticker, 'timestamp')
|
|
351
|
+
marketId = self.safe_string(ticker, 'symbol')
|
|
352
|
+
symbol = self.safe_symbol(marketId, market, '_')
|
|
353
|
+
open = self.safe_string(ticker, 'open24h')
|
|
354
|
+
last = self.safe_string(ticker, 'lastPrice')
|
|
355
|
+
baseVolume = self.safe_string(ticker, 'baseVolume24h')
|
|
356
|
+
quoteVolume = self.safe_string(ticker, 'quoteVolume24h')
|
|
357
|
+
return self.safe_ticker({
|
|
358
|
+
'symbol': symbol,
|
|
359
|
+
'timestamp': timestamp,
|
|
360
|
+
'datetime': self.iso8601(timestamp),
|
|
361
|
+
'high': self.safe_string(ticker, 'high24h'),
|
|
362
|
+
'low': self.safe_string(ticker, 'low24h'),
|
|
363
|
+
'bid': self.safe_string(ticker, 'bid'),
|
|
364
|
+
'bidVolume': None,
|
|
365
|
+
'ask': self.safe_string(ticker, 'ask'),
|
|
366
|
+
'askVolume': None,
|
|
367
|
+
'vwap': None,
|
|
368
|
+
'open': open,
|
|
369
|
+
'close': last,
|
|
370
|
+
'last': last,
|
|
371
|
+
'previousClose': None,
|
|
372
|
+
'change': None,
|
|
373
|
+
'percentage': None,
|
|
374
|
+
'average': None,
|
|
375
|
+
'baseVolume': baseVolume,
|
|
376
|
+
'quoteVolume': quoteVolume,
|
|
377
|
+
'info': ticker,
|
|
378
|
+
}, market)
|
|
379
|
+
|
|
380
|
+
async def fetch_ticker(self, symbol: str, params={}) -> Ticker:
|
|
381
|
+
"""
|
|
382
|
+
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
|
383
|
+
:see: https://doc.novadax.com/en-US/#get-latest-ticker-for-specific-pair
|
|
384
|
+
:param str symbol: unified symbol of the market to fetch the ticker for
|
|
385
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
386
|
+
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
|
387
|
+
"""
|
|
388
|
+
await self.load_markets()
|
|
389
|
+
market = self.market(symbol)
|
|
390
|
+
request: dict = {
|
|
391
|
+
'symbol': market['id'],
|
|
392
|
+
}
|
|
393
|
+
response = await self.publicGetMarketTicker(self.extend(request, params))
|
|
394
|
+
#
|
|
395
|
+
# {
|
|
396
|
+
# "code":"A10000",
|
|
397
|
+
# "data":{
|
|
398
|
+
# "ask":"61946.1",
|
|
399
|
+
# "baseVolume24h":"164.41930186",
|
|
400
|
+
# "bid":"61815",
|
|
401
|
+
# "high24h":"64930.72",
|
|
402
|
+
# "lastPrice":"61928.41",
|
|
403
|
+
# "low24h":"61156.32",
|
|
404
|
+
# "open24h":"64512.46",
|
|
405
|
+
# "quoteVolume24h":"10308157.95",
|
|
406
|
+
# "symbol":"BTC_BRL",
|
|
407
|
+
# "timestamp":1599091115090
|
|
408
|
+
# },
|
|
409
|
+
# "message":"Success"
|
|
410
|
+
# }
|
|
411
|
+
#
|
|
412
|
+
data = self.safe_dict(response, 'data', {})
|
|
413
|
+
return self.parse_ticker(data, market)
|
|
414
|
+
|
|
415
|
+
async def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
|
416
|
+
"""
|
|
417
|
+
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
|
|
418
|
+
:see: https://doc.novadax.com/en-US/#get-latest-tickers-for-all-trading-pairs
|
|
419
|
+
:param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
|
|
420
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
421
|
+
:returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
|
|
422
|
+
"""
|
|
423
|
+
await self.load_markets()
|
|
424
|
+
symbols = self.market_symbols(symbols)
|
|
425
|
+
response = await self.publicGetMarketTickers(params)
|
|
426
|
+
#
|
|
427
|
+
# {
|
|
428
|
+
# "code":"A10000",
|
|
429
|
+
# "data":[
|
|
430
|
+
# {
|
|
431
|
+
# "ask":"61879.36",
|
|
432
|
+
# "baseVolume24h":"164.40955092",
|
|
433
|
+
# "bid":"61815",
|
|
434
|
+
# "high24h":"64930.72",
|
|
435
|
+
# "lastPrice":"61820.04",
|
|
436
|
+
# "low24h":"61156.32",
|
|
437
|
+
# "open24h":"64624.19",
|
|
438
|
+
# "quoteVolume24h":"10307493.92",
|
|
439
|
+
# "symbol":"BTC_BRL",
|
|
440
|
+
# "timestamp":1599091291083
|
|
441
|
+
# },
|
|
442
|
+
# ],
|
|
443
|
+
# "message":"Success"
|
|
444
|
+
# }
|
|
445
|
+
#
|
|
446
|
+
data = self.safe_value(response, 'data', [])
|
|
447
|
+
result: dict = {}
|
|
448
|
+
for i in range(0, len(data)):
|
|
449
|
+
ticker = self.parse_ticker(data[i])
|
|
450
|
+
symbol = ticker['symbol']
|
|
451
|
+
result[symbol] = ticker
|
|
452
|
+
return self.filter_by_array_tickers(result, 'symbol', symbols)
|
|
453
|
+
|
|
454
|
+
async def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
|
455
|
+
"""
|
|
456
|
+
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
|
457
|
+
:see: https://doc.novadax.com/en-US/#get-market-depth
|
|
458
|
+
:param str symbol: unified symbol of the market to fetch the order book for
|
|
459
|
+
:param int [limit]: the maximum amount of order book entries to return
|
|
460
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
461
|
+
:returns dict: A dictionary of `order book structures <https://docs.ccxt.com/#/?id=order-book-structure>` indexed by market symbols
|
|
462
|
+
"""
|
|
463
|
+
await self.load_markets()
|
|
464
|
+
market = self.market(symbol)
|
|
465
|
+
request: dict = {
|
|
466
|
+
'symbol': market['id'],
|
|
467
|
+
}
|
|
468
|
+
if limit is not None:
|
|
469
|
+
request['limit'] = limit # default 10, max 20
|
|
470
|
+
response = await self.publicGetMarketDepth(self.extend(request, params))
|
|
471
|
+
#
|
|
472
|
+
# {
|
|
473
|
+
# "code":"A10000",
|
|
474
|
+
# "data":{
|
|
475
|
+
# "asks":[
|
|
476
|
+
# ["0.037159","0.3741"],
|
|
477
|
+
# ["0.037215","0.2706"],
|
|
478
|
+
# ["0.037222","1.8459"],
|
|
479
|
+
# ],
|
|
480
|
+
# "bids":[
|
|
481
|
+
# ["0.037053","0.3857"],
|
|
482
|
+
# ["0.036969","0.8101"],
|
|
483
|
+
# ["0.036953","1.5226"],
|
|
484
|
+
# ],
|
|
485
|
+
# "timestamp":1599280414448
|
|
486
|
+
# },
|
|
487
|
+
# "message":"Success"
|
|
488
|
+
# }
|
|
489
|
+
#
|
|
490
|
+
data = self.safe_value(response, 'data', {})
|
|
491
|
+
timestamp = self.safe_integer(data, 'timestamp')
|
|
492
|
+
return self.parse_order_book(data, market['symbol'], timestamp, 'bids', 'asks')
|
|
493
|
+
|
|
494
|
+
def parse_trade(self, trade: dict, market: Market = None) -> Trade:
|
|
495
|
+
#
|
|
496
|
+
# public fetchTrades
|
|
497
|
+
#
|
|
498
|
+
# {
|
|
499
|
+
# "amount":"0.0632",
|
|
500
|
+
# "price":"0.037288",
|
|
501
|
+
# "side":"BUY",
|
|
502
|
+
# "timestamp":1599279694576
|
|
503
|
+
# }
|
|
504
|
+
#
|
|
505
|
+
# private fetchOrderTrades
|
|
506
|
+
#
|
|
507
|
+
# {
|
|
508
|
+
# "id": "608717046691139584",
|
|
509
|
+
# "orderId": "608716957545402368",
|
|
510
|
+
# "symbol": "BTC_BRL",
|
|
511
|
+
# "side": "BUY",
|
|
512
|
+
# "amount": "0.0988",
|
|
513
|
+
# "price": "45514.76",
|
|
514
|
+
# "fee": "0.0000988 BTC",
|
|
515
|
+
# "feeAmount": "0.0000988",
|
|
516
|
+
# "feeCurrency": "BTC",
|
|
517
|
+
# "role": "MAKER",
|
|
518
|
+
# "timestamp": 1565171053345
|
|
519
|
+
# }
|
|
520
|
+
#
|
|
521
|
+
# private fetchMyTrades(same endpoint)
|
|
522
|
+
#
|
|
523
|
+
# {
|
|
524
|
+
# "id": "608717046691139584",
|
|
525
|
+
# "orderId": "608716957545402368",
|
|
526
|
+
# "symbol": "BTC_BRL",
|
|
527
|
+
# "side": "BUY",
|
|
528
|
+
# "amount": "0.0988",
|
|
529
|
+
# "price": "45514.76",
|
|
530
|
+
# "fee": "0.0000988 BTC",
|
|
531
|
+
# "feeAmount": "0.0000988",
|
|
532
|
+
# "feeCurrency": "BTC",
|
|
533
|
+
# "role": "MAKER",
|
|
534
|
+
# "timestamp": 1565171053345
|
|
535
|
+
# }
|
|
536
|
+
#
|
|
537
|
+
id = self.safe_string(trade, 'id')
|
|
538
|
+
orderId = self.safe_string(trade, 'orderId')
|
|
539
|
+
timestamp = self.safe_integer(trade, 'timestamp')
|
|
540
|
+
side = self.safe_string_lower(trade, 'side')
|
|
541
|
+
priceString = self.safe_string(trade, 'price')
|
|
542
|
+
amountString = self.safe_string(trade, 'amount')
|
|
543
|
+
marketId = self.safe_string(trade, 'symbol')
|
|
544
|
+
symbol = self.safe_symbol(marketId, market, '_')
|
|
545
|
+
takerOrMaker = self.safe_string_lower(trade, 'role')
|
|
546
|
+
feeString = self.safe_string(trade, 'fee')
|
|
547
|
+
fee = None
|
|
548
|
+
if feeString is not None:
|
|
549
|
+
feeCurrencyId = self.safe_string(trade, 'feeCurrency')
|
|
550
|
+
feeCurrencyCode = self.safe_currency_code(feeCurrencyId)
|
|
551
|
+
fee = {
|
|
552
|
+
'cost': self.safe_string(trade, 'feeAmount'),
|
|
553
|
+
'currency': feeCurrencyCode,
|
|
554
|
+
}
|
|
555
|
+
return self.safe_trade({
|
|
556
|
+
'id': id,
|
|
557
|
+
'order': orderId,
|
|
558
|
+
'timestamp': timestamp,
|
|
559
|
+
'datetime': self.iso8601(timestamp),
|
|
560
|
+
'symbol': symbol,
|
|
561
|
+
'type': None,
|
|
562
|
+
'side': side,
|
|
563
|
+
'price': priceString,
|
|
564
|
+
'amount': amountString,
|
|
565
|
+
'cost': None,
|
|
566
|
+
'takerOrMaker': takerOrMaker,
|
|
567
|
+
'fee': fee,
|
|
568
|
+
'info': trade,
|
|
569
|
+
}, market)
|
|
570
|
+
|
|
571
|
+
async def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
|
572
|
+
"""
|
|
573
|
+
get the list of most recent trades for a particular symbol
|
|
574
|
+
:see: https://doc.novadax.com/en-US/#get-recent-trades
|
|
575
|
+
:param str symbol: unified symbol of the market to fetch trades for
|
|
576
|
+
:param int [since]: timestamp in ms of the earliest trade to fetch
|
|
577
|
+
:param int [limit]: the maximum amount of trades to fetch
|
|
578
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
579
|
+
:returns Trade[]: a list of `trade structures <https://docs.ccxt.com/#/?id=public-trades>`
|
|
580
|
+
"""
|
|
581
|
+
await self.load_markets()
|
|
582
|
+
market = self.market(symbol)
|
|
583
|
+
request: dict = {
|
|
584
|
+
'symbol': market['id'],
|
|
585
|
+
}
|
|
586
|
+
if limit is not None:
|
|
587
|
+
request['limit'] = limit # default 100
|
|
588
|
+
response = await self.publicGetMarketTrades(self.extend(request, params))
|
|
589
|
+
#
|
|
590
|
+
# {
|
|
591
|
+
# "code":"A10000",
|
|
592
|
+
# "data":[
|
|
593
|
+
# {"amount":"0.0632","price":"0.037288","side":"BUY","timestamp":1599279694576},
|
|
594
|
+
# {"amount":"0.0052","price":"0.03715","side":"SELL","timestamp":1599276606852},
|
|
595
|
+
# {"amount":"0.0058","price":"0.037188","side":"SELL","timestamp":1599275187812},
|
|
596
|
+
# ],
|
|
597
|
+
# "message":"Success"
|
|
598
|
+
# }
|
|
599
|
+
#
|
|
600
|
+
data = self.safe_list(response, 'data', [])
|
|
601
|
+
return self.parse_trades(data, market, since, limit)
|
|
602
|
+
|
|
603
|
+
async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
|
604
|
+
"""
|
|
605
|
+
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
|
606
|
+
:see: https://doc.novadax.com/en-US/#get-kline-data
|
|
607
|
+
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
608
|
+
:param str timeframe: the length of time each candle represents
|
|
609
|
+
:param int [since]: timestamp in ms of the earliest candle to fetch
|
|
610
|
+
:param int [limit]: the maximum amount of candles to fetch
|
|
611
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
612
|
+
:returns int[][]: A list of candles ordered, open, high, low, close, volume
|
|
613
|
+
"""
|
|
614
|
+
await self.load_markets()
|
|
615
|
+
market = self.market(symbol)
|
|
616
|
+
request: dict = {
|
|
617
|
+
'symbol': market['id'],
|
|
618
|
+
'unit': self.safe_string(self.timeframes, timeframe, timeframe),
|
|
619
|
+
}
|
|
620
|
+
duration = self.parse_timeframe(timeframe)
|
|
621
|
+
now = self.seconds()
|
|
622
|
+
if limit is None:
|
|
623
|
+
limit = 3000 # max
|
|
624
|
+
if since is None:
|
|
625
|
+
request['from'] = now - limit * duration
|
|
626
|
+
request['to'] = now
|
|
627
|
+
else:
|
|
628
|
+
startFrom = self.parse_to_int(since / 1000)
|
|
629
|
+
request['from'] = startFrom
|
|
630
|
+
request['to'] = self.sum(startFrom, limit * duration)
|
|
631
|
+
response = await self.publicGetMarketKlineHistory(self.extend(request, params))
|
|
632
|
+
#
|
|
633
|
+
# {
|
|
634
|
+
# "code": "A10000",
|
|
635
|
+
# "data": [
|
|
636
|
+
# {
|
|
637
|
+
# "amount": 8.25709100,
|
|
638
|
+
# "closePrice": 62553.20,
|
|
639
|
+
# "count": 29,
|
|
640
|
+
# "highPrice": 62592.87,
|
|
641
|
+
# "lowPrice": 62553.20,
|
|
642
|
+
# "openPrice": 62554.23,
|
|
643
|
+
# "score": 1602501480,
|
|
644
|
+
# "symbol": "BTC_BRL",
|
|
645
|
+
# "vol": 516784.2504067500
|
|
646
|
+
# }
|
|
647
|
+
# ],
|
|
648
|
+
# "message": "Success"
|
|
649
|
+
# }
|
|
650
|
+
#
|
|
651
|
+
data = self.safe_list(response, 'data', [])
|
|
652
|
+
return self.parse_ohlcvs(data, market, timeframe, since, limit)
|
|
653
|
+
|
|
654
|
+
def parse_ohlcv(self, ohlcv, market: Market = None) -> list:
|
|
655
|
+
#
|
|
656
|
+
# {
|
|
657
|
+
# "amount": 8.25709100,
|
|
658
|
+
# "closePrice": 62553.20,
|
|
659
|
+
# "count": 29,
|
|
660
|
+
# "highPrice": 62592.87,
|
|
661
|
+
# "lowPrice": 62553.20,
|
|
662
|
+
# "openPrice": 62554.23,
|
|
663
|
+
# "score": 1602501480,
|
|
664
|
+
# "symbol": "BTC_BRL",
|
|
665
|
+
# "vol": 516784.2504067500
|
|
666
|
+
# }
|
|
667
|
+
#
|
|
668
|
+
options = self.safe_value(self.options, 'fetchOHLCV', {})
|
|
669
|
+
volumeField = self.safe_string(options, 'volume', 'amount') # or vol
|
|
670
|
+
return [
|
|
671
|
+
self.safe_timestamp(ohlcv, 'score'),
|
|
672
|
+
self.safe_number(ohlcv, 'openPrice'),
|
|
673
|
+
self.safe_number(ohlcv, 'highPrice'),
|
|
674
|
+
self.safe_number(ohlcv, 'lowPrice'),
|
|
675
|
+
self.safe_number(ohlcv, 'closePrice'),
|
|
676
|
+
self.safe_number(ohlcv, volumeField),
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
def parse_balance(self, response) -> Balances:
|
|
680
|
+
data = self.safe_value(response, 'data', [])
|
|
681
|
+
result: dict = {
|
|
682
|
+
'info': response,
|
|
683
|
+
'timestamp': None,
|
|
684
|
+
'datetime': None,
|
|
685
|
+
}
|
|
686
|
+
for i in range(0, len(data)):
|
|
687
|
+
balance = data[i]
|
|
688
|
+
currencyId = self.safe_string(balance, 'currency')
|
|
689
|
+
code = self.safe_currency_code(currencyId)
|
|
690
|
+
account = self.account()
|
|
691
|
+
account['total'] = self.safe_string(balance, 'balance')
|
|
692
|
+
account['free'] = self.safe_string(balance, 'available')
|
|
693
|
+
account['used'] = self.safe_string(balance, 'hold')
|
|
694
|
+
result[code] = account
|
|
695
|
+
return self.safe_balance(result)
|
|
696
|
+
|
|
697
|
+
async def fetch_balance(self, params={}) -> Balances:
|
|
698
|
+
"""
|
|
699
|
+
query for balance and get the amount of funds available for trading or funds locked in orders
|
|
700
|
+
:see: https://doc.novadax.com/en-US/#get-account-balance
|
|
701
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
702
|
+
:returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
|
|
703
|
+
"""
|
|
704
|
+
await self.load_markets()
|
|
705
|
+
response = await self.privateGetAccountGetBalance(params)
|
|
706
|
+
#
|
|
707
|
+
# {
|
|
708
|
+
# "code": "A10000",
|
|
709
|
+
# "data": [
|
|
710
|
+
# {
|
|
711
|
+
# "available": "1.23",
|
|
712
|
+
# "balance": "0.23",
|
|
713
|
+
# "currency": "BTC",
|
|
714
|
+
# "hold": "1"
|
|
715
|
+
# }
|
|
716
|
+
# ],
|
|
717
|
+
# "message": "Success"
|
|
718
|
+
# }
|
|
719
|
+
#
|
|
720
|
+
return self.parse_balance(response)
|
|
721
|
+
|
|
722
|
+
async def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
|
|
723
|
+
"""
|
|
724
|
+
create a trade order
|
|
725
|
+
:see: https://doc.novadax.com/en-US/#order-introduction
|
|
726
|
+
:param str symbol: unified symbol of the market to create an order in
|
|
727
|
+
:param str type: 'market' or 'limit'
|
|
728
|
+
:param str side: 'buy' or 'sell'
|
|
729
|
+
:param float amount: how much you want to trade in units of the base currency
|
|
730
|
+
:param float [price]: the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
|
|
731
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
732
|
+
:param float [params.cost]: for spot market buy orders, the quote quantity that can be used alternative for the amount
|
|
733
|
+
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
734
|
+
"""
|
|
735
|
+
await self.load_markets()
|
|
736
|
+
market = self.market(symbol)
|
|
737
|
+
uppercaseType = type.upper()
|
|
738
|
+
uppercaseSide = side.upper()
|
|
739
|
+
request: dict = {
|
|
740
|
+
'symbol': market['id'],
|
|
741
|
+
'side': uppercaseSide, # or SELL
|
|
742
|
+
# "amount": self.amount_to_precision(symbol, amount),
|
|
743
|
+
# "price": "1234.5678", # required for LIMIT and STOP orders
|
|
744
|
+
# "operator": "" # for stop orders, can be found in order introduction
|
|
745
|
+
# "stopPrice": self.price_to_precision(symbol, stopPrice),
|
|
746
|
+
# "accountId": "...", # subaccount id, optional
|
|
747
|
+
}
|
|
748
|
+
stopPrice = self.safe_value_2(params, 'triggerPrice', 'stopPrice')
|
|
749
|
+
if stopPrice is None:
|
|
750
|
+
if (uppercaseType == 'STOP_LIMIT') or (uppercaseType == 'STOP_MARKET'):
|
|
751
|
+
raise ArgumentsRequired(self.id + ' createOrder() requires a stopPrice parameter for ' + uppercaseType + ' orders')
|
|
752
|
+
else:
|
|
753
|
+
if uppercaseType == 'LIMIT':
|
|
754
|
+
uppercaseType = 'STOP_LIMIT'
|
|
755
|
+
elif uppercaseType == 'MARKET':
|
|
756
|
+
uppercaseType = 'STOP_MARKET'
|
|
757
|
+
defaultOperator = 'LTE' if (uppercaseSide == 'BUY') else 'GTE'
|
|
758
|
+
request['operator'] = self.safe_string(params, 'operator', defaultOperator)
|
|
759
|
+
request['stopPrice'] = self.price_to_precision(symbol, stopPrice)
|
|
760
|
+
params = self.omit(params, ['triggerPrice', 'stopPrice'])
|
|
761
|
+
if (uppercaseType == 'LIMIT') or (uppercaseType == 'STOP_LIMIT'):
|
|
762
|
+
request['price'] = self.price_to_precision(symbol, price)
|
|
763
|
+
request['amount'] = self.amount_to_precision(symbol, amount)
|
|
764
|
+
elif (uppercaseType == 'MARKET') or (uppercaseType == 'STOP_MARKET'):
|
|
765
|
+
if uppercaseSide == 'SELL':
|
|
766
|
+
request['amount'] = self.amount_to_precision(symbol, amount)
|
|
767
|
+
elif uppercaseSide == 'BUY':
|
|
768
|
+
quoteAmount = None
|
|
769
|
+
createMarketBuyOrderRequiresPrice = True
|
|
770
|
+
createMarketBuyOrderRequiresPrice, params = self.handle_option_and_params(params, 'createOrder', 'createMarketBuyOrderRequiresPrice', True)
|
|
771
|
+
cost = self.safe_number_2(params, 'cost', 'value')
|
|
772
|
+
params = self.omit(params, 'cost')
|
|
773
|
+
if cost is not None:
|
|
774
|
+
quoteAmount = self.cost_to_precision(symbol, cost)
|
|
775
|
+
elif createMarketBuyOrderRequiresPrice:
|
|
776
|
+
if price is None:
|
|
777
|
+
raise InvalidOrder(self.id + ' createOrder() requires the price argument for market buy orders to calculate the total cost to spend(amount * price), alternatively set the createMarketBuyOrderRequiresPrice option or param to False and pass the cost to spend(quote quantity) in the amount argument')
|
|
778
|
+
else:
|
|
779
|
+
amountString = self.number_to_string(amount)
|
|
780
|
+
priceString = self.number_to_string(price)
|
|
781
|
+
costRequest = Precise.string_mul(amountString, priceString)
|
|
782
|
+
quoteAmount = self.cost_to_precision(symbol, costRequest)
|
|
783
|
+
else:
|
|
784
|
+
quoteAmount = self.cost_to_precision(symbol, amount)
|
|
785
|
+
request['value'] = quoteAmount
|
|
786
|
+
request['type'] = uppercaseType
|
|
787
|
+
response = await self.privatePostOrdersCreate(self.extend(request, params))
|
|
788
|
+
#
|
|
789
|
+
# {
|
|
790
|
+
# "code": "A10000",
|
|
791
|
+
# "data": {
|
|
792
|
+
# "amount": "0.001",
|
|
793
|
+
# "averagePrice": null,
|
|
794
|
+
# "filledAmount": "0",
|
|
795
|
+
# "filledFee": "0",
|
|
796
|
+
# "filledValue": "0",
|
|
797
|
+
# "id": "870613508008464384",
|
|
798
|
+
# "operator": "GTE",
|
|
799
|
+
# "price": "210000",
|
|
800
|
+
# "side": "BUY",
|
|
801
|
+
# "status": "SUBMITTED",
|
|
802
|
+
# "stopPrice": "211000",
|
|
803
|
+
# "symbol": "BTC_BRL",
|
|
804
|
+
# "timestamp": 1627612035528,
|
|
805
|
+
# "type": "STOP_LIMIT",
|
|
806
|
+
# "value": "210"
|
|
807
|
+
# },
|
|
808
|
+
# "message": "Success"
|
|
809
|
+
# }
|
|
810
|
+
#
|
|
811
|
+
data = self.safe_dict(response, 'data', {})
|
|
812
|
+
return self.parse_order(data, market)
|
|
813
|
+
|
|
814
|
+
async def cancel_order(self, id: str, symbol: Str = None, params={}):
|
|
815
|
+
"""
|
|
816
|
+
cancels an open order
|
|
817
|
+
:see: https://doc.novadax.com/en-US/#cancel-an-order
|
|
818
|
+
:param str id: order id
|
|
819
|
+
:param str symbol: not used by novadax cancelOrder()
|
|
820
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
821
|
+
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
822
|
+
"""
|
|
823
|
+
await self.load_markets()
|
|
824
|
+
request: dict = {
|
|
825
|
+
'id': id,
|
|
826
|
+
}
|
|
827
|
+
response = await self.privatePostOrdersCancel(self.extend(request, params))
|
|
828
|
+
#
|
|
829
|
+
# {
|
|
830
|
+
# "code": "A10000",
|
|
831
|
+
# "data": {
|
|
832
|
+
# "result": True
|
|
833
|
+
# },
|
|
834
|
+
# "message": "Success"
|
|
835
|
+
# }
|
|
836
|
+
#
|
|
837
|
+
data = self.safe_dict(response, 'data', {})
|
|
838
|
+
return self.parse_order(data)
|
|
839
|
+
|
|
840
|
+
async def fetch_order(self, id: str, symbol: Str = None, params={}):
|
|
841
|
+
"""
|
|
842
|
+
fetches information on an order made by the user
|
|
843
|
+
:see: https://doc.novadax.com/en-US/#get-order-details
|
|
844
|
+
:param str symbol: not used by novadax fetchOrder
|
|
845
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
846
|
+
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
847
|
+
"""
|
|
848
|
+
await self.load_markets()
|
|
849
|
+
request: dict = {
|
|
850
|
+
'id': id,
|
|
851
|
+
}
|
|
852
|
+
response = await self.privateGetOrdersGet(self.extend(request, params))
|
|
853
|
+
#
|
|
854
|
+
# {
|
|
855
|
+
# "code": "A10000",
|
|
856
|
+
# "data": {
|
|
857
|
+
# "id": "608695623247466496",
|
|
858
|
+
# "symbol": "BTC_BRL",
|
|
859
|
+
# "type": "MARKET",
|
|
860
|
+
# "side": "SELL",
|
|
861
|
+
# "price": null,
|
|
862
|
+
# "averagePrice": "0",
|
|
863
|
+
# "amount": "0.123",
|
|
864
|
+
# "filledAmount": "0",
|
|
865
|
+
# "value": null,
|
|
866
|
+
# "filledValue": "0",
|
|
867
|
+
# "filledFee": "0",
|
|
868
|
+
# "status": "REJECTED",
|
|
869
|
+
# "timestamp": 1565165945588
|
|
870
|
+
# },
|
|
871
|
+
# "message": "Success"
|
|
872
|
+
# }
|
|
873
|
+
#
|
|
874
|
+
data = self.safe_dict(response, 'data', {})
|
|
875
|
+
return self.parse_order(data)
|
|
876
|
+
|
|
877
|
+
async def fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
878
|
+
"""
|
|
879
|
+
fetches information on multiple orders made by the user
|
|
880
|
+
:see: https://doc.novadax.com/en-US/#get-order-history
|
|
881
|
+
:param str symbol: unified market symbol of the market orders were made in
|
|
882
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
|
883
|
+
:param int [limit]: the maximum number of order structures to retrieve
|
|
884
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
885
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
886
|
+
"""
|
|
887
|
+
await self.load_markets()
|
|
888
|
+
request: dict = {
|
|
889
|
+
# 'symbol': market['id'],
|
|
890
|
+
# 'status': 'SUBMITTED,PROCESSING', # SUBMITTED, PROCESSING, PARTIAL_FILLED, CANCELING, FILLED, CANCELED, REJECTED
|
|
891
|
+
# 'fromId': '...', # order id to begin with
|
|
892
|
+
# 'toId': '...', # order id to end up with
|
|
893
|
+
# 'fromTimestamp': since,
|
|
894
|
+
# 'toTimestamp': self.milliseconds(),
|
|
895
|
+
# 'limit': limit, # default 100, max 100
|
|
896
|
+
}
|
|
897
|
+
market = None
|
|
898
|
+
if symbol is not None:
|
|
899
|
+
market = self.market(symbol)
|
|
900
|
+
request['symbol'] = market['id']
|
|
901
|
+
if limit is not None:
|
|
902
|
+
request['limit'] = limit # default 100, max 100
|
|
903
|
+
if since is not None:
|
|
904
|
+
request['fromTimestamp'] = since
|
|
905
|
+
response = await self.privateGetOrdersList(self.extend(request, params))
|
|
906
|
+
#
|
|
907
|
+
# {
|
|
908
|
+
# "code": "A10000",
|
|
909
|
+
# "data": [
|
|
910
|
+
# {
|
|
911
|
+
# "id": "608695678650028032",
|
|
912
|
+
# "symbol": "BTC_BRL",
|
|
913
|
+
# "type": "MARKET",
|
|
914
|
+
# "side": "SELL",
|
|
915
|
+
# "price": null,
|
|
916
|
+
# "averagePrice": "0",
|
|
917
|
+
# "amount": "0.123",
|
|
918
|
+
# "filledAmount": "0",
|
|
919
|
+
# "value": null,
|
|
920
|
+
# "filledValue": "0",
|
|
921
|
+
# "filledFee": "0",
|
|
922
|
+
# "status": "REJECTED",
|
|
923
|
+
# "timestamp": 1565165958796
|
|
924
|
+
# },
|
|
925
|
+
# ],
|
|
926
|
+
# "message": "Success"
|
|
927
|
+
# }
|
|
928
|
+
#
|
|
929
|
+
data = self.safe_list(response, 'data', [])
|
|
930
|
+
return self.parse_orders(data, market, since, limit)
|
|
931
|
+
|
|
932
|
+
async def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
933
|
+
"""
|
|
934
|
+
fetch all unfilled currently open orders
|
|
935
|
+
:see: https://doc.novadax.com/en-US/#get-order-history
|
|
936
|
+
:param str symbol: unified market symbol
|
|
937
|
+
:param int [since]: the earliest time in ms to fetch open orders for
|
|
938
|
+
:param int [limit]: the maximum number of open orders structures to retrieve
|
|
939
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
940
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
941
|
+
"""
|
|
942
|
+
request: dict = {
|
|
943
|
+
'status': 'SUBMITTED,PROCESSING,PARTIAL_FILLED,CANCELING',
|
|
944
|
+
}
|
|
945
|
+
return await self.fetch_orders(symbol, since, limit, self.extend(request, params))
|
|
946
|
+
|
|
947
|
+
async def fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
948
|
+
"""
|
|
949
|
+
fetches information on multiple closed orders made by the user
|
|
950
|
+
:see: https://doc.novadax.com/en-US/#get-order-history
|
|
951
|
+
:param str symbol: unified market symbol of the market orders were made in
|
|
952
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
|
953
|
+
:param int [limit]: the maximum number of order structures to retrieve
|
|
954
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
955
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
956
|
+
"""
|
|
957
|
+
request: dict = {
|
|
958
|
+
'status': 'FILLED,CANCELED,REJECTED',
|
|
959
|
+
}
|
|
960
|
+
return await self.fetch_orders(symbol, since, limit, self.extend(request, params))
|
|
961
|
+
|
|
962
|
+
async def fetch_order_trades(self, id: str, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
963
|
+
"""
|
|
964
|
+
fetch all the trades made from a single order
|
|
965
|
+
:see: https://doc.novadax.com/en-US/#get-order-match-details
|
|
966
|
+
:param str id: order id
|
|
967
|
+
:param str symbol: unified market symbol
|
|
968
|
+
:param int [since]: the earliest time in ms to fetch trades for
|
|
969
|
+
:param int [limit]: the maximum number of trades to retrieve
|
|
970
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
971
|
+
:returns dict[]: a list of `trade structures <https://docs.ccxt.com/#/?id=trade-structure>`
|
|
972
|
+
"""
|
|
973
|
+
await self.load_markets()
|
|
974
|
+
request: dict = {
|
|
975
|
+
'id': id,
|
|
976
|
+
}
|
|
977
|
+
response = await self.privateGetOrdersFill(self.extend(request, params))
|
|
978
|
+
market = None
|
|
979
|
+
if symbol is not None:
|
|
980
|
+
market = self.market(symbol)
|
|
981
|
+
data = self.safe_value(response, 'data', [])
|
|
982
|
+
#
|
|
983
|
+
# {
|
|
984
|
+
# "code": "A10000",
|
|
985
|
+
# "data": [
|
|
986
|
+
# {
|
|
987
|
+
# "id": "608717046691139584",
|
|
988
|
+
# "orderId": "608716957545402368",
|
|
989
|
+
# "symbol": "BTC_BRL",
|
|
990
|
+
# "side": "BUY",
|
|
991
|
+
# "amount": "0.0988",
|
|
992
|
+
# "price": "45514.76",
|
|
993
|
+
# "fee": "0.0000988 BTC",
|
|
994
|
+
# "feeAmount": "0.0000988",
|
|
995
|
+
# "feeCurrency": "BTC",
|
|
996
|
+
# "role": "MAKER",
|
|
997
|
+
# "timestamp": 1565171053345
|
|
998
|
+
# },
|
|
999
|
+
# ],
|
|
1000
|
+
# "message": "Success"
|
|
1001
|
+
# }
|
|
1002
|
+
#
|
|
1003
|
+
return self.parse_trades(data, market, since, limit)
|
|
1004
|
+
|
|
1005
|
+
def parse_order_status(self, status: Str):
|
|
1006
|
+
statuses: dict = {
|
|
1007
|
+
'SUBMITTED': 'open',
|
|
1008
|
+
'PROCESSING': 'open',
|
|
1009
|
+
'PARTIAL_FILLED': 'open',
|
|
1010
|
+
'CANCELING': 'open',
|
|
1011
|
+
'FILLED': 'closed',
|
|
1012
|
+
'CANCELED': 'canceled',
|
|
1013
|
+
'REJECTED': 'rejected',
|
|
1014
|
+
}
|
|
1015
|
+
return self.safe_string(statuses, status, status)
|
|
1016
|
+
|
|
1017
|
+
def parse_order(self, order: dict, market: Market = None) -> Order:
|
|
1018
|
+
#
|
|
1019
|
+
# createOrder, fetchOrders, fetchOrder
|
|
1020
|
+
#
|
|
1021
|
+
# {
|
|
1022
|
+
# "amount": "0.001",
|
|
1023
|
+
# "averagePrice": null,
|
|
1024
|
+
# "filledAmount": "0",
|
|
1025
|
+
# "filledFee": "0",
|
|
1026
|
+
# "filledValue": "0",
|
|
1027
|
+
# "id": "870613508008464384",
|
|
1028
|
+
# "operator": "GTE",
|
|
1029
|
+
# "price": "210000",
|
|
1030
|
+
# "side": "BUY",
|
|
1031
|
+
# "status": "SUBMITTED",
|
|
1032
|
+
# "stopPrice": "211000",
|
|
1033
|
+
# "symbol": "BTC_BRL",
|
|
1034
|
+
# "timestamp": 1627612035528,
|
|
1035
|
+
# "type": "STOP_LIMIT",
|
|
1036
|
+
# "value": "210"
|
|
1037
|
+
# }
|
|
1038
|
+
#
|
|
1039
|
+
# cancelOrder
|
|
1040
|
+
#
|
|
1041
|
+
# {
|
|
1042
|
+
# "result": True
|
|
1043
|
+
# }
|
|
1044
|
+
#
|
|
1045
|
+
id = self.safe_string(order, 'id')
|
|
1046
|
+
amount = self.safe_string(order, 'amount')
|
|
1047
|
+
price = self.safe_string(order, 'price')
|
|
1048
|
+
cost = self.safe_string_2(order, 'filledValue', 'value')
|
|
1049
|
+
type = self.safe_string_lower(order, 'type')
|
|
1050
|
+
side = self.safe_string_lower(order, 'side')
|
|
1051
|
+
status = self.parse_order_status(self.safe_string(order, 'status'))
|
|
1052
|
+
timestamp = self.safe_integer(order, 'timestamp')
|
|
1053
|
+
average = self.safe_string(order, 'averagePrice')
|
|
1054
|
+
filled = self.safe_string(order, 'filledAmount')
|
|
1055
|
+
fee = None
|
|
1056
|
+
feeCost = self.safe_number(order, 'filledFee')
|
|
1057
|
+
if feeCost is not None:
|
|
1058
|
+
fee = {
|
|
1059
|
+
'cost': feeCost,
|
|
1060
|
+
'currency': None,
|
|
1061
|
+
}
|
|
1062
|
+
marketId = self.safe_string(order, 'symbol')
|
|
1063
|
+
symbol = self.safe_symbol(marketId, market, '_')
|
|
1064
|
+
stopPrice = self.safe_number(order, 'stopPrice')
|
|
1065
|
+
return self.safe_order({
|
|
1066
|
+
'id': id,
|
|
1067
|
+
'clientOrderId': None,
|
|
1068
|
+
'info': order,
|
|
1069
|
+
'timestamp': timestamp,
|
|
1070
|
+
'datetime': self.iso8601(timestamp),
|
|
1071
|
+
'lastTradeTimestamp': None,
|
|
1072
|
+
'symbol': symbol,
|
|
1073
|
+
'type': type,
|
|
1074
|
+
'timeInForce': None,
|
|
1075
|
+
'postOnly': None,
|
|
1076
|
+
'side': side,
|
|
1077
|
+
'price': price,
|
|
1078
|
+
'stopPrice': stopPrice,
|
|
1079
|
+
'triggerPrice': stopPrice,
|
|
1080
|
+
'amount': amount,
|
|
1081
|
+
'cost': cost,
|
|
1082
|
+
'average': average,
|
|
1083
|
+
'filled': filled,
|
|
1084
|
+
'remaining': None,
|
|
1085
|
+
'status': status,
|
|
1086
|
+
'fee': fee,
|
|
1087
|
+
'trades': None,
|
|
1088
|
+
}, market)
|
|
1089
|
+
|
|
1090
|
+
async def transfer(self, code: str, amount: float, fromAccount: str, toAccount: str, params={}) -> TransferEntry:
|
|
1091
|
+
"""
|
|
1092
|
+
transfer currency internally between wallets on the same account
|
|
1093
|
+
:see: https://doc.novadax.com/en-US/#get-sub-account-transfer
|
|
1094
|
+
:param str code: unified currency code
|
|
1095
|
+
:param float amount: amount to transfer
|
|
1096
|
+
:param str fromAccount: account to transfer from
|
|
1097
|
+
:param str toAccount: account to transfer to
|
|
1098
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1099
|
+
:returns dict: a `transfer structure <https://docs.ccxt.com/#/?id=transfer-structure>`
|
|
1100
|
+
"""
|
|
1101
|
+
await self.load_markets()
|
|
1102
|
+
currency = self.currency(code)
|
|
1103
|
+
if fromAccount != 'main' and toAccount != 'main':
|
|
1104
|
+
raise ExchangeError(self.id + ' transfer() supports transfers between main account and subaccounts only')
|
|
1105
|
+
# master-transfer-in = from master account to subaccount
|
|
1106
|
+
# master-transfer-out = from subaccount to master account
|
|
1107
|
+
type = 'master-transfer-in' if (fromAccount == 'main') else 'master-transfer-out'
|
|
1108
|
+
request: dict = {
|
|
1109
|
+
'transferAmount': self.currency_to_precision(code, amount),
|
|
1110
|
+
'currency': currency['id'],
|
|
1111
|
+
'subId': toAccount if (type == 'master-transfer-in') else fromAccount,
|
|
1112
|
+
'transferType': type,
|
|
1113
|
+
}
|
|
1114
|
+
response = await self.privatePostAccountSubsTransfer(self.extend(request, params))
|
|
1115
|
+
#
|
|
1116
|
+
# {
|
|
1117
|
+
# "code":"A10000",
|
|
1118
|
+
# "message":"Success",
|
|
1119
|
+
# "data":40
|
|
1120
|
+
# }
|
|
1121
|
+
#
|
|
1122
|
+
transfer = self.parse_transfer(response, currency)
|
|
1123
|
+
transferOptions = self.safe_value(self.options, 'transfer', {})
|
|
1124
|
+
fillResponseFromRequest = self.safe_bool(transferOptions, 'fillResponseFromRequest', True)
|
|
1125
|
+
if fillResponseFromRequest:
|
|
1126
|
+
transfer['fromAccount'] = fromAccount
|
|
1127
|
+
transfer['toAccount'] = toAccount
|
|
1128
|
+
transfer['amount'] = amount
|
|
1129
|
+
return transfer
|
|
1130
|
+
|
|
1131
|
+
def parse_transfer(self, transfer: dict, currency: Currency = None) -> TransferEntry:
|
|
1132
|
+
#
|
|
1133
|
+
# {
|
|
1134
|
+
# "code":"A10000",
|
|
1135
|
+
# "message":"Success",
|
|
1136
|
+
# "data":40
|
|
1137
|
+
# }
|
|
1138
|
+
#
|
|
1139
|
+
id = self.safe_string(transfer, 'data')
|
|
1140
|
+
status = self.safe_string(transfer, 'message')
|
|
1141
|
+
currencyCode = self.safe_currency_code(None, currency)
|
|
1142
|
+
return {
|
|
1143
|
+
'info': transfer,
|
|
1144
|
+
'id': id,
|
|
1145
|
+
'amount': None,
|
|
1146
|
+
'currency': currencyCode,
|
|
1147
|
+
'fromAccount': None,
|
|
1148
|
+
'toAccount': None,
|
|
1149
|
+
'timestamp': None,
|
|
1150
|
+
'datetime': None,
|
|
1151
|
+
'status': status,
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
def parse_transfer_status(self, status: Str) -> Str:
|
|
1155
|
+
statuses: dict = {
|
|
1156
|
+
'SUCCESS': 'pending',
|
|
1157
|
+
}
|
|
1158
|
+
return self.safe_string(statuses, status, 'failed')
|
|
1159
|
+
|
|
1160
|
+
async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
|
1161
|
+
"""
|
|
1162
|
+
make a withdrawal
|
|
1163
|
+
:see: https://doc.novadax.com/en-US/#send-cryptocurrencies
|
|
1164
|
+
:param str code: unified currency code
|
|
1165
|
+
:param float amount: the amount to withdraw
|
|
1166
|
+
:param str address: the address to withdraw to
|
|
1167
|
+
:param str tag:
|
|
1168
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1169
|
+
:returns dict: a `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1170
|
+
"""
|
|
1171
|
+
tag, params = self.handle_withdraw_tag_and_params(tag, params)
|
|
1172
|
+
await self.load_markets()
|
|
1173
|
+
currency = self.currency(code)
|
|
1174
|
+
request: dict = {
|
|
1175
|
+
'code': currency['id'],
|
|
1176
|
+
'amount': self.currency_to_precision(code, amount),
|
|
1177
|
+
'wallet': address,
|
|
1178
|
+
}
|
|
1179
|
+
if tag is not None:
|
|
1180
|
+
request['tag'] = tag
|
|
1181
|
+
response = await self.privatePostAccountWithdrawCoin(self.extend(request, params))
|
|
1182
|
+
#
|
|
1183
|
+
# {
|
|
1184
|
+
# "code":"A10000",
|
|
1185
|
+
# "data": "DR123",
|
|
1186
|
+
# "message":"Success"
|
|
1187
|
+
# }
|
|
1188
|
+
#
|
|
1189
|
+
return self.parse_transaction(response, currency)
|
|
1190
|
+
|
|
1191
|
+
async def fetch_accounts(self, params={}) -> List[Account]:
|
|
1192
|
+
"""
|
|
1193
|
+
fetch all the accounts associated with a profile
|
|
1194
|
+
:see: https://doc.novadax.com/en-US/#get-sub-account-list
|
|
1195
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1196
|
+
:returns dict: a dictionary of `account structures <https://docs.ccxt.com/#/?id=account-structure>` indexed by the account type
|
|
1197
|
+
"""
|
|
1198
|
+
response = await self.privateGetAccountSubs(params)
|
|
1199
|
+
#
|
|
1200
|
+
# {
|
|
1201
|
+
# "code": "A10000",
|
|
1202
|
+
# "data": [
|
|
1203
|
+
# {
|
|
1204
|
+
# "subId": "CA648856083527372800",
|
|
1205
|
+
# "state": "Normal",
|
|
1206
|
+
# "subAccount": "003",
|
|
1207
|
+
# "subIdentify": "003"
|
|
1208
|
+
# }
|
|
1209
|
+
# ],
|
|
1210
|
+
# "message": "Success"
|
|
1211
|
+
# }
|
|
1212
|
+
#
|
|
1213
|
+
data = self.safe_value(response, 'data', [])
|
|
1214
|
+
result = []
|
|
1215
|
+
for i in range(0, len(data)):
|
|
1216
|
+
account = data[i]
|
|
1217
|
+
accountId = self.safe_string(account, 'subId')
|
|
1218
|
+
type = self.safe_string(account, 'subAccount')
|
|
1219
|
+
result.append({
|
|
1220
|
+
'id': accountId,
|
|
1221
|
+
'type': type,
|
|
1222
|
+
'currency': None,
|
|
1223
|
+
'info': account,
|
|
1224
|
+
})
|
|
1225
|
+
return result
|
|
1226
|
+
|
|
1227
|
+
async def fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
|
1228
|
+
"""
|
|
1229
|
+
fetch all deposits made to an account
|
|
1230
|
+
:see: https://doc.novadax.com/en-US/#wallet-records-of-deposits-and-withdraws
|
|
1231
|
+
:param str code: unified currency code
|
|
1232
|
+
:param int [since]: the earliest time in ms to fetch deposits for
|
|
1233
|
+
:param int [limit]: the maximum number of deposits structures to retrieve
|
|
1234
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1235
|
+
:returns dict[]: a list of `transaction structures <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1236
|
+
"""
|
|
1237
|
+
request: dict = {
|
|
1238
|
+
'type': 'coin_in',
|
|
1239
|
+
}
|
|
1240
|
+
return await self.fetch_deposits_withdrawals(code, since, limit, self.extend(request, params))
|
|
1241
|
+
|
|
1242
|
+
async def fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
|
1243
|
+
"""
|
|
1244
|
+
fetch all withdrawals made from an account
|
|
1245
|
+
:see: https://doc.novadax.com/en-US/#wallet-records-of-deposits-and-withdraws
|
|
1246
|
+
:param str code: unified currency code
|
|
1247
|
+
:param int [since]: the earliest time in ms to fetch withdrawals for
|
|
1248
|
+
:param int [limit]: the maximum number of withdrawals structures to retrieve
|
|
1249
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1250
|
+
:returns dict[]: a list of `transaction structures <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1251
|
+
"""
|
|
1252
|
+
request: dict = {
|
|
1253
|
+
'type': 'coin_out',
|
|
1254
|
+
}
|
|
1255
|
+
return await self.fetch_deposits_withdrawals(code, since, limit, self.extend(request, params))
|
|
1256
|
+
|
|
1257
|
+
async def fetch_deposits_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
|
1258
|
+
"""
|
|
1259
|
+
fetch history of deposits and withdrawals
|
|
1260
|
+
:see: https://doc.novadax.com/en-US/#wallet-records-of-deposits-and-withdraws
|
|
1261
|
+
:param str [code]: unified currency code for the currency of the deposit/withdrawals, default is None
|
|
1262
|
+
:param int [since]: timestamp in ms of the earliest deposit/withdrawal, default is None
|
|
1263
|
+
:param int [limit]: max number of deposit/withdrawals to return, default is None
|
|
1264
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1265
|
+
:returns dict: a list of `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1266
|
+
"""
|
|
1267
|
+
await self.load_markets()
|
|
1268
|
+
request: dict = {
|
|
1269
|
+
# 'currency': currency['id'],
|
|
1270
|
+
# 'type': 'coin_in', # 'coin_out'
|
|
1271
|
+
# 'direct': 'asc', # 'desc'
|
|
1272
|
+
# 'size': limit, # default 100
|
|
1273
|
+
# 'start': id, # offset id
|
|
1274
|
+
}
|
|
1275
|
+
currency = None
|
|
1276
|
+
if code is not None:
|
|
1277
|
+
currency = self.currency(code)
|
|
1278
|
+
request['currency'] = currency['id']
|
|
1279
|
+
if limit is not None:
|
|
1280
|
+
request['size'] = limit
|
|
1281
|
+
response = await self.privateGetWalletQueryDepositWithdraw(self.extend(request, params))
|
|
1282
|
+
#
|
|
1283
|
+
# {
|
|
1284
|
+
# "code": "A10000",
|
|
1285
|
+
# "data": [
|
|
1286
|
+
# {
|
|
1287
|
+
# "id": "DR562339304588709888",
|
|
1288
|
+
# "type": "COIN_IN",
|
|
1289
|
+
# "currency": "XLM",
|
|
1290
|
+
# "chain": "XLM",
|
|
1291
|
+
# "address": "GCUTK7KHPJC3ZQJ3OMWWFHAK2OXIBRD4LNZQRCCOVE7A2XOPP2K5PU5Q",
|
|
1292
|
+
# "addressTag": "1000009",
|
|
1293
|
+
# "amount": 1.0,
|
|
1294
|
+
# "state": "SUCCESS",
|
|
1295
|
+
# "txHash": "39210645748822f8d4ce673c7559aa6622e6e9cdd7073bc0fcae14b1edfda5f4",
|
|
1296
|
+
# "createdAt": 1554113737000,
|
|
1297
|
+
# "updatedAt": 1601371273000
|
|
1298
|
+
# }
|
|
1299
|
+
# ],
|
|
1300
|
+
# "message": "Success"
|
|
1301
|
+
# }
|
|
1302
|
+
#
|
|
1303
|
+
data = self.safe_list(response, 'data', [])
|
|
1304
|
+
return self.parse_transactions(data, currency, since, limit)
|
|
1305
|
+
|
|
1306
|
+
def parse_transaction_status(self, status: Str):
|
|
1307
|
+
# Pending the record is wait broadcast to chain
|
|
1308
|
+
# x/M confirming the comfirming state of tx, the M is total confirmings needed
|
|
1309
|
+
# SUCCESS the record is success full
|
|
1310
|
+
# FAIL the record failed
|
|
1311
|
+
parts = status.split(' ')
|
|
1312
|
+
status = self.safe_string(parts, 1, status)
|
|
1313
|
+
statuses: dict = {
|
|
1314
|
+
'Pending': 'pending',
|
|
1315
|
+
'confirming': 'pending',
|
|
1316
|
+
'SUCCESS': 'ok',
|
|
1317
|
+
'FAIL': 'failed',
|
|
1318
|
+
}
|
|
1319
|
+
return self.safe_string(statuses, status, status)
|
|
1320
|
+
|
|
1321
|
+
def parse_transaction(self, transaction: dict, currency: Currency = None) -> Transaction:
|
|
1322
|
+
#
|
|
1323
|
+
# withdraw
|
|
1324
|
+
#
|
|
1325
|
+
# {
|
|
1326
|
+
# "code":"A10000",
|
|
1327
|
+
# "data": "DR123",
|
|
1328
|
+
# "message":"Success"
|
|
1329
|
+
# }
|
|
1330
|
+
#
|
|
1331
|
+
# fetchDepositsWithdrawals
|
|
1332
|
+
#
|
|
1333
|
+
# {
|
|
1334
|
+
# "id": "DR562339304588709888",
|
|
1335
|
+
# "type": "COIN_IN",
|
|
1336
|
+
# "currency": "XLM",
|
|
1337
|
+
# "chain": "XLM",
|
|
1338
|
+
# "address": "GCUTK7KHPJC3ZQJ3OMWWFHAK2OXIBRD4LNZQRCCOVE7A2XOPP2K5PU5Q",
|
|
1339
|
+
# "addressTag": "1000009",
|
|
1340
|
+
# "amount": 1.0,
|
|
1341
|
+
# "state": "SUCCESS",
|
|
1342
|
+
# "txHash": "39210645748822f8d4ce673c7559aa6622e6e9cdd7073bc0fcae14b1edfda5f4",
|
|
1343
|
+
# "createdAt": 1554113737000,
|
|
1344
|
+
# "updatedAt": 1601371273000
|
|
1345
|
+
# }
|
|
1346
|
+
#
|
|
1347
|
+
id = self.safe_string_2(transaction, 'id', 'data')
|
|
1348
|
+
type = self.safe_string(transaction, 'type')
|
|
1349
|
+
if type == 'COIN_IN':
|
|
1350
|
+
type = 'deposit'
|
|
1351
|
+
elif type == 'COIN_OUT':
|
|
1352
|
+
type = 'withdraw'
|
|
1353
|
+
amount = self.safe_number(transaction, 'amount')
|
|
1354
|
+
address = self.safe_string(transaction, 'address')
|
|
1355
|
+
tag = self.safe_string(transaction, 'addressTag')
|
|
1356
|
+
txid = self.safe_string(transaction, 'txHash')
|
|
1357
|
+
timestamp = self.safe_integer(transaction, 'createdAt')
|
|
1358
|
+
updated = self.safe_integer(transaction, 'updatedAt')
|
|
1359
|
+
currencyId = self.safe_string(transaction, 'currency')
|
|
1360
|
+
code = self.safe_currency_code(currencyId, currency)
|
|
1361
|
+
status = self.parse_transaction_status(self.safe_string(transaction, 'state'))
|
|
1362
|
+
network = self.safe_string(transaction, 'chain')
|
|
1363
|
+
return {
|
|
1364
|
+
'info': transaction,
|
|
1365
|
+
'id': id,
|
|
1366
|
+
'currency': code,
|
|
1367
|
+
'amount': amount,
|
|
1368
|
+
'network': network,
|
|
1369
|
+
'address': address,
|
|
1370
|
+
'addressTo': address,
|
|
1371
|
+
'addressFrom': None,
|
|
1372
|
+
'tag': tag,
|
|
1373
|
+
'tagTo': tag,
|
|
1374
|
+
'tagFrom': None,
|
|
1375
|
+
'status': status,
|
|
1376
|
+
'type': type,
|
|
1377
|
+
'updated': updated,
|
|
1378
|
+
'txid': txid,
|
|
1379
|
+
'timestamp': timestamp,
|
|
1380
|
+
'datetime': self.iso8601(timestamp),
|
|
1381
|
+
'comment': None,
|
|
1382
|
+
'internal': None,
|
|
1383
|
+
'fee': {
|
|
1384
|
+
'currency': None,
|
|
1385
|
+
'cost': None,
|
|
1386
|
+
'rate': None,
|
|
1387
|
+
},
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
async def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
1391
|
+
"""
|
|
1392
|
+
fetch all trades made by the user
|
|
1393
|
+
:see: https://doc.novadax.com/en-US/#get-order-history
|
|
1394
|
+
:param str symbol: unified market symbol
|
|
1395
|
+
:param int [since]: the earliest time in ms to fetch trades for
|
|
1396
|
+
:param int [limit]: the maximum number of trades structures to retrieve
|
|
1397
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1398
|
+
:returns Trade[]: a list of `trade structures <https://docs.ccxt.com/#/?id=trade-structure>`
|
|
1399
|
+
"""
|
|
1400
|
+
await self.load_markets()
|
|
1401
|
+
request: dict = {
|
|
1402
|
+
# 'orderId': id, # Order ID, string
|
|
1403
|
+
# 'symbol': market['id'], # The trading symbol, like BTC_BRL, string
|
|
1404
|
+
# 'fromId': fromId, # Search fill id to begin with, string
|
|
1405
|
+
# 'toId': toId, # Search fill id to end up with, string
|
|
1406
|
+
# 'fromTimestamp': since, # Search order fill time to begin with, in milliseconds, string
|
|
1407
|
+
# 'toTimestamp': self.milliseconds(), # Search order fill time to end up with, in milliseconds, string
|
|
1408
|
+
# 'limit': limit, # The number of fills to return, default 100, max 100, string
|
|
1409
|
+
# 'accountId': subaccountId, # Sub account ID, if not informed, the fills will be return under master account, string
|
|
1410
|
+
}
|
|
1411
|
+
market = None
|
|
1412
|
+
if symbol is not None:
|
|
1413
|
+
market = self.market(symbol)
|
|
1414
|
+
request['symbol'] = market['id']
|
|
1415
|
+
if limit is not None:
|
|
1416
|
+
request['limit'] = limit
|
|
1417
|
+
if since is not None:
|
|
1418
|
+
request['fromTimestamp'] = since
|
|
1419
|
+
response = await self.privateGetOrdersFills(self.extend(request, params))
|
|
1420
|
+
#
|
|
1421
|
+
# {
|
|
1422
|
+
# "code": "A10000",
|
|
1423
|
+
# "data": [
|
|
1424
|
+
# {
|
|
1425
|
+
# "id": "608717046691139584",
|
|
1426
|
+
# "orderId": "608716957545402368",
|
|
1427
|
+
# "symbol": "BTC_BRL",
|
|
1428
|
+
# "side": "BUY",
|
|
1429
|
+
# "amount": "0.0988",
|
|
1430
|
+
# "price": "45514.76",
|
|
1431
|
+
# "fee": "0.0000988 BTC",
|
|
1432
|
+
# "feeAmount": "0.0000988",
|
|
1433
|
+
# "feeCurrency": "BTC",
|
|
1434
|
+
# "role": "MAKER",
|
|
1435
|
+
# "timestamp": 1565171053345
|
|
1436
|
+
# },
|
|
1437
|
+
# ],
|
|
1438
|
+
# "message": "Success"
|
|
1439
|
+
# }
|
|
1440
|
+
#
|
|
1441
|
+
data = self.safe_list(response, 'data', [])
|
|
1442
|
+
return self.parse_trades(data, market, since, limit)
|
|
1443
|
+
|
|
1444
|
+
def sign(self, path, api='public', method='GET', params={}, headers=None, body=None):
|
|
1445
|
+
request = '/' + self.version + '/' + self.implode_params(path, params)
|
|
1446
|
+
url = self.urls['api'][api] + request
|
|
1447
|
+
query = self.omit(params, self.extract_params(path))
|
|
1448
|
+
if api == 'public':
|
|
1449
|
+
if query:
|
|
1450
|
+
url += '?' + self.urlencode(query)
|
|
1451
|
+
elif api == 'private':
|
|
1452
|
+
self.check_required_credentials()
|
|
1453
|
+
timestamp = str(self.milliseconds())
|
|
1454
|
+
headers = {
|
|
1455
|
+
'X-Nova-Access-Key': self.apiKey,
|
|
1456
|
+
'X-Nova-Timestamp': timestamp,
|
|
1457
|
+
}
|
|
1458
|
+
queryString = None
|
|
1459
|
+
if method == 'POST':
|
|
1460
|
+
body = self.json(query)
|
|
1461
|
+
queryString = self.hash(self.encode(body), 'md5')
|
|
1462
|
+
headers['Content-Type'] = 'application/json'
|
|
1463
|
+
else:
|
|
1464
|
+
if query:
|
|
1465
|
+
url += '?' + self.urlencode(query)
|
|
1466
|
+
queryString = self.urlencode(self.keysort(query))
|
|
1467
|
+
auth = method + "\n" + request + "\n" + queryString + "\n" + timestamp # eslint-disable-line quotes
|
|
1468
|
+
headers['X-Nova-Signature'] = self.hmac(self.encode(auth), self.encode(self.secret), hashlib.sha256)
|
|
1469
|
+
return {'url': url, 'method': method, 'body': body, 'headers': headers}
|
|
1470
|
+
|
|
1471
|
+
def handle_errors(self, code: int, reason: str, url: str, method: str, headers: dict, body: str, response, requestHeaders, requestBody):
|
|
1472
|
+
if response is None:
|
|
1473
|
+
return None
|
|
1474
|
+
#
|
|
1475
|
+
# {"code":"A10003","data":[],"message":"Authentication failed, Invalid accessKey."}
|
|
1476
|
+
#
|
|
1477
|
+
errorCode = self.safe_string(response, 'code')
|
|
1478
|
+
if errorCode != 'A10000':
|
|
1479
|
+
message = self.safe_string(response, 'message')
|
|
1480
|
+
feedback = self.id + ' ' + body
|
|
1481
|
+
self.throw_exactly_matched_exception(self.exceptions['exact'], errorCode, feedback)
|
|
1482
|
+
self.throw_broadly_matched_exception(self.exceptions['broad'], message, feedback)
|
|
1483
|
+
raise ExchangeError(feedback) # unknown message
|
|
1484
|
+
return None
|