ccxt-ir 4.3.46.0.1__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ccxt/__init__.py +358 -0
- ccxt/abantether.py +316 -0
- ccxt/abstract/__init__.py +0 -0
- ccxt/abstract/abantether.py +5 -0
- ccxt/abstract/ace.py +15 -0
- ccxt/abstract/afratether.py +6 -0
- ccxt/abstract/alpaca.py +70 -0
- ccxt/abstract/arzinja.py +5 -0
- ccxt/abstract/arzplus.py +7 -0
- ccxt/abstract/ascendex.py +77 -0
- ccxt/abstract/bequant.py +115 -0
- ccxt/abstract/bigone.py +45 -0
- ccxt/abstract/binance.py +712 -0
- ccxt/abstract/binancecoinm.py +712 -0
- ccxt/abstract/binanceus.py +764 -0
- ccxt/abstract/binanceusdm.py +712 -0
- ccxt/abstract/bingx.py +113 -0
- ccxt/abstract/bit2c.py +27 -0
- ccxt/abstract/bitbank.py +27 -0
- ccxt/abstract/bitbay.py +53 -0
- ccxt/abstract/bitbns.py +40 -0
- ccxt/abstract/bitcoincom.py +115 -0
- ccxt/abstract/bitfinex.py +69 -0
- ccxt/abstract/bitfinex2.py +139 -0
- ccxt/abstract/bitflyer.py +38 -0
- ccxt/abstract/bitget.py +508 -0
- ccxt/abstract/bithumb.py +32 -0
- ccxt/abstract/bitimen.py +7 -0
- ccxt/abstract/bitir.py +7 -0
- ccxt/abstract/bitmart.py +99 -0
- ccxt/abstract/bitmex.py +97 -0
- ccxt/abstract/bitopro.py +29 -0
- ccxt/abstract/bitpanda.py +35 -0
- ccxt/abstract/bitpin.py +7 -0
- ccxt/abstract/bitrue.py +72 -0
- ccxt/abstract/bitso.py +43 -0
- ccxt/abstract/bitstamp.py +258 -0
- ccxt/abstract/bitteam.py +29 -0
- ccxt/abstract/bitvavo.py +27 -0
- ccxt/abstract/bl3p.py +19 -0
- ccxt/abstract/blockchaincom.py +28 -0
- ccxt/abstract/blofin.py +37 -0
- ccxt/abstract/btcalpha.py +18 -0
- ccxt/abstract/btcbox.py +13 -0
- ccxt/abstract/btcmarkets.py +39 -0
- ccxt/abstract/btcturk.py +20 -0
- ccxt/abstract/bybit.py +298 -0
- ccxt/abstract/cex.py +33 -0
- ccxt/abstract/coinbase.py +94 -0
- ccxt/abstract/coinbaseadvanced.py +94 -0
- ccxt/abstract/coinbaseexchange.py +67 -0
- ccxt/abstract/coinbaseinternational.py +39 -0
- ccxt/abstract/coincatch.py +94 -0
- ccxt/abstract/coincheck.py +33 -0
- ccxt/abstract/coinex.py +237 -0
- ccxt/abstract/coinlist.py +54 -0
- ccxt/abstract/coinmate.py +62 -0
- ccxt/abstract/coinmetro.py +34 -0
- ccxt/abstract/coinone.py +67 -0
- ccxt/abstract/coinsph.py +54 -0
- ccxt/abstract/coinspot.py +28 -0
- ccxt/abstract/cryptocom.py +107 -0
- ccxt/abstract/currencycom.py +68 -0
- ccxt/abstract/delta.py +50 -0
- ccxt/abstract/deribit.py +125 -0
- ccxt/abstract/digifinex.py +91 -0
- ccxt/abstract/eterex.py +5 -0
- ccxt/abstract/excoino.py +7 -0
- ccxt/abstract/exir.py +8 -0
- ccxt/abstract/exmo.py +55 -0
- ccxt/abstract/exnovin.py +6 -0
- ccxt/abstract/farhadexchange.py +5 -0
- ccxt/abstract/fmfwio.py +115 -0
- ccxt/abstract/gate.py +265 -0
- ccxt/abstract/gateio.py +265 -0
- ccxt/abstract/gemini.py +58 -0
- ccxt/abstract/hashkey.py +67 -0
- ccxt/abstract/hitbtc.py +115 -0
- ccxt/abstract/hitbtc3.py +115 -0
- ccxt/abstract/hitobit.py +8 -0
- ccxt/abstract/hollaex.py +33 -0
- ccxt/abstract/htx.py +548 -0
- ccxt/abstract/huobi.py +548 -0
- ccxt/abstract/huobijp.py +114 -0
- ccxt/abstract/hyperliquid.py +6 -0
- ccxt/abstract/idex.py +26 -0
- ccxt/abstract/independentreserve.py +37 -0
- ccxt/abstract/indodax.py +26 -0
- ccxt/abstract/jibitex.py +7 -0
- ccxt/abstract/kraken.py +57 -0
- ccxt/abstract/krakenfutures.py +38 -0
- ccxt/abstract/kucoin.py +214 -0
- ccxt/abstract/kucoinfutures.py +233 -0
- ccxt/abstract/kuna.py +182 -0
- ccxt/abstract/latoken.py +56 -0
- ccxt/abstract/lbank.py +61 -0
- ccxt/abstract/luno.py +37 -0
- ccxt/abstract/lykke.py +29 -0
- ccxt/abstract/mercado.py +25 -0
- ccxt/abstract/mexc.py +178 -0
- ccxt/abstract/ndax.py +97 -0
- ccxt/abstract/nobitex.py +7 -0
- ccxt/abstract/novadax.py +29 -0
- ccxt/abstract/oceanex.py +22 -0
- ccxt/abstract/okcoin.py +74 -0
- ccxt/abstract/okexchange.py +8 -0
- ccxt/abstract/okx.py +324 -0
- ccxt/abstract/ompfinex.py +7 -0
- ccxt/abstract/onetrading.py +35 -0
- ccxt/abstract/oxfun.py +34 -0
- ccxt/abstract/p2b.py +22 -0
- ccxt/abstract/paradex.py +40 -0
- ccxt/abstract/paymium.py +28 -0
- ccxt/abstract/phemex.py +115 -0
- ccxt/abstract/poloniex.py +69 -0
- ccxt/abstract/poloniexfutures.py +48 -0
- ccxt/abstract/probit.py +23 -0
- ccxt/abstract/ramzinex.py +7 -0
- ccxt/abstract/sarmayex.py +5 -0
- ccxt/abstract/sarrafex.py +7 -0
- ccxt/abstract/tabdeal.py +7 -0
- ccxt/abstract/tetherland.py +5 -0
- ccxt/abstract/timex.py +62 -0
- ccxt/abstract/tokocrypto.py +37 -0
- ccxt/abstract/tradeogre.py +16 -0
- ccxt/abstract/twox.py +5 -0
- ccxt/abstract/ubitex.py +7 -0
- ccxt/abstract/upbit.py +38 -0
- ccxt/abstract/vertex.py +19 -0
- ccxt/abstract/wallex.py +8 -0
- ccxt/abstract/wavesexchange.py +154 -0
- ccxt/abstract/wazirx.py +30 -0
- ccxt/abstract/whitebit.py +98 -0
- ccxt/abstract/woo.py +83 -0
- ccxt/abstract/woofipro.py +119 -0
- ccxt/abstract/xt.py +152 -0
- ccxt/abstract/yobit.py +16 -0
- ccxt/abstract/zaif.py +38 -0
- ccxt/abstract/zonda.py +53 -0
- ccxt/ace.py +1012 -0
- ccxt/afratether.py +293 -0
- ccxt/alpaca.py +1083 -0
- ccxt/arzinja.py +285 -0
- ccxt/arzplus.py +412 -0
- ccxt/ascendex.py +3330 -0
- ccxt/async_support/__init__.py +337 -0
- ccxt/async_support/abantether.py +316 -0
- ccxt/async_support/ace.py +1012 -0
- ccxt/async_support/afratether.py +293 -0
- ccxt/async_support/alpaca.py +1083 -0
- ccxt/async_support/arzinja.py +285 -0
- ccxt/async_support/arzplus.py +412 -0
- ccxt/async_support/ascendex.py +3330 -0
- ccxt/async_support/base/__init__.py +1 -0
- ccxt/async_support/base/exchange.py +1966 -0
- ccxt/async_support/base/throttler.py +50 -0
- ccxt/async_support/base/ws/__init__.py +38 -0
- ccxt/async_support/base/ws/aiohttp_client.py +125 -0
- ccxt/async_support/base/ws/cache.py +212 -0
- ccxt/async_support/base/ws/client.py +193 -0
- ccxt/async_support/base/ws/fast_client.py +96 -0
- ccxt/async_support/base/ws/functions.py +59 -0
- ccxt/async_support/base/ws/future.py +58 -0
- ccxt/async_support/base/ws/order_book.py +78 -0
- ccxt/async_support/base/ws/order_book_side.py +174 -0
- ccxt/async_support/bequant.py +33 -0
- ccxt/async_support/bigone.py +2113 -0
- ccxt/async_support/binance.py +12234 -0
- ccxt/async_support/binancecoinm.py +45 -0
- ccxt/async_support/binanceus.py +211 -0
- ccxt/async_support/binanceusdm.py +58 -0
- ccxt/async_support/bingx.py +4325 -0
- ccxt/async_support/bit2c.py +866 -0
- ccxt/async_support/bitbank.py +1001 -0
- ccxt/async_support/bitbay.py +17 -0
- ccxt/async_support/bitbns.py +1154 -0
- ccxt/async_support/bitcoincom.py +17 -0
- ccxt/async_support/bitfinex.py +1617 -0
- ccxt/async_support/bitfinex2.py +3552 -0
- ccxt/async_support/bitflyer.py +995 -0
- ccxt/async_support/bitget.py +8273 -0
- ccxt/async_support/bithumb.py +1061 -0
- ccxt/async_support/bitimen.py +401 -0
- ccxt/async_support/bitir.py +490 -0
- ccxt/async_support/bitmart.py +4415 -0
- ccxt/async_support/bitmex.py +2756 -0
- ccxt/async_support/bitopro.py +1630 -0
- ccxt/async_support/bitpanda.py +16 -0
- ccxt/async_support/bitpin.py +454 -0
- ccxt/async_support/bitrue.py +3027 -0
- ccxt/async_support/bitso.py +1670 -0
- ccxt/async_support/bitstamp.py +2203 -0
- ccxt/async_support/bitteam.py +2239 -0
- ccxt/async_support/bitvavo.py +1968 -0
- ccxt/async_support/bl3p.py +485 -0
- ccxt/async_support/blockchaincom.py +1104 -0
- ccxt/async_support/blofin.py +2066 -0
- ccxt/async_support/btcalpha.py +891 -0
- ccxt/async_support/btcbox.py +544 -0
- ccxt/async_support/btcmarkets.py +1221 -0
- ccxt/async_support/btcturk.py +911 -0
- ccxt/async_support/bybit.py +8159 -0
- ccxt/async_support/cex.py +1605 -0
- ccxt/async_support/coinbase.py +4475 -0
- ccxt/async_support/coinbaseadvanced.py +17 -0
- ccxt/async_support/coinbaseexchange.py +1734 -0
- ccxt/async_support/coinbaseinternational.py +1899 -0
- ccxt/async_support/coincatch.py +5069 -0
- ccxt/async_support/coincheck.py +815 -0
- ccxt/async_support/coinex.py +5526 -0
- ccxt/async_support/coinlist.py +2243 -0
- ccxt/async_support/coinmate.py +1067 -0
- ccxt/async_support/coinmetro.py +1797 -0
- ccxt/async_support/coinone.py +1127 -0
- ccxt/async_support/coinsph.py +1850 -0
- ccxt/async_support/coinspot.py +534 -0
- ccxt/async_support/cryptocom.py +2822 -0
- ccxt/async_support/currencycom.py +1950 -0
- ccxt/async_support/delta.py +3376 -0
- ccxt/async_support/deribit.py +3437 -0
- ccxt/async_support/digifinex.py +3960 -0
- ccxt/async_support/eterex.py +286 -0
- ccxt/async_support/excoino.py +399 -0
- ccxt/async_support/exir.py +375 -0
- ccxt/async_support/exmo.py +2462 -0
- ccxt/async_support/exnovin.py +360 -0
- ccxt/async_support/farhadexchange.py +266 -0
- ccxt/async_support/fmfwio.py +34 -0
- ccxt/async_support/gate.py +6976 -0
- ccxt/async_support/gateio.py +16 -0
- ccxt/async_support/gemini.py +1825 -0
- ccxt/async_support/hashkey.py +4150 -0
- ccxt/async_support/hitbtc.py +3423 -0
- ccxt/async_support/hitbtc3.py +16 -0
- ccxt/async_support/hitobit.py +391 -0
- ccxt/async_support/hollaex.py +1813 -0
- ccxt/async_support/htx.py +8506 -0
- ccxt/async_support/huobi.py +16 -0
- ccxt/async_support/huobijp.py +1801 -0
- ccxt/async_support/hyperliquid.py +2431 -0
- ccxt/async_support/idex.py +1766 -0
- ccxt/async_support/independentreserve.py +784 -0
- ccxt/async_support/indodax.py +1247 -0
- ccxt/async_support/jibitex.py +395 -0
- ccxt/async_support/kraken.py +2894 -0
- ccxt/async_support/krakenfutures.py +2601 -0
- ccxt/async_support/kucoin.py +4602 -0
- ccxt/async_support/kucoinfutures.py +2698 -0
- ccxt/async_support/kuna.py +1841 -0
- ccxt/async_support/latoken.py +1664 -0
- ccxt/async_support/lbank.py +2683 -0
- ccxt/async_support/luno.py +1067 -0
- ccxt/async_support/lykke.py +1270 -0
- ccxt/async_support/mercado.py +842 -0
- ccxt/async_support/mexc.py +5369 -0
- ccxt/async_support/ndax.py +2354 -0
- ccxt/async_support/nobitex.py +419 -0
- ccxt/async_support/novadax.py +1484 -0
- ccxt/async_support/oceanex.py +903 -0
- ccxt/async_support/okcoin.py +2936 -0
- ccxt/async_support/okexchange.py +349 -0
- ccxt/async_support/okx.py +7827 -0
- ccxt/async_support/ompfinex.py +472 -0
- ccxt/async_support/onetrading.py +1911 -0
- ccxt/async_support/oxfun.py +2773 -0
- ccxt/async_support/p2b.py +1194 -0
- ccxt/async_support/paradex.py +2015 -0
- ccxt/async_support/paymium.py +564 -0
- ccxt/async_support/phemex.py +4473 -0
- ccxt/async_support/poloniex.py +2232 -0
- ccxt/async_support/poloniexfutures.py +1717 -0
- ccxt/async_support/probit.py +1734 -0
- ccxt/async_support/ramzinex.py +476 -0
- ccxt/async_support/sarmayex.py +357 -0
- ccxt/async_support/sarrafex.py +478 -0
- ccxt/async_support/tabdeal.py +364 -0
- ccxt/async_support/tetherland.py +349 -0
- ccxt/async_support/timex.py +1593 -0
- ccxt/async_support/tokocrypto.py +2405 -0
- ccxt/async_support/tradeogre.py +608 -0
- ccxt/async_support/twox.py +326 -0
- ccxt/async_support/ubitex.py +409 -0
- ccxt/async_support/upbit.py +1833 -0
- ccxt/async_support/vertex.py +2922 -0
- ccxt/async_support/wallex.py +445 -0
- ccxt/async_support/wavesexchange.py +2473 -0
- ccxt/async_support/wazirx.py +1224 -0
- ccxt/async_support/whitebit.py +2469 -0
- ccxt/async_support/woo.py +3114 -0
- ccxt/async_support/woofipro.py +2533 -0
- ccxt/async_support/xt.py +4454 -0
- ccxt/async_support/yobit.py +1283 -0
- ccxt/async_support/zaif.py +725 -0
- ccxt/async_support/zonda.py +1828 -0
- ccxt/base/__init__.py +27 -0
- ccxt/base/decimal_to_precision.py +174 -0
- ccxt/base/errors.py +242 -0
- ccxt/base/exchange.py +5941 -0
- ccxt/base/precise.py +287 -0
- ccxt/base/types.py +502 -0
- ccxt/bequant.py +33 -0
- ccxt/bigone.py +2112 -0
- ccxt/binance.py +12233 -0
- ccxt/binancecoinm.py +45 -0
- ccxt/binanceus.py +211 -0
- ccxt/binanceusdm.py +58 -0
- ccxt/bingx.py +4324 -0
- ccxt/bit2c.py +866 -0
- ccxt/bitbank.py +1001 -0
- ccxt/bitbay.py +17 -0
- ccxt/bitbns.py +1154 -0
- ccxt/bitcoincom.py +17 -0
- ccxt/bitfinex.py +1617 -0
- ccxt/bitfinex2.py +3552 -0
- ccxt/bitflyer.py +995 -0
- ccxt/bitget.py +8272 -0
- ccxt/bithumb.py +1061 -0
- ccxt/bitimen.py +401 -0
- ccxt/bitir.py +490 -0
- ccxt/bitmart.py +4415 -0
- ccxt/bitmex.py +2756 -0
- ccxt/bitopro.py +1630 -0
- ccxt/bitpanda.py +16 -0
- ccxt/bitpin.py +454 -0
- ccxt/bitrue.py +3026 -0
- ccxt/bitso.py +1670 -0
- ccxt/bitstamp.py +2203 -0
- ccxt/bitteam.py +2239 -0
- ccxt/bitvavo.py +1968 -0
- ccxt/bl3p.py +485 -0
- ccxt/blockchaincom.py +1104 -0
- ccxt/blofin.py +2066 -0
- ccxt/btcalpha.py +891 -0
- ccxt/btcbox.py +544 -0
- ccxt/btcmarkets.py +1221 -0
- ccxt/btcturk.py +911 -0
- ccxt/bybit.py +8158 -0
- ccxt/cex.py +1605 -0
- ccxt/coinbase.py +4474 -0
- ccxt/coinbaseadvanced.py +17 -0
- ccxt/coinbaseexchange.py +1734 -0
- ccxt/coinbaseinternational.py +1899 -0
- ccxt/coincatch.py +5069 -0
- ccxt/coincheck.py +815 -0
- ccxt/coinex.py +5525 -0
- ccxt/coinlist.py +2243 -0
- ccxt/coinmate.py +1067 -0
- ccxt/coinmetro.py +1797 -0
- ccxt/coinone.py +1127 -0
- ccxt/coinsph.py +1850 -0
- ccxt/coinspot.py +534 -0
- ccxt/cryptocom.py +2822 -0
- ccxt/currencycom.py +1950 -0
- ccxt/delta.py +3376 -0
- ccxt/deribit.py +3437 -0
- ccxt/digifinex.py +3959 -0
- ccxt/eterex.py +286 -0
- ccxt/excoino.py +399 -0
- ccxt/exir.py +375 -0
- ccxt/exmo.py +2462 -0
- ccxt/exnovin.py +360 -0
- ccxt/farhadexchange.py +266 -0
- ccxt/fmfwio.py +34 -0
- ccxt/gate.py +6975 -0
- ccxt/gateio.py +16 -0
- ccxt/gemini.py +1824 -0
- ccxt/hashkey.py +4150 -0
- ccxt/hitbtc.py +3423 -0
- ccxt/hitbtc3.py +16 -0
- ccxt/hitobit.py +391 -0
- ccxt/hollaex.py +1813 -0
- ccxt/htx.py +8505 -0
- ccxt/huobi.py +16 -0
- ccxt/huobijp.py +1801 -0
- ccxt/hyperliquid.py +2430 -0
- ccxt/idex.py +1766 -0
- ccxt/independentreserve.py +784 -0
- ccxt/indodax.py +1247 -0
- ccxt/jibitex.py +395 -0
- ccxt/kraken.py +2894 -0
- ccxt/krakenfutures.py +2601 -0
- ccxt/kucoin.py +4601 -0
- ccxt/kucoinfutures.py +2698 -0
- ccxt/kuna.py +1841 -0
- ccxt/latoken.py +1664 -0
- ccxt/lbank.py +2682 -0
- ccxt/luno.py +1067 -0
- ccxt/lykke.py +1270 -0
- ccxt/mercado.py +842 -0
- ccxt/mexc.py +5369 -0
- ccxt/ndax.py +2354 -0
- ccxt/nobitex.py +419 -0
- ccxt/novadax.py +1484 -0
- ccxt/oceanex.py +903 -0
- ccxt/okcoin.py +2936 -0
- ccxt/okexchange.py +349 -0
- ccxt/okx.py +7826 -0
- ccxt/ompfinex.py +472 -0
- ccxt/onetrading.py +1911 -0
- ccxt/oxfun.py +2772 -0
- ccxt/p2b.py +1194 -0
- ccxt/paradex.py +2015 -0
- ccxt/paymium.py +564 -0
- ccxt/phemex.py +4473 -0
- ccxt/poloniex.py +2232 -0
- ccxt/poloniexfutures.py +1717 -0
- ccxt/pro/__init__.py +149 -0
- ccxt/pro/alpaca.py +685 -0
- ccxt/pro/ascendex.py +916 -0
- ccxt/pro/bequant.py +38 -0
- ccxt/pro/binance.py +3488 -0
- ccxt/pro/binancecoinm.py +28 -0
- ccxt/pro/binanceus.py +48 -0
- ccxt/pro/binanceusdm.py +31 -0
- ccxt/pro/bingx.py +1264 -0
- ccxt/pro/bitcoincom.py +34 -0
- ccxt/pro/bitfinex.py +621 -0
- ccxt/pro/bitfinex2.py +1083 -0
- ccxt/pro/bitget.py +1692 -0
- ccxt/pro/bithumb.py +368 -0
- ccxt/pro/bitmart.py +1449 -0
- ccxt/pro/bitmex.py +1656 -0
- ccxt/pro/bitopro.py +445 -0
- ccxt/pro/bitpanda.py +15 -0
- ccxt/pro/bitrue.py +447 -0
- ccxt/pro/bitstamp.py +522 -0
- ccxt/pro/bitvavo.py +1270 -0
- ccxt/pro/blockchaincom.py +738 -0
- ccxt/pro/blofin.py +692 -0
- ccxt/pro/bybit.py +2000 -0
- ccxt/pro/cex.py +1440 -0
- ccxt/pro/coinbase.py +678 -0
- ccxt/pro/coinbaseadvanced.py +16 -0
- ccxt/pro/coinbaseexchange.py +895 -0
- ccxt/pro/coinbaseinternational.py +620 -0
- ccxt/pro/coincatch.py +1464 -0
- ccxt/pro/coincheck.py +199 -0
- ccxt/pro/coinex.py +1061 -0
- ccxt/pro/coinone.py +395 -0
- ccxt/pro/cryptocom.py +947 -0
- ccxt/pro/currencycom.py +536 -0
- ccxt/pro/deribit.py +892 -0
- ccxt/pro/exmo.py +629 -0
- ccxt/pro/gate.py +1416 -0
- ccxt/pro/gateio.py +15 -0
- ccxt/pro/gemini.py +865 -0
- ccxt/pro/hashkey.py +802 -0
- ccxt/pro/hitbtc.py +1216 -0
- ccxt/pro/hollaex.py +563 -0
- ccxt/pro/htx.py +2215 -0
- ccxt/pro/huobi.py +15 -0
- ccxt/pro/huobijp.py +570 -0
- ccxt/pro/hyperliquid.py +525 -0
- ccxt/pro/idex.py +672 -0
- ccxt/pro/independentreserve.py +270 -0
- ccxt/pro/kraken.py +1356 -0
- ccxt/pro/krakenfutures.py +1492 -0
- ccxt/pro/kucoin.py +1133 -0
- ccxt/pro/kucoinfutures.py +1081 -0
- ccxt/pro/lbank.py +843 -0
- ccxt/pro/luno.py +303 -0
- ccxt/pro/mexc.py +1122 -0
- ccxt/pro/ndax.py +506 -0
- ccxt/pro/okcoin.py +698 -0
- ccxt/pro/okx.py +1851 -0
- ccxt/pro/onetrading.py +1275 -0
- ccxt/pro/oxfun.py +950 -0
- ccxt/pro/p2b.py +419 -0
- ccxt/pro/paradex.py +352 -0
- ccxt/pro/phemex.py +1441 -0
- ccxt/pro/poloniex.py +1166 -0
- ccxt/pro/poloniexfutures.py +990 -0
- ccxt/pro/probit.py +551 -0
- ccxt/pro/upbit.py +520 -0
- ccxt/pro/vertex.py +943 -0
- ccxt/pro/wazirx.py +749 -0
- ccxt/pro/whitebit.py +864 -0
- ccxt/pro/woo.py +1078 -0
- ccxt/pro/woofipro.py +1183 -0
- ccxt/pro/xt.py +1067 -0
- ccxt/probit.py +1734 -0
- ccxt/ramzinex.py +476 -0
- ccxt/sarmayex.py +357 -0
- ccxt/sarrafex.py +478 -0
- ccxt/static_dependencies/__init__.py +1 -0
- ccxt/static_dependencies/ecdsa/__init__.py +14 -0
- ccxt/static_dependencies/ecdsa/_version.py +520 -0
- ccxt/static_dependencies/ecdsa/curves.py +56 -0
- ccxt/static_dependencies/ecdsa/der.py +221 -0
- ccxt/static_dependencies/ecdsa/ecdsa.py +310 -0
- ccxt/static_dependencies/ecdsa/ellipticcurve.py +197 -0
- ccxt/static_dependencies/ecdsa/keys.py +332 -0
- ccxt/static_dependencies/ecdsa/numbertheory.py +531 -0
- ccxt/static_dependencies/ecdsa/rfc6979.py +100 -0
- ccxt/static_dependencies/ecdsa/util.py +266 -0
- ccxt/static_dependencies/ethereum/__init__.py +7 -0
- ccxt/static_dependencies/ethereum/abi/__init__.py +16 -0
- ccxt/static_dependencies/ethereum/abi/abi.py +19 -0
- ccxt/static_dependencies/ethereum/abi/base.py +152 -0
- ccxt/static_dependencies/ethereum/abi/codec.py +217 -0
- ccxt/static_dependencies/ethereum/abi/constants.py +3 -0
- ccxt/static_dependencies/ethereum/abi/decoding.py +565 -0
- ccxt/static_dependencies/ethereum/abi/encoding.py +720 -0
- ccxt/static_dependencies/ethereum/abi/exceptions.py +139 -0
- ccxt/static_dependencies/ethereum/abi/grammar.py +443 -0
- ccxt/static_dependencies/ethereum/abi/packed.py +13 -0
- ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- ccxt/static_dependencies/ethereum/abi/registry.py +643 -0
- ccxt/static_dependencies/ethereum/abi/tools/__init__.py +3 -0
- ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +230 -0
- ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- ccxt/static_dependencies/ethereum/abi/utils/numeric.py +83 -0
- ccxt/static_dependencies/ethereum/abi/utils/padding.py +27 -0
- ccxt/static_dependencies/ethereum/abi/utils/string.py +19 -0
- ccxt/static_dependencies/ethereum/account/__init__.py +3 -0
- ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +4 -0
- ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +239 -0
- ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +40 -0
- ccxt/static_dependencies/ethereum/account/messages.py +263 -0
- ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- ccxt/static_dependencies/ethereum/hexbytes/__init__.py +5 -0
- ccxt/static_dependencies/ethereum/hexbytes/_utils.py +54 -0
- ccxt/static_dependencies/ethereum/hexbytes/main.py +65 -0
- ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- ccxt/static_dependencies/ethereum/typing/__init__.py +63 -0
- ccxt/static_dependencies/ethereum/typing/abi.py +6 -0
- ccxt/static_dependencies/ethereum/typing/bls.py +7 -0
- ccxt/static_dependencies/ethereum/typing/discovery.py +5 -0
- ccxt/static_dependencies/ethereum/typing/encoding.py +7 -0
- ccxt/static_dependencies/ethereum/typing/enums.py +17 -0
- ccxt/static_dependencies/ethereum/typing/ethpm.py +9 -0
- ccxt/static_dependencies/ethereum/typing/evm.py +20 -0
- ccxt/static_dependencies/ethereum/typing/networks.py +1122 -0
- ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- ccxt/static_dependencies/ethereum/utils/__init__.py +115 -0
- ccxt/static_dependencies/ethereum/utils/abi.py +72 -0
- ccxt/static_dependencies/ethereum/utils/address.py +171 -0
- ccxt/static_dependencies/ethereum/utils/applicators.py +151 -0
- ccxt/static_dependencies/ethereum/utils/conversions.py +190 -0
- ccxt/static_dependencies/ethereum/utils/currency.py +107 -0
- ccxt/static_dependencies/ethereum/utils/curried/__init__.py +269 -0
- ccxt/static_dependencies/ethereum/utils/debug.py +20 -0
- ccxt/static_dependencies/ethereum/utils/decorators.py +132 -0
- ccxt/static_dependencies/ethereum/utils/encoding.py +6 -0
- ccxt/static_dependencies/ethereum/utils/exceptions.py +4 -0
- ccxt/static_dependencies/ethereum/utils/functional.py +75 -0
- ccxt/static_dependencies/ethereum/utils/hexadecimal.py +74 -0
- ccxt/static_dependencies/ethereum/utils/humanize.py +188 -0
- ccxt/static_dependencies/ethereum/utils/logging.py +159 -0
- ccxt/static_dependencies/ethereum/utils/module_loading.py +31 -0
- ccxt/static_dependencies/ethereum/utils/numeric.py +43 -0
- ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- ccxt/static_dependencies/ethereum/utils/toolz.py +76 -0
- ccxt/static_dependencies/ethereum/utils/types.py +54 -0
- ccxt/static_dependencies/ethereum/utils/typing/__init__.py +18 -0
- ccxt/static_dependencies/ethereum/utils/typing/misc.py +14 -0
- ccxt/static_dependencies/ethereum/utils/units.py +31 -0
- ccxt/static_dependencies/keccak/__init__.py +3 -0
- ccxt/static_dependencies/keccak/keccak.py +197 -0
- ccxt/static_dependencies/lark/__init__.py +38 -0
- ccxt/static_dependencies/lark/__pyinstaller/__init__.py +6 -0
- ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +14 -0
- ccxt/static_dependencies/lark/ast_utils.py +59 -0
- ccxt/static_dependencies/lark/common.py +86 -0
- ccxt/static_dependencies/lark/exceptions.py +292 -0
- ccxt/static_dependencies/lark/grammar.py +130 -0
- ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
- ccxt/static_dependencies/lark/indenter.py +143 -0
- ccxt/static_dependencies/lark/lark.py +658 -0
- ccxt/static_dependencies/lark/lexer.py +678 -0
- ccxt/static_dependencies/lark/load_grammar.py +1428 -0
- ccxt/static_dependencies/lark/parse_tree_builder.py +391 -0
- ccxt/static_dependencies/lark/parser_frontends.py +257 -0
- ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
- ccxt/static_dependencies/lark/parsers/cyk.py +340 -0
- ccxt/static_dependencies/lark/parsers/earley.py +314 -0
- ccxt/static_dependencies/lark/parsers/earley_common.py +42 -0
- ccxt/static_dependencies/lark/parsers/earley_forest.py +801 -0
- ccxt/static_dependencies/lark/parsers/grammar_analysis.py +203 -0
- ccxt/static_dependencies/lark/parsers/lalr_analysis.py +332 -0
- ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +158 -0
- ccxt/static_dependencies/lark/parsers/lalr_parser.py +122 -0
- ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +110 -0
- ccxt/static_dependencies/lark/parsers/xearley.py +165 -0
- ccxt/static_dependencies/lark/reconstruct.py +107 -0
- ccxt/static_dependencies/lark/tools/__init__.py +70 -0
- ccxt/static_dependencies/lark/tools/nearley.py +202 -0
- ccxt/static_dependencies/lark/tools/serialize.py +32 -0
- ccxt/static_dependencies/lark/tools/standalone.py +196 -0
- ccxt/static_dependencies/lark/tree.py +267 -0
- ccxt/static_dependencies/lark/tree_matcher.py +186 -0
- ccxt/static_dependencies/lark/tree_templates.py +180 -0
- ccxt/static_dependencies/lark/utils.py +343 -0
- ccxt/static_dependencies/lark/visitors.py +596 -0
- ccxt/static_dependencies/marshmallow/__init__.py +81 -0
- ccxt/static_dependencies/marshmallow/base.py +65 -0
- ccxt/static_dependencies/marshmallow/class_registry.py +94 -0
- ccxt/static_dependencies/marshmallow/decorators.py +231 -0
- ccxt/static_dependencies/marshmallow/error_store.py +60 -0
- ccxt/static_dependencies/marshmallow/exceptions.py +71 -0
- ccxt/static_dependencies/marshmallow/fields.py +2114 -0
- ccxt/static_dependencies/marshmallow/orderedset.py +89 -0
- ccxt/static_dependencies/marshmallow/schema.py +1228 -0
- ccxt/static_dependencies/marshmallow/types.py +12 -0
- ccxt/static_dependencies/marshmallow/utils.py +378 -0
- ccxt/static_dependencies/marshmallow/validate.py +678 -0
- ccxt/static_dependencies/marshmallow/warnings.py +2 -0
- ccxt/static_dependencies/marshmallow_dataclass/__init__.py +1047 -0
- ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +51 -0
- ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +45 -0
- ccxt/static_dependencies/marshmallow_dataclass/mypy.py +71 -0
- ccxt/static_dependencies/marshmallow_dataclass/typing.py +14 -0
- ccxt/static_dependencies/marshmallow_dataclass/union_field.py +82 -0
- ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +1 -0
- ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +193 -0
- ccxt/static_dependencies/msgpack/__init__.py +55 -0
- ccxt/static_dependencies/msgpack/exceptions.py +48 -0
- ccxt/static_dependencies/msgpack/ext.py +168 -0
- ccxt/static_dependencies/msgpack/fallback.py +951 -0
- ccxt/static_dependencies/parsimonious/__init__.py +10 -0
- ccxt/static_dependencies/parsimonious/exceptions.py +105 -0
- ccxt/static_dependencies/parsimonious/expressions.py +479 -0
- ccxt/static_dependencies/parsimonious/grammar.py +487 -0
- ccxt/static_dependencies/parsimonious/nodes.py +325 -0
- ccxt/static_dependencies/parsimonious/utils.py +40 -0
- ccxt/static_dependencies/starknet/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/data_types.py +123 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +77 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +46 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +138 -0
- ccxt/static_dependencies/starknet/cairo/felt.py +64 -0
- ccxt/static_dependencies/starknet/cairo/type_parser.py +121 -0
- ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +59 -0
- ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +77 -0
- ccxt/static_dependencies/starknet/ccxt_utils.py +7 -0
- ccxt/static_dependencies/starknet/common.py +15 -0
- ccxt/static_dependencies/starknet/constants.py +39 -0
- ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
- ccxt/static_dependencies/starknet/hash/address.py +79 -0
- ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +111 -0
- ccxt/static_dependencies/starknet/hash/selector.py +16 -0
- ccxt/static_dependencies/starknet/hash/storage.py +12 -0
- ccxt/static_dependencies/starknet/hash/utils.py +78 -0
- ccxt/static_dependencies/starknet/models/__init__.py +0 -0
- ccxt/static_dependencies/starknet/models/typed_data.py +45 -0
- ccxt/static_dependencies/starknet/serialization/__init__.py +24 -0
- ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +40 -0
- ccxt/static_dependencies/starknet/serialization/_context.py +142 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +10 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +82 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +43 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +37 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +66 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +71 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +71 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +50 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +58 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +43 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +40 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +72 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +36 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +36 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +76 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +100 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +32 -0
- ccxt/static_dependencies/starknet/serialization/errors.py +10 -0
- ccxt/static_dependencies/starknet/serialization/factory.py +229 -0
- ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +110 -0
- ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +59 -0
- ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
- ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +86 -0
- ccxt/static_dependencies/starknet/utils/iterable.py +13 -0
- ccxt/static_dependencies/starknet/utils/schema.py +13 -0
- ccxt/static_dependencies/starknet/utils/typed_data.py +182 -0
- ccxt/static_dependencies/starkware/__init__.py +0 -0
- ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
- ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +50 -0
- ccxt/static_dependencies/starkware/crypto/math_utils.py +78 -0
- ccxt/static_dependencies/starkware/crypto/signature.py +2344 -0
- ccxt/static_dependencies/starkware/crypto/utils.py +63 -0
- ccxt/static_dependencies/sympy/__init__.py +0 -0
- ccxt/static_dependencies/sympy/core/__init__.py +0 -0
- ccxt/static_dependencies/sympy/core/intfunc.py +35 -0
- ccxt/static_dependencies/sympy/external/__init__.py +0 -0
- ccxt/static_dependencies/sympy/external/gmpy.py +345 -0
- ccxt/static_dependencies/sympy/external/importtools.py +187 -0
- ccxt/static_dependencies/sympy/external/ntheory.py +637 -0
- ccxt/static_dependencies/sympy/external/pythonmpq.py +341 -0
- ccxt/static_dependencies/toolz/__init__.py +26 -0
- ccxt/static_dependencies/toolz/_signatures.py +784 -0
- ccxt/static_dependencies/toolz/_version.py +520 -0
- ccxt/static_dependencies/toolz/compatibility.py +30 -0
- ccxt/static_dependencies/toolz/curried/__init__.py +101 -0
- ccxt/static_dependencies/toolz/curried/exceptions.py +22 -0
- ccxt/static_dependencies/toolz/curried/operator.py +22 -0
- ccxt/static_dependencies/toolz/dicttoolz.py +339 -0
- ccxt/static_dependencies/toolz/functoolz.py +1049 -0
- ccxt/static_dependencies/toolz/itertoolz.py +1057 -0
- ccxt/static_dependencies/toolz/recipes.py +46 -0
- ccxt/static_dependencies/toolz/utils.py +9 -0
- ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
- ccxt/static_dependencies/typing_inspect/typing_inspect.py +851 -0
- ccxt/tabdeal.py +364 -0
- ccxt/test/__init__.py +3 -0
- ccxt/test/base/__init__.py +29 -0
- ccxt/test/base/test_account.py +26 -0
- ccxt/test/base/test_balance.py +56 -0
- ccxt/test/base/test_borrow_interest.py +35 -0
- ccxt/test/base/test_borrow_rate.py +32 -0
- ccxt/test/base/test_calculate_fee.py +51 -0
- ccxt/test/base/test_crypto.py +127 -0
- ccxt/test/base/test_currency.py +76 -0
- ccxt/test/base/test_datetime.py +109 -0
- ccxt/test/base/test_decimal_to_precision.py +392 -0
- ccxt/test/base/test_deep_extend.py +68 -0
- ccxt/test/base/test_deposit_withdrawal.py +50 -0
- ccxt/test/base/test_exchange_datetime_functions.py +76 -0
- ccxt/test/base/test_funding_rate_history.py +29 -0
- ccxt/test/base/test_last_price.py +31 -0
- ccxt/test/base/test_ledger_entry.py +45 -0
- ccxt/test/base/test_ledger_item.py +48 -0
- ccxt/test/base/test_leverage_tier.py +33 -0
- ccxt/test/base/test_liquidation.py +50 -0
- ccxt/test/base/test_margin_mode.py +24 -0
- ccxt/test/base/test_margin_modification.py +35 -0
- ccxt/test/base/test_market.py +193 -0
- ccxt/test/base/test_number.py +411 -0
- ccxt/test/base/test_ohlcv.py +33 -0
- ccxt/test/base/test_open_interest.py +32 -0
- ccxt/test/base/test_order.py +64 -0
- ccxt/test/base/test_order_book.py +69 -0
- ccxt/test/base/test_position.py +60 -0
- ccxt/test/base/test_shared_methods.py +353 -0
- ccxt/test/base/test_status.py +24 -0
- ccxt/test/base/test_throttle.py +126 -0
- ccxt/test/base/test_ticker.py +92 -0
- ccxt/test/base/test_trade.py +47 -0
- ccxt/test/base/test_trading_fee.py +26 -0
- ccxt/test/base/test_transaction.py +39 -0
- ccxt/test/test_async.py +1649 -0
- ccxt/test/test_sync.py +1648 -0
- ccxt/test/tests_async.py +1558 -0
- ccxt/test/tests_helpers.py +287 -0
- ccxt/test/tests_init.py +39 -0
- ccxt/test/tests_sync.py +1555 -0
- ccxt/tetherland.py +349 -0
- ccxt/timex.py +1593 -0
- ccxt/tokocrypto.py +2405 -0
- ccxt/tradeogre.py +608 -0
- ccxt/twox.py +326 -0
- ccxt/ubitex.py +409 -0
- ccxt/upbit.py +1833 -0
- ccxt/vertex.py +2922 -0
- ccxt/wallex.py +445 -0
- ccxt/wavesexchange.py +2472 -0
- ccxt/wazirx.py +1224 -0
- ccxt/whitebit.py +2469 -0
- ccxt/woo.py +3114 -0
- ccxt/woofipro.py +2533 -0
- ccxt/xt.py +4453 -0
- ccxt/yobit.py +1283 -0
- ccxt/zaif.py +725 -0
- ccxt/zonda.py +1828 -0
- ccxt_ir-4.3.46.0.1.dist-info/LICENSE.txt +21 -0
- ccxt_ir-4.3.46.0.1.dist-info/METADATA +655 -0
- ccxt_ir-4.3.46.0.1.dist-info/RECORD +772 -0
- ccxt_ir-4.3.46.0.1.dist-info/WHEEL +6 -0
- ccxt_ir-4.3.46.0.1.dist-info/top_level.txt +1 -0
ccxt/abstract/bybit.py
ADDED
|
@@ -0,0 +1,298 @@
|
|
|
1
|
+
from ccxt.base.types import Entry
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class ImplicitAPI:
|
|
5
|
+
public_get_spot_v3_public_symbols = publicGetSpotV3PublicSymbols = Entry('spot/v3/public/symbols', 'public', 'GET', {'cost': 1})
|
|
6
|
+
public_get_spot_v3_public_quote_depth = publicGetSpotV3PublicQuoteDepth = Entry('spot/v3/public/quote/depth', 'public', 'GET', {'cost': 1})
|
|
7
|
+
public_get_spot_v3_public_quote_depth_merged = publicGetSpotV3PublicQuoteDepthMerged = Entry('spot/v3/public/quote/depth/merged', 'public', 'GET', {'cost': 1})
|
|
8
|
+
public_get_spot_v3_public_quote_trades = publicGetSpotV3PublicQuoteTrades = Entry('spot/v3/public/quote/trades', 'public', 'GET', {'cost': 1})
|
|
9
|
+
public_get_spot_v3_public_quote_kline = publicGetSpotV3PublicQuoteKline = Entry('spot/v3/public/quote/kline', 'public', 'GET', {'cost': 1})
|
|
10
|
+
public_get_spot_v3_public_quote_ticker_24hr = publicGetSpotV3PublicQuoteTicker24hr = Entry('spot/v3/public/quote/ticker/24hr', 'public', 'GET', {'cost': 1})
|
|
11
|
+
public_get_spot_v3_public_quote_ticker_price = publicGetSpotV3PublicQuoteTickerPrice = Entry('spot/v3/public/quote/ticker/price', 'public', 'GET', {'cost': 1})
|
|
12
|
+
public_get_spot_v3_public_quote_ticker_bookticker = publicGetSpotV3PublicQuoteTickerBookTicker = Entry('spot/v3/public/quote/ticker/bookTicker', 'public', 'GET', {'cost': 1})
|
|
13
|
+
public_get_spot_v3_public_server_time = publicGetSpotV3PublicServerTime = Entry('spot/v3/public/server-time', 'public', 'GET', {'cost': 1})
|
|
14
|
+
public_get_spot_v3_public_infos = publicGetSpotV3PublicInfos = Entry('spot/v3/public/infos', 'public', 'GET', {'cost': 1})
|
|
15
|
+
public_get_spot_v3_public_margin_product_infos = publicGetSpotV3PublicMarginProductInfos = Entry('spot/v3/public/margin-product-infos', 'public', 'GET', {'cost': 1})
|
|
16
|
+
public_get_spot_v3_public_margin_ensure_tokens = publicGetSpotV3PublicMarginEnsureTokens = Entry('spot/v3/public/margin-ensure-tokens', 'public', 'GET', {'cost': 1})
|
|
17
|
+
public_get_v3_public_time = publicGetV3PublicTime = Entry('v3/public/time', 'public', 'GET', {'cost': 1})
|
|
18
|
+
public_get_contract_v3_public_copytrading_symbol_list = publicGetContractV3PublicCopytradingSymbolList = Entry('contract/v3/public/copytrading/symbol/list', 'public', 'GET', {'cost': 1})
|
|
19
|
+
public_get_derivatives_v3_public_order_book_l2 = publicGetDerivativesV3PublicOrderBookL2 = Entry('derivatives/v3/public/order-book/L2', 'public', 'GET', {'cost': 1})
|
|
20
|
+
public_get_derivatives_v3_public_kline = publicGetDerivativesV3PublicKline = Entry('derivatives/v3/public/kline', 'public', 'GET', {'cost': 1})
|
|
21
|
+
public_get_derivatives_v3_public_tickers = publicGetDerivativesV3PublicTickers = Entry('derivatives/v3/public/tickers', 'public', 'GET', {'cost': 1})
|
|
22
|
+
public_get_derivatives_v3_public_instruments_info = publicGetDerivativesV3PublicInstrumentsInfo = Entry('derivatives/v3/public/instruments-info', 'public', 'GET', {'cost': 1})
|
|
23
|
+
public_get_derivatives_v3_public_mark_price_kline = publicGetDerivativesV3PublicMarkPriceKline = Entry('derivatives/v3/public/mark-price-kline', 'public', 'GET', {'cost': 1})
|
|
24
|
+
public_get_derivatives_v3_public_index_price_kline = publicGetDerivativesV3PublicIndexPriceKline = Entry('derivatives/v3/public/index-price-kline', 'public', 'GET', {'cost': 1})
|
|
25
|
+
public_get_derivatives_v3_public_funding_history_funding_rate = publicGetDerivativesV3PublicFundingHistoryFundingRate = Entry('derivatives/v3/public/funding/history-funding-rate', 'public', 'GET', {'cost': 1})
|
|
26
|
+
public_get_derivatives_v3_public_risk_limit_list = publicGetDerivativesV3PublicRiskLimitList = Entry('derivatives/v3/public/risk-limit/list', 'public', 'GET', {'cost': 1})
|
|
27
|
+
public_get_derivatives_v3_public_delivery_price = publicGetDerivativesV3PublicDeliveryPrice = Entry('derivatives/v3/public/delivery-price', 'public', 'GET', {'cost': 1})
|
|
28
|
+
public_get_derivatives_v3_public_recent_trade = publicGetDerivativesV3PublicRecentTrade = Entry('derivatives/v3/public/recent-trade', 'public', 'GET', {'cost': 1})
|
|
29
|
+
public_get_derivatives_v3_public_open_interest = publicGetDerivativesV3PublicOpenInterest = Entry('derivatives/v3/public/open-interest', 'public', 'GET', {'cost': 1})
|
|
30
|
+
public_get_derivatives_v3_public_insurance = publicGetDerivativesV3PublicInsurance = Entry('derivatives/v3/public/insurance', 'public', 'GET', {'cost': 1})
|
|
31
|
+
public_get_v5_announcements_index = publicGetV5AnnouncementsIndex = Entry('v5/announcements/index', 'public', 'GET', {'cost': 5})
|
|
32
|
+
public_get_v5_market_time = publicGetV5MarketTime = Entry('v5/market/time', 'public', 'GET', {'cost': 5})
|
|
33
|
+
public_get_v5_market_kline = publicGetV5MarketKline = Entry('v5/market/kline', 'public', 'GET', {'cost': 5})
|
|
34
|
+
public_get_v5_market_mark_price_kline = publicGetV5MarketMarkPriceKline = Entry('v5/market/mark-price-kline', 'public', 'GET', {'cost': 5})
|
|
35
|
+
public_get_v5_market_index_price_kline = publicGetV5MarketIndexPriceKline = Entry('v5/market/index-price-kline', 'public', 'GET', {'cost': 5})
|
|
36
|
+
public_get_v5_market_premium_index_price_kline = publicGetV5MarketPremiumIndexPriceKline = Entry('v5/market/premium-index-price-kline', 'public', 'GET', {'cost': 5})
|
|
37
|
+
public_get_v5_market_instruments_info = publicGetV5MarketInstrumentsInfo = Entry('v5/market/instruments-info', 'public', 'GET', {'cost': 5})
|
|
38
|
+
public_get_v5_market_orderbook = publicGetV5MarketOrderbook = Entry('v5/market/orderbook', 'public', 'GET', {'cost': 5})
|
|
39
|
+
public_get_v5_market_tickers = publicGetV5MarketTickers = Entry('v5/market/tickers', 'public', 'GET', {'cost': 5})
|
|
40
|
+
public_get_v5_market_funding_history = publicGetV5MarketFundingHistory = Entry('v5/market/funding/history', 'public', 'GET', {'cost': 5})
|
|
41
|
+
public_get_v5_market_recent_trade = publicGetV5MarketRecentTrade = Entry('v5/market/recent-trade', 'public', 'GET', {'cost': 5})
|
|
42
|
+
public_get_v5_market_open_interest = publicGetV5MarketOpenInterest = Entry('v5/market/open-interest', 'public', 'GET', {'cost': 5})
|
|
43
|
+
public_get_v5_market_historical_volatility = publicGetV5MarketHistoricalVolatility = Entry('v5/market/historical-volatility', 'public', 'GET', {'cost': 5})
|
|
44
|
+
public_get_v5_market_insurance = publicGetV5MarketInsurance = Entry('v5/market/insurance', 'public', 'GET', {'cost': 5})
|
|
45
|
+
public_get_v5_market_risk_limit = publicGetV5MarketRiskLimit = Entry('v5/market/risk-limit', 'public', 'GET', {'cost': 5})
|
|
46
|
+
public_get_v5_market_delivery_price = publicGetV5MarketDeliveryPrice = Entry('v5/market/delivery-price', 'public', 'GET', {'cost': 5})
|
|
47
|
+
public_get_v5_market_account_ratio = publicGetV5MarketAccountRatio = Entry('v5/market/account-ratio', 'public', 'GET', {'cost': 5})
|
|
48
|
+
public_get_v5_spot_lever_token_info = publicGetV5SpotLeverTokenInfo = Entry('v5/spot-lever-token/info', 'public', 'GET', {'cost': 5})
|
|
49
|
+
public_get_v5_spot_lever_token_reference = publicGetV5SpotLeverTokenReference = Entry('v5/spot-lever-token/reference', 'public', 'GET', {'cost': 5})
|
|
50
|
+
public_get_v5_spot_margin_trade_data = publicGetV5SpotMarginTradeData = Entry('v5/spot-margin-trade/data', 'public', 'GET', {'cost': 5})
|
|
51
|
+
public_get_v5_spot_cross_margin_trade_data = publicGetV5SpotCrossMarginTradeData = Entry('v5/spot-cross-margin-trade/data', 'public', 'GET', {'cost': 5})
|
|
52
|
+
public_get_v5_spot_cross_margin_trade_pledge_token = publicGetV5SpotCrossMarginTradePledgeToken = Entry('v5/spot-cross-margin-trade/pledge-token', 'public', 'GET', {'cost': 5})
|
|
53
|
+
public_get_v5_spot_cross_margin_trade_borrow_token = publicGetV5SpotCrossMarginTradeBorrowToken = Entry('v5/spot-cross-margin-trade/borrow-token', 'public', 'GET', {'cost': 5})
|
|
54
|
+
public_get_v5_ins_loan_product_infos = publicGetV5InsLoanProductInfos = Entry('v5/ins-loan/product-infos', 'public', 'GET', {'cost': 5})
|
|
55
|
+
public_get_v5_ins_loan_ensure_tokens_convert = publicGetV5InsLoanEnsureTokensConvert = Entry('v5/ins-loan/ensure-tokens-convert', 'public', 'GET', {'cost': 5})
|
|
56
|
+
private_get_v2_private_wallet_fund_records = privateGetV2PrivateWalletFundRecords = Entry('v2/private/wallet/fund/records', 'private', 'GET', {'cost': 25})
|
|
57
|
+
private_get_spot_v3_private_order = privateGetSpotV3PrivateOrder = Entry('spot/v3/private/order', 'private', 'GET', {'cost': 2.5})
|
|
58
|
+
private_get_spot_v3_private_open_orders = privateGetSpotV3PrivateOpenOrders = Entry('spot/v3/private/open-orders', 'private', 'GET', {'cost': 2.5})
|
|
59
|
+
private_get_spot_v3_private_history_orders = privateGetSpotV3PrivateHistoryOrders = Entry('spot/v3/private/history-orders', 'private', 'GET', {'cost': 2.5})
|
|
60
|
+
private_get_spot_v3_private_my_trades = privateGetSpotV3PrivateMyTrades = Entry('spot/v3/private/my-trades', 'private', 'GET', {'cost': 2.5})
|
|
61
|
+
private_get_spot_v3_private_account = privateGetSpotV3PrivateAccount = Entry('spot/v3/private/account', 'private', 'GET', {'cost': 2.5})
|
|
62
|
+
private_get_spot_v3_private_reference = privateGetSpotV3PrivateReference = Entry('spot/v3/private/reference', 'private', 'GET', {'cost': 2.5})
|
|
63
|
+
private_get_spot_v3_private_record = privateGetSpotV3PrivateRecord = Entry('spot/v3/private/record', 'private', 'GET', {'cost': 2.5})
|
|
64
|
+
private_get_spot_v3_private_cross_margin_orders = privateGetSpotV3PrivateCrossMarginOrders = Entry('spot/v3/private/cross-margin-orders', 'private', 'GET', {'cost': 10})
|
|
65
|
+
private_get_spot_v3_private_cross_margin_account = privateGetSpotV3PrivateCrossMarginAccount = Entry('spot/v3/private/cross-margin-account', 'private', 'GET', {'cost': 10})
|
|
66
|
+
private_get_spot_v3_private_cross_margin_loan_info = privateGetSpotV3PrivateCrossMarginLoanInfo = Entry('spot/v3/private/cross-margin-loan-info', 'private', 'GET', {'cost': 10})
|
|
67
|
+
private_get_spot_v3_private_cross_margin_repay_history = privateGetSpotV3PrivateCrossMarginRepayHistory = Entry('spot/v3/private/cross-margin-repay-history', 'private', 'GET', {'cost': 10})
|
|
68
|
+
private_get_spot_v3_private_margin_loan_infos = privateGetSpotV3PrivateMarginLoanInfos = Entry('spot/v3/private/margin-loan-infos', 'private', 'GET', {'cost': 10})
|
|
69
|
+
private_get_spot_v3_private_margin_repaid_infos = privateGetSpotV3PrivateMarginRepaidInfos = Entry('spot/v3/private/margin-repaid-infos', 'private', 'GET', {'cost': 10})
|
|
70
|
+
private_get_spot_v3_private_margin_ltv = privateGetSpotV3PrivateMarginLtv = Entry('spot/v3/private/margin-ltv', 'private', 'GET', {'cost': 10})
|
|
71
|
+
private_get_asset_v3_private_transfer_inter_transfer_list_query = privateGetAssetV3PrivateTransferInterTransferListQuery = Entry('asset/v3/private/transfer/inter-transfer/list/query', 'private', 'GET', {'cost': 50})
|
|
72
|
+
private_get_asset_v3_private_transfer_sub_member_list_query = privateGetAssetV3PrivateTransferSubMemberListQuery = Entry('asset/v3/private/transfer/sub-member/list/query', 'private', 'GET', {'cost': 50})
|
|
73
|
+
private_get_asset_v3_private_transfer_sub_member_transfer_list_query = privateGetAssetV3PrivateTransferSubMemberTransferListQuery = Entry('asset/v3/private/transfer/sub-member-transfer/list/query', 'private', 'GET', {'cost': 50})
|
|
74
|
+
private_get_asset_v3_private_transfer_universal_transfer_list_query = privateGetAssetV3PrivateTransferUniversalTransferListQuery = Entry('asset/v3/private/transfer/universal-transfer/list/query', 'private', 'GET', {'cost': 25})
|
|
75
|
+
private_get_asset_v3_private_coin_info_query = privateGetAssetV3PrivateCoinInfoQuery = Entry('asset/v3/private/coin-info/query', 'private', 'GET', {'cost': 25})
|
|
76
|
+
private_get_asset_v3_private_deposit_address_query = privateGetAssetV3PrivateDepositAddressQuery = Entry('asset/v3/private/deposit/address/query', 'private', 'GET', {'cost': 10})
|
|
77
|
+
private_get_contract_v3_private_copytrading_order_list = privateGetContractV3PrivateCopytradingOrderList = Entry('contract/v3/private/copytrading/order/list', 'private', 'GET', {'cost': 30})
|
|
78
|
+
private_get_contract_v3_private_copytrading_position_list = privateGetContractV3PrivateCopytradingPositionList = Entry('contract/v3/private/copytrading/position/list', 'private', 'GET', {'cost': 40})
|
|
79
|
+
private_get_contract_v3_private_copytrading_wallet_balance = privateGetContractV3PrivateCopytradingWalletBalance = Entry('contract/v3/private/copytrading/wallet/balance', 'private', 'GET', {'cost': 25})
|
|
80
|
+
private_get_contract_v3_private_position_limit_info = privateGetContractV3PrivatePositionLimitInfo = Entry('contract/v3/private/position/limit-info', 'private', 'GET', {'cost': 25})
|
|
81
|
+
private_get_contract_v3_private_order_unfilled_orders = privateGetContractV3PrivateOrderUnfilledOrders = Entry('contract/v3/private/order/unfilled-orders', 'private', 'GET', {'cost': 1})
|
|
82
|
+
private_get_contract_v3_private_order_list = privateGetContractV3PrivateOrderList = Entry('contract/v3/private/order/list', 'private', 'GET', {'cost': 1})
|
|
83
|
+
private_get_contract_v3_private_position_list = privateGetContractV3PrivatePositionList = Entry('contract/v3/private/position/list', 'private', 'GET', {'cost': 1})
|
|
84
|
+
private_get_contract_v3_private_execution_list = privateGetContractV3PrivateExecutionList = Entry('contract/v3/private/execution/list', 'private', 'GET', {'cost': 1})
|
|
85
|
+
private_get_contract_v3_private_position_closed_pnl = privateGetContractV3PrivatePositionClosedPnl = Entry('contract/v3/private/position/closed-pnl', 'private', 'GET', {'cost': 1})
|
|
86
|
+
private_get_contract_v3_private_account_wallet_balance = privateGetContractV3PrivateAccountWalletBalance = Entry('contract/v3/private/account/wallet/balance', 'private', 'GET', {'cost': 1})
|
|
87
|
+
private_get_contract_v3_private_account_fee_rate = privateGetContractV3PrivateAccountFeeRate = Entry('contract/v3/private/account/fee-rate', 'private', 'GET', {'cost': 1})
|
|
88
|
+
private_get_contract_v3_private_account_wallet_fund_records = privateGetContractV3PrivateAccountWalletFundRecords = Entry('contract/v3/private/account/wallet/fund-records', 'private', 'GET', {'cost': 1})
|
|
89
|
+
private_get_unified_v3_private_order_unfilled_orders = privateGetUnifiedV3PrivateOrderUnfilledOrders = Entry('unified/v3/private/order/unfilled-orders', 'private', 'GET', {'cost': 1})
|
|
90
|
+
private_get_unified_v3_private_order_list = privateGetUnifiedV3PrivateOrderList = Entry('unified/v3/private/order/list', 'private', 'GET', {'cost': 1})
|
|
91
|
+
private_get_unified_v3_private_position_list = privateGetUnifiedV3PrivatePositionList = Entry('unified/v3/private/position/list', 'private', 'GET', {'cost': 1})
|
|
92
|
+
private_get_unified_v3_private_execution_list = privateGetUnifiedV3PrivateExecutionList = Entry('unified/v3/private/execution/list', 'private', 'GET', {'cost': 1})
|
|
93
|
+
private_get_unified_v3_private_delivery_record = privateGetUnifiedV3PrivateDeliveryRecord = Entry('unified/v3/private/delivery-record', 'private', 'GET', {'cost': 1})
|
|
94
|
+
private_get_unified_v3_private_settlement_record = privateGetUnifiedV3PrivateSettlementRecord = Entry('unified/v3/private/settlement-record', 'private', 'GET', {'cost': 1})
|
|
95
|
+
private_get_unified_v3_private_account_wallet_balance = privateGetUnifiedV3PrivateAccountWalletBalance = Entry('unified/v3/private/account/wallet/balance', 'private', 'GET', {'cost': 1})
|
|
96
|
+
private_get_unified_v3_private_account_transaction_log = privateGetUnifiedV3PrivateAccountTransactionLog = Entry('unified/v3/private/account/transaction-log', 'private', 'GET', {'cost': 1})
|
|
97
|
+
private_get_unified_v3_private_account_borrow_history = privateGetUnifiedV3PrivateAccountBorrowHistory = Entry('unified/v3/private/account/borrow-history', 'private', 'GET', {'cost': 1})
|
|
98
|
+
private_get_unified_v3_private_account_borrow_rate = privateGetUnifiedV3PrivateAccountBorrowRate = Entry('unified/v3/private/account/borrow-rate', 'private', 'GET', {'cost': 1})
|
|
99
|
+
private_get_unified_v3_private_account_info = privateGetUnifiedV3PrivateAccountInfo = Entry('unified/v3/private/account/info', 'private', 'GET', {'cost': 1})
|
|
100
|
+
private_get_user_v3_private_frozen_sub_member = privateGetUserV3PrivateFrozenSubMember = Entry('user/v3/private/frozen-sub-member', 'private', 'GET', {'cost': 10})
|
|
101
|
+
private_get_user_v3_private_query_sub_members = privateGetUserV3PrivateQuerySubMembers = Entry('user/v3/private/query-sub-members', 'private', 'GET', {'cost': 5})
|
|
102
|
+
private_get_user_v3_private_query_api = privateGetUserV3PrivateQueryApi = Entry('user/v3/private/query-api', 'private', 'GET', {'cost': 5})
|
|
103
|
+
private_get_user_v3_private_get_member_type = privateGetUserV3PrivateGetMemberType = Entry('user/v3/private/get-member-type', 'private', 'GET', {'cost': 1})
|
|
104
|
+
private_get_asset_v3_private_transfer_transfer_coin_list_query = privateGetAssetV3PrivateTransferTransferCoinListQuery = Entry('asset/v3/private/transfer/transfer-coin/list/query', 'private', 'GET', {'cost': 50})
|
|
105
|
+
private_get_asset_v3_private_transfer_account_coin_balance_query = privateGetAssetV3PrivateTransferAccountCoinBalanceQuery = Entry('asset/v3/private/transfer/account-coin/balance/query', 'private', 'GET', {'cost': 50})
|
|
106
|
+
private_get_asset_v3_private_transfer_account_coins_balance_query = privateGetAssetV3PrivateTransferAccountCoinsBalanceQuery = Entry('asset/v3/private/transfer/account-coins/balance/query', 'private', 'GET', {'cost': 25})
|
|
107
|
+
private_get_asset_v3_private_transfer_asset_info_query = privateGetAssetV3PrivateTransferAssetInfoQuery = Entry('asset/v3/private/transfer/asset-info/query', 'private', 'GET', {'cost': 50})
|
|
108
|
+
private_get_asset_v3_public_deposit_allowed_deposit_list_query = privateGetAssetV3PublicDepositAllowedDepositListQuery = Entry('asset/v3/public/deposit/allowed-deposit-list/query', 'private', 'GET', {'cost': 0.17})
|
|
109
|
+
private_get_asset_v3_private_deposit_record_query = privateGetAssetV3PrivateDepositRecordQuery = Entry('asset/v3/private/deposit/record/query', 'private', 'GET', {'cost': 10})
|
|
110
|
+
private_get_asset_v3_private_withdraw_record_query = privateGetAssetV3PrivateWithdrawRecordQuery = Entry('asset/v3/private/withdraw/record/query', 'private', 'GET', {'cost': 10})
|
|
111
|
+
private_get_v5_order_realtime = privateGetV5OrderRealtime = Entry('v5/order/realtime', 'private', 'GET', {'cost': 5})
|
|
112
|
+
private_get_v5_order_history = privateGetV5OrderHistory = Entry('v5/order/history', 'private', 'GET', {'cost': 5})
|
|
113
|
+
private_get_v5_order_spot_borrow_check = privateGetV5OrderSpotBorrowCheck = Entry('v5/order/spot-borrow-check', 'private', 'GET', {'cost': 1})
|
|
114
|
+
private_get_v5_position_list = privateGetV5PositionList = Entry('v5/position/list', 'private', 'GET', {'cost': 5})
|
|
115
|
+
private_get_v5_execution_list = privateGetV5ExecutionList = Entry('v5/execution/list', 'private', 'GET', {'cost': 5})
|
|
116
|
+
private_get_v5_position_closed_pnl = privateGetV5PositionClosedPnl = Entry('v5/position/closed-pnl', 'private', 'GET', {'cost': 5})
|
|
117
|
+
private_get_v5_position_move_history = privateGetV5PositionMoveHistory = Entry('v5/position/move-history', 'private', 'GET', {'cost': 5})
|
|
118
|
+
private_get_v5_pre_upgrade_order_history = privateGetV5PreUpgradeOrderHistory = Entry('v5/pre-upgrade/order/history', 'private', 'GET', {'cost': 5})
|
|
119
|
+
private_get_v5_pre_upgrade_execution_list = privateGetV5PreUpgradeExecutionList = Entry('v5/pre-upgrade/execution/list', 'private', 'GET', {'cost': 5})
|
|
120
|
+
private_get_v5_pre_upgrade_position_closed_pnl = privateGetV5PreUpgradePositionClosedPnl = Entry('v5/pre-upgrade/position/closed-pnl', 'private', 'GET', {'cost': 5})
|
|
121
|
+
private_get_v5_pre_upgrade_account_transaction_log = privateGetV5PreUpgradeAccountTransactionLog = Entry('v5/pre-upgrade/account/transaction-log', 'private', 'GET', {'cost': 5})
|
|
122
|
+
private_get_v5_pre_upgrade_asset_delivery_record = privateGetV5PreUpgradeAssetDeliveryRecord = Entry('v5/pre-upgrade/asset/delivery-record', 'private', 'GET', {'cost': 5})
|
|
123
|
+
private_get_v5_pre_upgrade_asset_settlement_record = privateGetV5PreUpgradeAssetSettlementRecord = Entry('v5/pre-upgrade/asset/settlement-record', 'private', 'GET', {'cost': 5})
|
|
124
|
+
private_get_v5_account_wallet_balance = privateGetV5AccountWalletBalance = Entry('v5/account/wallet-balance', 'private', 'GET', {'cost': 1})
|
|
125
|
+
private_get_v5_account_borrow_history = privateGetV5AccountBorrowHistory = Entry('v5/account/borrow-history', 'private', 'GET', {'cost': 1})
|
|
126
|
+
private_get_v5_account_collateral_info = privateGetV5AccountCollateralInfo = Entry('v5/account/collateral-info', 'private', 'GET', {'cost': 1})
|
|
127
|
+
private_get_v5_asset_coin_greeks = privateGetV5AssetCoinGreeks = Entry('v5/asset/coin-greeks', 'private', 'GET', {'cost': 1})
|
|
128
|
+
private_get_v5_account_fee_rate = privateGetV5AccountFeeRate = Entry('v5/account/fee-rate', 'private', 'GET', {'cost': 10})
|
|
129
|
+
private_get_v5_account_info = privateGetV5AccountInfo = Entry('v5/account/info', 'private', 'GET', {'cost': 5})
|
|
130
|
+
private_get_v5_account_transaction_log = privateGetV5AccountTransactionLog = Entry('v5/account/transaction-log', 'private', 'GET', {'cost': 1})
|
|
131
|
+
private_get_v5_account_contract_transaction_log = privateGetV5AccountContractTransactionLog = Entry('v5/account/contract-transaction-log', 'private', 'GET', {'cost': 1})
|
|
132
|
+
private_get_v5_account_smp_group = privateGetV5AccountSmpGroup = Entry('v5/account/smp-group', 'private', 'GET', {'cost': 1})
|
|
133
|
+
private_get_v5_account_mmp_state = privateGetV5AccountMmpState = Entry('v5/account/mmp-state', 'private', 'GET', {'cost': 5})
|
|
134
|
+
private_get_v5_asset_exchange_order_record = privateGetV5AssetExchangeOrderRecord = Entry('v5/asset/exchange/order-record', 'private', 'GET', {'cost': 5})
|
|
135
|
+
private_get_v5_asset_delivery_record = privateGetV5AssetDeliveryRecord = Entry('v5/asset/delivery-record', 'private', 'GET', {'cost': 5})
|
|
136
|
+
private_get_v5_asset_settlement_record = privateGetV5AssetSettlementRecord = Entry('v5/asset/settlement-record', 'private', 'GET', {'cost': 5})
|
|
137
|
+
private_get_v5_asset_transfer_query_asset_info = privateGetV5AssetTransferQueryAssetInfo = Entry('v5/asset/transfer/query-asset-info', 'private', 'GET', {'cost': 50})
|
|
138
|
+
private_get_v5_asset_transfer_query_account_coins_balance = privateGetV5AssetTransferQueryAccountCoinsBalance = Entry('v5/asset/transfer/query-account-coins-balance', 'private', 'GET', {'cost': 25})
|
|
139
|
+
private_get_v5_asset_transfer_query_account_coin_balance = privateGetV5AssetTransferQueryAccountCoinBalance = Entry('v5/asset/transfer/query-account-coin-balance', 'private', 'GET', {'cost': 50})
|
|
140
|
+
private_get_v5_asset_transfer_query_transfer_coin_list = privateGetV5AssetTransferQueryTransferCoinList = Entry('v5/asset/transfer/query-transfer-coin-list', 'private', 'GET', {'cost': 50})
|
|
141
|
+
private_get_v5_asset_transfer_query_inter_transfer_list = privateGetV5AssetTransferQueryInterTransferList = Entry('v5/asset/transfer/query-inter-transfer-list', 'private', 'GET', {'cost': 50})
|
|
142
|
+
private_get_v5_asset_transfer_query_sub_member_list = privateGetV5AssetTransferQuerySubMemberList = Entry('v5/asset/transfer/query-sub-member-list', 'private', 'GET', {'cost': 50})
|
|
143
|
+
private_get_v5_asset_transfer_query_universal_transfer_list = privateGetV5AssetTransferQueryUniversalTransferList = Entry('v5/asset/transfer/query-universal-transfer-list', 'private', 'GET', {'cost': 25})
|
|
144
|
+
private_get_v5_asset_deposit_query_allowed_list = privateGetV5AssetDepositQueryAllowedList = Entry('v5/asset/deposit/query-allowed-list', 'private', 'GET', {'cost': 5})
|
|
145
|
+
private_get_v5_asset_deposit_query_record = privateGetV5AssetDepositQueryRecord = Entry('v5/asset/deposit/query-record', 'private', 'GET', {'cost': 10})
|
|
146
|
+
private_get_v5_asset_deposit_query_sub_member_record = privateGetV5AssetDepositQuerySubMemberRecord = Entry('v5/asset/deposit/query-sub-member-record', 'private', 'GET', {'cost': 10})
|
|
147
|
+
private_get_v5_asset_deposit_query_internal_record = privateGetV5AssetDepositQueryInternalRecord = Entry('v5/asset/deposit/query-internal-record', 'private', 'GET', {'cost': 5})
|
|
148
|
+
private_get_v5_asset_deposit_query_address = privateGetV5AssetDepositQueryAddress = Entry('v5/asset/deposit/query-address', 'private', 'GET', {'cost': 10})
|
|
149
|
+
private_get_v5_asset_deposit_query_sub_member_address = privateGetV5AssetDepositQuerySubMemberAddress = Entry('v5/asset/deposit/query-sub-member-address', 'private', 'GET', {'cost': 10})
|
|
150
|
+
private_get_v5_asset_coin_query_info = privateGetV5AssetCoinQueryInfo = Entry('v5/asset/coin/query-info', 'private', 'GET', {'cost': 28})
|
|
151
|
+
private_get_v5_asset_withdraw_query_record = privateGetV5AssetWithdrawQueryRecord = Entry('v5/asset/withdraw/query-record', 'private', 'GET', {'cost': 10})
|
|
152
|
+
private_get_v5_asset_withdraw_withdrawable_amount = privateGetV5AssetWithdrawWithdrawableAmount = Entry('v5/asset/withdraw/withdrawable-amount', 'private', 'GET', {'cost': 5})
|
|
153
|
+
private_get_v5_asset_withdraw_vasp_list = privateGetV5AssetWithdrawVaspList = Entry('v5/asset/withdraw/vasp/list', 'private', 'GET', {'cost': 5})
|
|
154
|
+
private_get_v5_user_query_sub_members = privateGetV5UserQuerySubMembers = Entry('v5/user/query-sub-members', 'private', 'GET', {'cost': 5})
|
|
155
|
+
private_get_v5_user_query_api = privateGetV5UserQueryApi = Entry('v5/user/query-api', 'private', 'GET', {'cost': 5})
|
|
156
|
+
private_get_v5_user_sub_apikeys = privateGetV5UserSubApikeys = Entry('v5/user/sub-apikeys', 'private', 'GET', {'cost': 5})
|
|
157
|
+
private_get_v5_user_get_member_type = privateGetV5UserGetMemberType = Entry('v5/user/get-member-type', 'private', 'GET', {'cost': 5})
|
|
158
|
+
private_get_v5_user_aff_customer_info = privateGetV5UserAffCustomerInfo = Entry('v5/user/aff-customer-info', 'private', 'GET', {'cost': 5})
|
|
159
|
+
private_get_v5_user_del_submember = privateGetV5UserDelSubmember = Entry('v5/user/del-submember', 'private', 'GET', {'cost': 5})
|
|
160
|
+
private_get_v5_user_submembers = privateGetV5UserSubmembers = Entry('v5/user/submembers', 'private', 'GET', {'cost': 5})
|
|
161
|
+
private_get_v5_spot_lever_token_order_record = privateGetV5SpotLeverTokenOrderRecord = Entry('v5/spot-lever-token/order-record', 'private', 'GET', {'cost': 1})
|
|
162
|
+
private_get_v5_spot_margin_trade_state = privateGetV5SpotMarginTradeState = Entry('v5/spot-margin-trade/state', 'private', 'GET', {'cost': 5})
|
|
163
|
+
private_get_v5_spot_cross_margin_trade_loan_info = privateGetV5SpotCrossMarginTradeLoanInfo = Entry('v5/spot-cross-margin-trade/loan-info', 'private', 'GET', {'cost': 1})
|
|
164
|
+
private_get_v5_spot_cross_margin_trade_account = privateGetV5SpotCrossMarginTradeAccount = Entry('v5/spot-cross-margin-trade/account', 'private', 'GET', {'cost': 1})
|
|
165
|
+
private_get_v5_spot_cross_margin_trade_orders = privateGetV5SpotCrossMarginTradeOrders = Entry('v5/spot-cross-margin-trade/orders', 'private', 'GET', {'cost': 1})
|
|
166
|
+
private_get_v5_spot_cross_margin_trade_repay_history = privateGetV5SpotCrossMarginTradeRepayHistory = Entry('v5/spot-cross-margin-trade/repay-history', 'private', 'GET', {'cost': 1})
|
|
167
|
+
private_get_v5_ins_loan_product_infos = privateGetV5InsLoanProductInfos = Entry('v5/ins-loan/product-infos', 'private', 'GET', {'cost': 5})
|
|
168
|
+
private_get_v5_ins_loan_ensure_tokens_convert = privateGetV5InsLoanEnsureTokensConvert = Entry('v5/ins-loan/ensure-tokens-convert', 'private', 'GET', {'cost': 5})
|
|
169
|
+
private_get_v5_ins_loan_loan_order = privateGetV5InsLoanLoanOrder = Entry('v5/ins-loan/loan-order', 'private', 'GET', {'cost': 5})
|
|
170
|
+
private_get_v5_ins_loan_repaid_history = privateGetV5InsLoanRepaidHistory = Entry('v5/ins-loan/repaid-history', 'private', 'GET', {'cost': 5})
|
|
171
|
+
private_get_v5_ins_loan_ltv_convert = privateGetV5InsLoanLtvConvert = Entry('v5/ins-loan/ltv-convert', 'private', 'GET', {'cost': 5})
|
|
172
|
+
private_get_v5_lending_info = privateGetV5LendingInfo = Entry('v5/lending/info', 'private', 'GET', {'cost': 5})
|
|
173
|
+
private_get_v5_lending_history_order = privateGetV5LendingHistoryOrder = Entry('v5/lending/history-order', 'private', 'GET', {'cost': 5})
|
|
174
|
+
private_get_v5_lending_account = privateGetV5LendingAccount = Entry('v5/lending/account', 'private', 'GET', {'cost': 5})
|
|
175
|
+
private_get_v5_broker_earning_record = privateGetV5BrokerEarningRecord = Entry('v5/broker/earning-record', 'private', 'GET', {'cost': 5})
|
|
176
|
+
private_get_v5_broker_earnings_info = privateGetV5BrokerEarningsInfo = Entry('v5/broker/earnings-info', 'private', 'GET', {'cost': 5})
|
|
177
|
+
private_get_v5_broker_account_info = privateGetV5BrokerAccountInfo = Entry('v5/broker/account-info', 'private', 'GET', {'cost': 5})
|
|
178
|
+
private_get_v5_broker_asset_query_sub_member_deposit_record = privateGetV5BrokerAssetQuerySubMemberDepositRecord = Entry('v5/broker/asset/query-sub-member-deposit-record', 'private', 'GET', {'cost': 10})
|
|
179
|
+
private_post_option_usdc_openapi_private_v1_place_order = privatePostOptionUsdcOpenapiPrivateV1PlaceOrder = Entry('option/usdc/openapi/private/v1/place-order', 'private', 'POST', {'cost': 2.5})
|
|
180
|
+
private_post_option_usdc_openapi_private_v1_replace_order = privatePostOptionUsdcOpenapiPrivateV1ReplaceOrder = Entry('option/usdc/openapi/private/v1/replace-order', 'private', 'POST', {'cost': 2.5})
|
|
181
|
+
private_post_option_usdc_openapi_private_v1_cancel_order = privatePostOptionUsdcOpenapiPrivateV1CancelOrder = Entry('option/usdc/openapi/private/v1/cancel-order', 'private', 'POST', {'cost': 2.5})
|
|
182
|
+
private_post_option_usdc_openapi_private_v1_cancel_all = privatePostOptionUsdcOpenapiPrivateV1CancelAll = Entry('option/usdc/openapi/private/v1/cancel-all', 'private', 'POST', {'cost': 2.5})
|
|
183
|
+
private_post_option_usdc_openapi_private_v1_query_active_orders = privatePostOptionUsdcOpenapiPrivateV1QueryActiveOrders = Entry('option/usdc/openapi/private/v1/query-active-orders', 'private', 'POST', {'cost': 2.5})
|
|
184
|
+
private_post_option_usdc_openapi_private_v1_query_order_history = privatePostOptionUsdcOpenapiPrivateV1QueryOrderHistory = Entry('option/usdc/openapi/private/v1/query-order-history', 'private', 'POST', {'cost': 2.5})
|
|
185
|
+
private_post_option_usdc_openapi_private_v1_execution_list = privatePostOptionUsdcOpenapiPrivateV1ExecutionList = Entry('option/usdc/openapi/private/v1/execution-list', 'private', 'POST', {'cost': 2.5})
|
|
186
|
+
private_post_option_usdc_openapi_private_v1_query_position = privatePostOptionUsdcOpenapiPrivateV1QueryPosition = Entry('option/usdc/openapi/private/v1/query-position', 'private', 'POST', {'cost': 2.5})
|
|
187
|
+
private_post_perpetual_usdc_openapi_private_v1_place_order = privatePostPerpetualUsdcOpenapiPrivateV1PlaceOrder = Entry('perpetual/usdc/openapi/private/v1/place-order', 'private', 'POST', {'cost': 2.5})
|
|
188
|
+
private_post_perpetual_usdc_openapi_private_v1_replace_order = privatePostPerpetualUsdcOpenapiPrivateV1ReplaceOrder = Entry('perpetual/usdc/openapi/private/v1/replace-order', 'private', 'POST', {'cost': 2.5})
|
|
189
|
+
private_post_perpetual_usdc_openapi_private_v1_cancel_order = privatePostPerpetualUsdcOpenapiPrivateV1CancelOrder = Entry('perpetual/usdc/openapi/private/v1/cancel-order', 'private', 'POST', {'cost': 2.5})
|
|
190
|
+
private_post_perpetual_usdc_openapi_private_v1_cancel_all = privatePostPerpetualUsdcOpenapiPrivateV1CancelAll = Entry('perpetual/usdc/openapi/private/v1/cancel-all', 'private', 'POST', {'cost': 2.5})
|
|
191
|
+
private_post_perpetual_usdc_openapi_private_v1_position_leverage_save = privatePostPerpetualUsdcOpenapiPrivateV1PositionLeverageSave = Entry('perpetual/usdc/openapi/private/v1/position/leverage/save', 'private', 'POST', {'cost': 2.5})
|
|
192
|
+
private_post_spot_v3_private_order = privatePostSpotV3PrivateOrder = Entry('spot/v3/private/order', 'private', 'POST', {'cost': 2.5})
|
|
193
|
+
private_post_spot_v3_private_cancel_order = privatePostSpotV3PrivateCancelOrder = Entry('spot/v3/private/cancel-order', 'private', 'POST', {'cost': 2.5})
|
|
194
|
+
private_post_spot_v3_private_cancel_orders = privatePostSpotV3PrivateCancelOrders = Entry('spot/v3/private/cancel-orders', 'private', 'POST', {'cost': 2.5})
|
|
195
|
+
private_post_spot_v3_private_cancel_orders_by_ids = privatePostSpotV3PrivateCancelOrdersByIds = Entry('spot/v3/private/cancel-orders-by-ids', 'private', 'POST', {'cost': 2.5})
|
|
196
|
+
private_post_spot_v3_private_purchase = privatePostSpotV3PrivatePurchase = Entry('spot/v3/private/purchase', 'private', 'POST', {'cost': 2.5})
|
|
197
|
+
private_post_spot_v3_private_redeem = privatePostSpotV3PrivateRedeem = Entry('spot/v3/private/redeem', 'private', 'POST', {'cost': 2.5})
|
|
198
|
+
private_post_spot_v3_private_cross_margin_loan = privatePostSpotV3PrivateCrossMarginLoan = Entry('spot/v3/private/cross-margin-loan', 'private', 'POST', {'cost': 10})
|
|
199
|
+
private_post_spot_v3_private_cross_margin_repay = privatePostSpotV3PrivateCrossMarginRepay = Entry('spot/v3/private/cross-margin-repay', 'private', 'POST', {'cost': 10})
|
|
200
|
+
private_post_asset_v3_private_transfer_inter_transfer = privatePostAssetV3PrivateTransferInterTransfer = Entry('asset/v3/private/transfer/inter-transfer', 'private', 'POST', {'cost': 150})
|
|
201
|
+
private_post_asset_v3_private_withdraw_create = privatePostAssetV3PrivateWithdrawCreate = Entry('asset/v3/private/withdraw/create', 'private', 'POST', {'cost': 300})
|
|
202
|
+
private_post_asset_v3_private_withdraw_cancel = privatePostAssetV3PrivateWithdrawCancel = Entry('asset/v3/private/withdraw/cancel', 'private', 'POST', {'cost': 50})
|
|
203
|
+
private_post_asset_v3_private_transfer_sub_member_transfer = privatePostAssetV3PrivateTransferSubMemberTransfer = Entry('asset/v3/private/transfer/sub-member-transfer', 'private', 'POST', {'cost': 150})
|
|
204
|
+
private_post_asset_v3_private_transfer_transfer_sub_member_save = privatePostAssetV3PrivateTransferTransferSubMemberSave = Entry('asset/v3/private/transfer/transfer-sub-member-save', 'private', 'POST', {'cost': 150})
|
|
205
|
+
private_post_asset_v3_private_transfer_universal_transfer = privatePostAssetV3PrivateTransferUniversalTransfer = Entry('asset/v3/private/transfer/universal-transfer', 'private', 'POST', {'cost': 10})
|
|
206
|
+
private_post_user_v3_private_create_sub_member = privatePostUserV3PrivateCreateSubMember = Entry('user/v3/private/create-sub-member', 'private', 'POST', {'cost': 10})
|
|
207
|
+
private_post_user_v3_private_create_sub_api = privatePostUserV3PrivateCreateSubApi = Entry('user/v3/private/create-sub-api', 'private', 'POST', {'cost': 10})
|
|
208
|
+
private_post_user_v3_private_update_api = privatePostUserV3PrivateUpdateApi = Entry('user/v3/private/update-api', 'private', 'POST', {'cost': 10})
|
|
209
|
+
private_post_user_v3_private_delete_api = privatePostUserV3PrivateDeleteApi = Entry('user/v3/private/delete-api', 'private', 'POST', {'cost': 10})
|
|
210
|
+
private_post_user_v3_private_update_sub_api = privatePostUserV3PrivateUpdateSubApi = Entry('user/v3/private/update-sub-api', 'private', 'POST', {'cost': 10})
|
|
211
|
+
private_post_user_v3_private_delete_sub_api = privatePostUserV3PrivateDeleteSubApi = Entry('user/v3/private/delete-sub-api', 'private', 'POST', {'cost': 10})
|
|
212
|
+
private_post_contract_v3_private_copytrading_order_create = privatePostContractV3PrivateCopytradingOrderCreate = Entry('contract/v3/private/copytrading/order/create', 'private', 'POST', {'cost': 30})
|
|
213
|
+
private_post_contract_v3_private_copytrading_order_cancel = privatePostContractV3PrivateCopytradingOrderCancel = Entry('contract/v3/private/copytrading/order/cancel', 'private', 'POST', {'cost': 30})
|
|
214
|
+
private_post_contract_v3_private_copytrading_order_close = privatePostContractV3PrivateCopytradingOrderClose = Entry('contract/v3/private/copytrading/order/close', 'private', 'POST', {'cost': 30})
|
|
215
|
+
private_post_contract_v3_private_copytrading_position_close = privatePostContractV3PrivateCopytradingPositionClose = Entry('contract/v3/private/copytrading/position/close', 'private', 'POST', {'cost': 40})
|
|
216
|
+
private_post_contract_v3_private_copytrading_position_set_leverage = privatePostContractV3PrivateCopytradingPositionSetLeverage = Entry('contract/v3/private/copytrading/position/set-leverage', 'private', 'POST', {'cost': 40})
|
|
217
|
+
private_post_contract_v3_private_copytrading_wallet_transfer = privatePostContractV3PrivateCopytradingWalletTransfer = Entry('contract/v3/private/copytrading/wallet/transfer', 'private', 'POST', {'cost': 25})
|
|
218
|
+
private_post_contract_v3_private_copytrading_order_trading_stop = privatePostContractV3PrivateCopytradingOrderTradingStop = Entry('contract/v3/private/copytrading/order/trading-stop', 'private', 'POST', {'cost': 2.5})
|
|
219
|
+
private_post_contract_v3_private_order_create = privatePostContractV3PrivateOrderCreate = Entry('contract/v3/private/order/create', 'private', 'POST', {'cost': 1})
|
|
220
|
+
private_post_contract_v3_private_order_cancel = privatePostContractV3PrivateOrderCancel = Entry('contract/v3/private/order/cancel', 'private', 'POST', {'cost': 1})
|
|
221
|
+
private_post_contract_v3_private_order_cancel_all = privatePostContractV3PrivateOrderCancelAll = Entry('contract/v3/private/order/cancel-all', 'private', 'POST', {'cost': 1})
|
|
222
|
+
private_post_contract_v3_private_order_replace = privatePostContractV3PrivateOrderReplace = Entry('contract/v3/private/order/replace', 'private', 'POST', {'cost': 1})
|
|
223
|
+
private_post_contract_v3_private_position_set_auto_add_margin = privatePostContractV3PrivatePositionSetAutoAddMargin = Entry('contract/v3/private/position/set-auto-add-margin', 'private', 'POST', {'cost': 1})
|
|
224
|
+
private_post_contract_v3_private_position_switch_isolated = privatePostContractV3PrivatePositionSwitchIsolated = Entry('contract/v3/private/position/switch-isolated', 'private', 'POST', {'cost': 1})
|
|
225
|
+
private_post_contract_v3_private_position_switch_mode = privatePostContractV3PrivatePositionSwitchMode = Entry('contract/v3/private/position/switch-mode', 'private', 'POST', {'cost': 1})
|
|
226
|
+
private_post_contract_v3_private_position_switch_tpsl_mode = privatePostContractV3PrivatePositionSwitchTpslMode = Entry('contract/v3/private/position/switch-tpsl-mode', 'private', 'POST', {'cost': 1})
|
|
227
|
+
private_post_contract_v3_private_position_set_leverage = privatePostContractV3PrivatePositionSetLeverage = Entry('contract/v3/private/position/set-leverage', 'private', 'POST', {'cost': 1})
|
|
228
|
+
private_post_contract_v3_private_position_trading_stop = privatePostContractV3PrivatePositionTradingStop = Entry('contract/v3/private/position/trading-stop', 'private', 'POST', {'cost': 1})
|
|
229
|
+
private_post_contract_v3_private_position_set_risk_limit = privatePostContractV3PrivatePositionSetRiskLimit = Entry('contract/v3/private/position/set-risk-limit', 'private', 'POST', {'cost': 1})
|
|
230
|
+
private_post_contract_v3_private_account_setmarginmode = privatePostContractV3PrivateAccountSetMarginMode = Entry('contract/v3/private/account/setMarginMode', 'private', 'POST', {'cost': 1})
|
|
231
|
+
private_post_unified_v3_private_order_create = privatePostUnifiedV3PrivateOrderCreate = Entry('unified/v3/private/order/create', 'private', 'POST', {'cost': 30})
|
|
232
|
+
private_post_unified_v3_private_order_replace = privatePostUnifiedV3PrivateOrderReplace = Entry('unified/v3/private/order/replace', 'private', 'POST', {'cost': 30})
|
|
233
|
+
private_post_unified_v3_private_order_cancel = privatePostUnifiedV3PrivateOrderCancel = Entry('unified/v3/private/order/cancel', 'private', 'POST', {'cost': 30})
|
|
234
|
+
private_post_unified_v3_private_order_create_batch = privatePostUnifiedV3PrivateOrderCreateBatch = Entry('unified/v3/private/order/create-batch', 'private', 'POST', {'cost': 30})
|
|
235
|
+
private_post_unified_v3_private_order_replace_batch = privatePostUnifiedV3PrivateOrderReplaceBatch = Entry('unified/v3/private/order/replace-batch', 'private', 'POST', {'cost': 30})
|
|
236
|
+
private_post_unified_v3_private_order_cancel_batch = privatePostUnifiedV3PrivateOrderCancelBatch = Entry('unified/v3/private/order/cancel-batch', 'private', 'POST', {'cost': 30})
|
|
237
|
+
private_post_unified_v3_private_order_cancel_all = privatePostUnifiedV3PrivateOrderCancelAll = Entry('unified/v3/private/order/cancel-all', 'private', 'POST', {'cost': 30})
|
|
238
|
+
private_post_unified_v3_private_position_set_leverage = privatePostUnifiedV3PrivatePositionSetLeverage = Entry('unified/v3/private/position/set-leverage', 'private', 'POST', {'cost': 2.5})
|
|
239
|
+
private_post_unified_v3_private_position_tpsl_switch_mode = privatePostUnifiedV3PrivatePositionTpslSwitchMode = Entry('unified/v3/private/position/tpsl/switch-mode', 'private', 'POST', {'cost': 2.5})
|
|
240
|
+
private_post_unified_v3_private_position_set_risk_limit = privatePostUnifiedV3PrivatePositionSetRiskLimit = Entry('unified/v3/private/position/set-risk-limit', 'private', 'POST', {'cost': 2.5})
|
|
241
|
+
private_post_unified_v3_private_position_trading_stop = privatePostUnifiedV3PrivatePositionTradingStop = Entry('unified/v3/private/position/trading-stop', 'private', 'POST', {'cost': 2.5})
|
|
242
|
+
private_post_unified_v3_private_account_upgrade_unified_account = privatePostUnifiedV3PrivateAccountUpgradeUnifiedAccount = Entry('unified/v3/private/account/upgrade-unified-account', 'private', 'POST', {'cost': 2.5})
|
|
243
|
+
private_post_unified_v3_private_account_setmarginmode = privatePostUnifiedV3PrivateAccountSetMarginMode = Entry('unified/v3/private/account/setMarginMode', 'private', 'POST', {'cost': 2.5})
|
|
244
|
+
private_post_fht_compliance_tax_v3_private_registertime = privatePostFhtComplianceTaxV3PrivateRegistertime = Entry('fht/compliance/tax/v3/private/registertime', 'private', 'POST', {'cost': 50})
|
|
245
|
+
private_post_fht_compliance_tax_v3_private_create = privatePostFhtComplianceTaxV3PrivateCreate = Entry('fht/compliance/tax/v3/private/create', 'private', 'POST', {'cost': 50})
|
|
246
|
+
private_post_fht_compliance_tax_v3_private_status = privatePostFhtComplianceTaxV3PrivateStatus = Entry('fht/compliance/tax/v3/private/status', 'private', 'POST', {'cost': 50})
|
|
247
|
+
private_post_fht_compliance_tax_v3_private_url = privatePostFhtComplianceTaxV3PrivateUrl = Entry('fht/compliance/tax/v3/private/url', 'private', 'POST', {'cost': 50})
|
|
248
|
+
private_post_v5_order_create = privatePostV5OrderCreate = Entry('v5/order/create', 'private', 'POST', {'cost': 2.5})
|
|
249
|
+
private_post_v5_order_amend = privatePostV5OrderAmend = Entry('v5/order/amend', 'private', 'POST', {'cost': 5})
|
|
250
|
+
private_post_v5_order_cancel = privatePostV5OrderCancel = Entry('v5/order/cancel', 'private', 'POST', {'cost': 2.5})
|
|
251
|
+
private_post_v5_order_cancel_all = privatePostV5OrderCancelAll = Entry('v5/order/cancel-all', 'private', 'POST', {'cost': 50})
|
|
252
|
+
private_post_v5_order_create_batch = privatePostV5OrderCreateBatch = Entry('v5/order/create-batch', 'private', 'POST', {'cost': 5})
|
|
253
|
+
private_post_v5_order_amend_batch = privatePostV5OrderAmendBatch = Entry('v5/order/amend-batch', 'private', 'POST', {'cost': 5})
|
|
254
|
+
private_post_v5_order_cancel_batch = privatePostV5OrderCancelBatch = Entry('v5/order/cancel-batch', 'private', 'POST', {'cost': 5})
|
|
255
|
+
private_post_v5_order_disconnected_cancel_all = privatePostV5OrderDisconnectedCancelAll = Entry('v5/order/disconnected-cancel-all', 'private', 'POST', {'cost': 5})
|
|
256
|
+
private_post_v5_position_set_leverage = privatePostV5PositionSetLeverage = Entry('v5/position/set-leverage', 'private', 'POST', {'cost': 5})
|
|
257
|
+
private_post_v5_position_switch_isolated = privatePostV5PositionSwitchIsolated = Entry('v5/position/switch-isolated', 'private', 'POST', {'cost': 5})
|
|
258
|
+
private_post_v5_position_set_tpsl_mode = privatePostV5PositionSetTpslMode = Entry('v5/position/set-tpsl-mode', 'private', 'POST', {'cost': 5})
|
|
259
|
+
private_post_v5_position_switch_mode = privatePostV5PositionSwitchMode = Entry('v5/position/switch-mode', 'private', 'POST', {'cost': 5})
|
|
260
|
+
private_post_v5_position_set_risk_limit = privatePostV5PositionSetRiskLimit = Entry('v5/position/set-risk-limit', 'private', 'POST', {'cost': 5})
|
|
261
|
+
private_post_v5_position_trading_stop = privatePostV5PositionTradingStop = Entry('v5/position/trading-stop', 'private', 'POST', {'cost': 5})
|
|
262
|
+
private_post_v5_position_set_auto_add_margin = privatePostV5PositionSetAutoAddMargin = Entry('v5/position/set-auto-add-margin', 'private', 'POST', {'cost': 5})
|
|
263
|
+
private_post_v5_position_add_margin = privatePostV5PositionAddMargin = Entry('v5/position/add-margin', 'private', 'POST', {'cost': 5})
|
|
264
|
+
private_post_v5_position_move_positions = privatePostV5PositionMovePositions = Entry('v5/position/move-positions', 'private', 'POST', {'cost': 5})
|
|
265
|
+
private_post_v5_position_confirm_pending_mmr = privatePostV5PositionConfirmPendingMmr = Entry('v5/position/confirm-pending-mmr', 'private', 'POST', {'cost': 5})
|
|
266
|
+
private_post_v5_account_upgrade_to_uta = privatePostV5AccountUpgradeToUta = Entry('v5/account/upgrade-to-uta', 'private', 'POST', {'cost': 5})
|
|
267
|
+
private_post_v5_account_quick_repayment = privatePostV5AccountQuickRepayment = Entry('v5/account/quick-repayment', 'private', 'POST', {'cost': 5})
|
|
268
|
+
private_post_v5_account_set_margin_mode = privatePostV5AccountSetMarginMode = Entry('v5/account/set-margin-mode', 'private', 'POST', {'cost': 5})
|
|
269
|
+
private_post_v5_account_set_hedging_mode = privatePostV5AccountSetHedgingMode = Entry('v5/account/set-hedging-mode', 'private', 'POST', {'cost': 5})
|
|
270
|
+
private_post_v5_account_mmp_modify = privatePostV5AccountMmpModify = Entry('v5/account/mmp-modify', 'private', 'POST', {'cost': 5})
|
|
271
|
+
private_post_v5_account_mmp_reset = privatePostV5AccountMmpReset = Entry('v5/account/mmp-reset', 'private', 'POST', {'cost': 5})
|
|
272
|
+
private_post_v5_asset_transfer_inter_transfer = privatePostV5AssetTransferInterTransfer = Entry('v5/asset/transfer/inter-transfer', 'private', 'POST', {'cost': 50})
|
|
273
|
+
private_post_v5_asset_transfer_save_transfer_sub_member = privatePostV5AssetTransferSaveTransferSubMember = Entry('v5/asset/transfer/save-transfer-sub-member', 'private', 'POST', {'cost': 150})
|
|
274
|
+
private_post_v5_asset_transfer_universal_transfer = privatePostV5AssetTransferUniversalTransfer = Entry('v5/asset/transfer/universal-transfer', 'private', 'POST', {'cost': 10})
|
|
275
|
+
private_post_v5_asset_deposit_deposit_to_account = privatePostV5AssetDepositDepositToAccount = Entry('v5/asset/deposit/deposit-to-account', 'private', 'POST', {'cost': 5})
|
|
276
|
+
private_post_v5_asset_withdraw_create = privatePostV5AssetWithdrawCreate = Entry('v5/asset/withdraw/create', 'private', 'POST', {'cost': 50})
|
|
277
|
+
private_post_v5_asset_withdraw_cancel = privatePostV5AssetWithdrawCancel = Entry('v5/asset/withdraw/cancel', 'private', 'POST', {'cost': 50})
|
|
278
|
+
private_post_v5_user_create_sub_member = privatePostV5UserCreateSubMember = Entry('v5/user/create-sub-member', 'private', 'POST', {'cost': 10})
|
|
279
|
+
private_post_v5_user_create_sub_api = privatePostV5UserCreateSubApi = Entry('v5/user/create-sub-api', 'private', 'POST', {'cost': 10})
|
|
280
|
+
private_post_v5_user_frozen_sub_member = privatePostV5UserFrozenSubMember = Entry('v5/user/frozen-sub-member', 'private', 'POST', {'cost': 10})
|
|
281
|
+
private_post_v5_user_update_api = privatePostV5UserUpdateApi = Entry('v5/user/update-api', 'private', 'POST', {'cost': 10})
|
|
282
|
+
private_post_v5_user_update_sub_api = privatePostV5UserUpdateSubApi = Entry('v5/user/update-sub-api', 'private', 'POST', {'cost': 10})
|
|
283
|
+
private_post_v5_user_delete_api = privatePostV5UserDeleteApi = Entry('v5/user/delete-api', 'private', 'POST', {'cost': 10})
|
|
284
|
+
private_post_v5_user_delete_sub_api = privatePostV5UserDeleteSubApi = Entry('v5/user/delete-sub-api', 'private', 'POST', {'cost': 10})
|
|
285
|
+
private_post_v5_spot_lever_token_purchase = privatePostV5SpotLeverTokenPurchase = Entry('v5/spot-lever-token/purchase', 'private', 'POST', {'cost': 2.5})
|
|
286
|
+
private_post_v5_spot_lever_token_redeem = privatePostV5SpotLeverTokenRedeem = Entry('v5/spot-lever-token/redeem', 'private', 'POST', {'cost': 2.5})
|
|
287
|
+
private_post_v5_spot_margin_trade_switch_mode = privatePostV5SpotMarginTradeSwitchMode = Entry('v5/spot-margin-trade/switch-mode', 'private', 'POST', {'cost': 5})
|
|
288
|
+
private_post_v5_spot_margin_trade_set_leverage = privatePostV5SpotMarginTradeSetLeverage = Entry('v5/spot-margin-trade/set-leverage', 'private', 'POST', {'cost': 5})
|
|
289
|
+
private_post_v5_spot_cross_margin_trade_loan = privatePostV5SpotCrossMarginTradeLoan = Entry('v5/spot-cross-margin-trade/loan', 'private', 'POST', {'cost': 2.5})
|
|
290
|
+
private_post_v5_spot_cross_margin_trade_repay = privatePostV5SpotCrossMarginTradeRepay = Entry('v5/spot-cross-margin-trade/repay', 'private', 'POST', {'cost': 2.5})
|
|
291
|
+
private_post_v5_spot_cross_margin_trade_switch = privatePostV5SpotCrossMarginTradeSwitch = Entry('v5/spot-cross-margin-trade/switch', 'private', 'POST', {'cost': 2.5})
|
|
292
|
+
private_post_v5_ins_loan_association_uid = privatePostV5InsLoanAssociationUid = Entry('v5/ins-loan/association-uid', 'private', 'POST', {'cost': 5})
|
|
293
|
+
private_post_v5_lending_purchase = privatePostV5LendingPurchase = Entry('v5/lending/purchase', 'private', 'POST', {'cost': 5})
|
|
294
|
+
private_post_v5_lending_redeem = privatePostV5LendingRedeem = Entry('v5/lending/redeem', 'private', 'POST', {'cost': 5})
|
|
295
|
+
private_post_v5_lending_redeem_cancel = privatePostV5LendingRedeemCancel = Entry('v5/lending/redeem-cancel', 'private', 'POST', {'cost': 5})
|
|
296
|
+
private_post_v5_account_set_collateral_switch = privatePostV5AccountSetCollateralSwitch = Entry('v5/account/set-collateral-switch', 'private', 'POST', {'cost': 5})
|
|
297
|
+
private_post_v5_account_set_collateral_switch_batch = privatePostV5AccountSetCollateralSwitchBatch = Entry('v5/account/set-collateral-switch-batch', 'private', 'POST', {'cost': 5})
|
|
298
|
+
private_post_v5_account_demo_apply_money = privatePostV5AccountDemoApplyMoney = Entry('v5/account/demo-apply-money', 'private', 'POST', {'cost': 5})
|
ccxt/abstract/cex.py
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
from ccxt.base.types import Entry
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class ImplicitAPI:
|
|
5
|
+
public_get_currency_profile = publicGetCurrencyProfile = Entry('currency_profile', 'public', 'GET', {})
|
|
6
|
+
public_get_currency_limits = publicGetCurrencyLimits = Entry('currency_limits/', 'public', 'GET', {})
|
|
7
|
+
public_get_last_price_pair = publicGetLastPricePair = Entry('last_price/{pair}/', 'public', 'GET', {})
|
|
8
|
+
public_get_last_prices_currencies = publicGetLastPricesCurrencies = Entry('last_prices/{currencies}/', 'public', 'GET', {})
|
|
9
|
+
public_get_ohlcv_hd_yyyymmdd_pair = publicGetOhlcvHdYyyymmddPair = Entry('ohlcv/hd/{yyyymmdd}/{pair}', 'public', 'GET', {})
|
|
10
|
+
public_get_order_book_pair = publicGetOrderBookPair = Entry('order_book/{pair}/', 'public', 'GET', {})
|
|
11
|
+
public_get_ticker_pair = publicGetTickerPair = Entry('ticker/{pair}/', 'public', 'GET', {})
|
|
12
|
+
public_get_tickers_currencies = publicGetTickersCurrencies = Entry('tickers/{currencies}/', 'public', 'GET', {})
|
|
13
|
+
public_get_trade_history_pair = publicGetTradeHistoryPair = Entry('trade_history/{pair}/', 'public', 'GET', {})
|
|
14
|
+
public_post_convert_pair = publicPostConvertPair = Entry('convert/{pair}', 'public', 'POST', {})
|
|
15
|
+
public_post_price_stats_pair = publicPostPriceStatsPair = Entry('price_stats/{pair}', 'public', 'POST', {})
|
|
16
|
+
private_post_active_orders_status = privatePostActiveOrdersStatus = Entry('active_orders_status/', 'private', 'POST', {})
|
|
17
|
+
private_post_archived_orders_pair = privatePostArchivedOrdersPair = Entry('archived_orders/{pair}/', 'private', 'POST', {})
|
|
18
|
+
private_post_balance = privatePostBalance = Entry('balance/', 'private', 'POST', {})
|
|
19
|
+
private_post_cancel_order = privatePostCancelOrder = Entry('cancel_order/', 'private', 'POST', {})
|
|
20
|
+
private_post_cancel_orders_pair = privatePostCancelOrdersPair = Entry('cancel_orders/{pair}/', 'private', 'POST', {})
|
|
21
|
+
private_post_cancel_replace_order_pair = privatePostCancelReplaceOrderPair = Entry('cancel_replace_order/{pair}/', 'private', 'POST', {})
|
|
22
|
+
private_post_close_position_pair = privatePostClosePositionPair = Entry('close_position/{pair}/', 'private', 'POST', {})
|
|
23
|
+
private_post_get_address = privatePostGetAddress = Entry('get_address/', 'private', 'POST', {})
|
|
24
|
+
private_post_get_crypto_address = privatePostGetCryptoAddress = Entry('get_crypto_address', 'private', 'POST', {})
|
|
25
|
+
private_post_get_myfee = privatePostGetMyfee = Entry('get_myfee/', 'private', 'POST', {})
|
|
26
|
+
private_post_get_order = privatePostGetOrder = Entry('get_order/', 'private', 'POST', {})
|
|
27
|
+
private_post_get_order_tx = privatePostGetOrderTx = Entry('get_order_tx/', 'private', 'POST', {})
|
|
28
|
+
private_post_open_orders_pair = privatePostOpenOrdersPair = Entry('open_orders/{pair}/', 'private', 'POST', {})
|
|
29
|
+
private_post_open_orders = privatePostOpenOrders = Entry('open_orders/', 'private', 'POST', {})
|
|
30
|
+
private_post_open_position_pair = privatePostOpenPositionPair = Entry('open_position/{pair}/', 'private', 'POST', {})
|
|
31
|
+
private_post_open_positions_pair = privatePostOpenPositionsPair = Entry('open_positions/{pair}/', 'private', 'POST', {})
|
|
32
|
+
private_post_place_order_pair = privatePostPlaceOrderPair = Entry('place_order/{pair}/', 'private', 'POST', {})
|
|
33
|
+
private_post_raw_tx_history = privatePostRawTxHistory = Entry('raw_tx_history', 'private', 'POST', {})
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
from ccxt.base.types import Entry
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class ImplicitAPI:
|
|
5
|
+
v2_public_get_currencies = v2PublicGetCurrencies = Entry('currencies', ['v2', 'public'], 'GET', {'cost': 10.6})
|
|
6
|
+
v2_public_get_currencies_crypto = v2PublicGetCurrenciesCrypto = Entry('currencies/crypto', ['v2', 'public'], 'GET', {'cost': 10.6})
|
|
7
|
+
v2_public_get_time = v2PublicGetTime = Entry('time', ['v2', 'public'], 'GET', {'cost': 10.6})
|
|
8
|
+
v2_public_get_exchange_rates = v2PublicGetExchangeRates = Entry('exchange-rates', ['v2', 'public'], 'GET', {'cost': 10.6})
|
|
9
|
+
v2_public_get_users_user_id = v2PublicGetUsersUserId = Entry('users/{user_id}', ['v2', 'public'], 'GET', {'cost': 10.6})
|
|
10
|
+
v2_public_get_prices_symbol_buy = v2PublicGetPricesSymbolBuy = Entry('prices/{symbol}/buy', ['v2', 'public'], 'GET', {'cost': 10.6})
|
|
11
|
+
v2_public_get_prices_symbol_sell = v2PublicGetPricesSymbolSell = Entry('prices/{symbol}/sell', ['v2', 'public'], 'GET', {'cost': 10.6})
|
|
12
|
+
v2_public_get_prices_symbol_spot = v2PublicGetPricesSymbolSpot = Entry('prices/{symbol}/spot', ['v2', 'public'], 'GET', {'cost': 10.6})
|
|
13
|
+
v2_private_get_accounts = v2PrivateGetAccounts = Entry('accounts', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
14
|
+
v2_private_get_accounts_account_id = v2PrivateGetAccountsAccountId = Entry('accounts/{account_id}', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
15
|
+
v2_private_get_accounts_account_id_addresses = v2PrivateGetAccountsAccountIdAddresses = Entry('accounts/{account_id}/addresses', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
16
|
+
v2_private_get_accounts_account_id_addresses_address_id = v2PrivateGetAccountsAccountIdAddressesAddressId = Entry('accounts/{account_id}/addresses/{address_id}', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
17
|
+
v2_private_get_accounts_account_id_addresses_address_id_transactions = v2PrivateGetAccountsAccountIdAddressesAddressIdTransactions = Entry('accounts/{account_id}/addresses/{address_id}/transactions', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
18
|
+
v2_private_get_accounts_account_id_transactions = v2PrivateGetAccountsAccountIdTransactions = Entry('accounts/{account_id}/transactions', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
19
|
+
v2_private_get_accounts_account_id_transactions_transaction_id = v2PrivateGetAccountsAccountIdTransactionsTransactionId = Entry('accounts/{account_id}/transactions/{transaction_id}', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
20
|
+
v2_private_get_accounts_account_id_buys = v2PrivateGetAccountsAccountIdBuys = Entry('accounts/{account_id}/buys', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
21
|
+
v2_private_get_accounts_account_id_buys_buy_id = v2PrivateGetAccountsAccountIdBuysBuyId = Entry('accounts/{account_id}/buys/{buy_id}', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
22
|
+
v2_private_get_accounts_account_id_sells = v2PrivateGetAccountsAccountIdSells = Entry('accounts/{account_id}/sells', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
23
|
+
v2_private_get_accounts_account_id_sells_sell_id = v2PrivateGetAccountsAccountIdSellsSellId = Entry('accounts/{account_id}/sells/{sell_id}', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
24
|
+
v2_private_get_accounts_account_id_deposits = v2PrivateGetAccountsAccountIdDeposits = Entry('accounts/{account_id}/deposits', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
25
|
+
v2_private_get_accounts_account_id_deposits_deposit_id = v2PrivateGetAccountsAccountIdDepositsDepositId = Entry('accounts/{account_id}/deposits/{deposit_id}', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
26
|
+
v2_private_get_accounts_account_id_withdrawals = v2PrivateGetAccountsAccountIdWithdrawals = Entry('accounts/{account_id}/withdrawals', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
27
|
+
v2_private_get_accounts_account_id_withdrawals_withdrawal_id = v2PrivateGetAccountsAccountIdWithdrawalsWithdrawalId = Entry('accounts/{account_id}/withdrawals/{withdrawal_id}', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
28
|
+
v2_private_get_payment_methods = v2PrivateGetPaymentMethods = Entry('payment-methods', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
29
|
+
v2_private_get_payment_methods_payment_method_id = v2PrivateGetPaymentMethodsPaymentMethodId = Entry('payment-methods/{payment_method_id}', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
30
|
+
v2_private_get_user = v2PrivateGetUser = Entry('user', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
31
|
+
v2_private_get_user_auth = v2PrivateGetUserAuth = Entry('user/auth', ['v2', 'private'], 'GET', {'cost': 10.6})
|
|
32
|
+
v2_private_post_accounts = v2PrivatePostAccounts = Entry('accounts', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
33
|
+
v2_private_post_accounts_account_id_primary = v2PrivatePostAccountsAccountIdPrimary = Entry('accounts/{account_id}/primary', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
34
|
+
v2_private_post_accounts_account_id_addresses = v2PrivatePostAccountsAccountIdAddresses = Entry('accounts/{account_id}/addresses', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
35
|
+
v2_private_post_accounts_account_id_transactions = v2PrivatePostAccountsAccountIdTransactions = Entry('accounts/{account_id}/transactions', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
36
|
+
v2_private_post_accounts_account_id_transactions_transaction_id_complete = v2PrivatePostAccountsAccountIdTransactionsTransactionIdComplete = Entry('accounts/{account_id}/transactions/{transaction_id}/complete', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
37
|
+
v2_private_post_accounts_account_id_transactions_transaction_id_resend = v2PrivatePostAccountsAccountIdTransactionsTransactionIdResend = Entry('accounts/{account_id}/transactions/{transaction_id}/resend', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
38
|
+
v2_private_post_accounts_account_id_buys = v2PrivatePostAccountsAccountIdBuys = Entry('accounts/{account_id}/buys', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
39
|
+
v2_private_post_accounts_account_id_buys_buy_id_commit = v2PrivatePostAccountsAccountIdBuysBuyIdCommit = Entry('accounts/{account_id}/buys/{buy_id}/commit', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
40
|
+
v2_private_post_accounts_account_id_sells = v2PrivatePostAccountsAccountIdSells = Entry('accounts/{account_id}/sells', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
41
|
+
v2_private_post_accounts_account_id_sells_sell_id_commit = v2PrivatePostAccountsAccountIdSellsSellIdCommit = Entry('accounts/{account_id}/sells/{sell_id}/commit', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
42
|
+
v2_private_post_accounts_account_id_deposits = v2PrivatePostAccountsAccountIdDeposits = Entry('accounts/{account_id}/deposits', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
43
|
+
v2_private_post_accounts_account_id_deposits_deposit_id_commit = v2PrivatePostAccountsAccountIdDepositsDepositIdCommit = Entry('accounts/{account_id}/deposits/{deposit_id}/commit', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
44
|
+
v2_private_post_accounts_account_id_withdrawals = v2PrivatePostAccountsAccountIdWithdrawals = Entry('accounts/{account_id}/withdrawals', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
45
|
+
v2_private_post_accounts_account_id_withdrawals_withdrawal_id_commit = v2PrivatePostAccountsAccountIdWithdrawalsWithdrawalIdCommit = Entry('accounts/{account_id}/withdrawals/{withdrawal_id}/commit', ['v2', 'private'], 'POST', {'cost': 10.6})
|
|
46
|
+
v2_private_put_accounts_account_id = v2PrivatePutAccountsAccountId = Entry('accounts/{account_id}', ['v2', 'private'], 'PUT', {'cost': 10.6})
|
|
47
|
+
v2_private_put_user = v2PrivatePutUser = Entry('user', ['v2', 'private'], 'PUT', {'cost': 10.6})
|
|
48
|
+
v2_private_delete_accounts_id = v2PrivateDeleteAccountsId = Entry('accounts/{id}', ['v2', 'private'], 'DELETE', {'cost': 10.6})
|
|
49
|
+
v2_private_delete_accounts_account_id_transactions_transaction_id = v2PrivateDeleteAccountsAccountIdTransactionsTransactionId = Entry('accounts/{account_id}/transactions/{transaction_id}', ['v2', 'private'], 'DELETE', {'cost': 10.6})
|
|
50
|
+
v3_public_get_brokerage_time = v3PublicGetBrokerageTime = Entry('brokerage/time', ['v3', 'public'], 'GET', {'cost': 3})
|
|
51
|
+
v3_public_get_brokerage_market_product_book = v3PublicGetBrokerageMarketProductBook = Entry('brokerage/market/product_book', ['v3', 'public'], 'GET', {'cost': 3})
|
|
52
|
+
v3_public_get_brokerage_market_products = v3PublicGetBrokerageMarketProducts = Entry('brokerage/market/products', ['v3', 'public'], 'GET', {'cost': 3})
|
|
53
|
+
v3_public_get_brokerage_market_products_product_id = v3PublicGetBrokerageMarketProductsProductId = Entry('brokerage/market/products/{product_id}', ['v3', 'public'], 'GET', {'cost': 3})
|
|
54
|
+
v3_public_get_brokerage_market_products_product_id_candles = v3PublicGetBrokerageMarketProductsProductIdCandles = Entry('brokerage/market/products/{product_id}/candles', ['v3', 'public'], 'GET', {'cost': 3})
|
|
55
|
+
v3_public_get_brokerage_market_products_product_id_ticker = v3PublicGetBrokerageMarketProductsProductIdTicker = Entry('brokerage/market/products/{product_id}/ticker', ['v3', 'public'], 'GET', {'cost': 3})
|
|
56
|
+
v3_private_get_brokerage_accounts = v3PrivateGetBrokerageAccounts = Entry('brokerage/accounts', ['v3', 'private'], 'GET', {'cost': 1})
|
|
57
|
+
v3_private_get_brokerage_accounts_account_uuid = v3PrivateGetBrokerageAccountsAccountUuid = Entry('brokerage/accounts/{account_uuid}', ['v3', 'private'], 'GET', {'cost': 1})
|
|
58
|
+
v3_private_get_brokerage_orders_historical_batch = v3PrivateGetBrokerageOrdersHistoricalBatch = Entry('brokerage/orders/historical/batch', ['v3', 'private'], 'GET', {'cost': 1})
|
|
59
|
+
v3_private_get_brokerage_orders_historical_fills = v3PrivateGetBrokerageOrdersHistoricalFills = Entry('brokerage/orders/historical/fills', ['v3', 'private'], 'GET', {'cost': 1})
|
|
60
|
+
v3_private_get_brokerage_orders_historical_order_id = v3PrivateGetBrokerageOrdersHistoricalOrderId = Entry('brokerage/orders/historical/{order_id}', ['v3', 'private'], 'GET', {'cost': 1})
|
|
61
|
+
v3_private_get_brokerage_products = v3PrivateGetBrokerageProducts = Entry('brokerage/products', ['v3', 'private'], 'GET', {'cost': 3})
|
|
62
|
+
v3_private_get_brokerage_products_product_id = v3PrivateGetBrokerageProductsProductId = Entry('brokerage/products/{product_id}', ['v3', 'private'], 'GET', {'cost': 3})
|
|
63
|
+
v3_private_get_brokerage_products_product_id_candles = v3PrivateGetBrokerageProductsProductIdCandles = Entry('brokerage/products/{product_id}/candles', ['v3', 'private'], 'GET', {'cost': 3})
|
|
64
|
+
v3_private_get_brokerage_products_product_id_ticker = v3PrivateGetBrokerageProductsProductIdTicker = Entry('brokerage/products/{product_id}/ticker', ['v3', 'private'], 'GET', {'cost': 3})
|
|
65
|
+
v3_private_get_brokerage_best_bid_ask = v3PrivateGetBrokerageBestBidAsk = Entry('brokerage/best_bid_ask', ['v3', 'private'], 'GET', {'cost': 3})
|
|
66
|
+
v3_private_get_brokerage_product_book = v3PrivateGetBrokerageProductBook = Entry('brokerage/product_book', ['v3', 'private'], 'GET', {'cost': 3})
|
|
67
|
+
v3_private_get_brokerage_transaction_summary = v3PrivateGetBrokerageTransactionSummary = Entry('brokerage/transaction_summary', ['v3', 'private'], 'GET', {'cost': 3})
|
|
68
|
+
v3_private_get_brokerage_portfolios = v3PrivateGetBrokeragePortfolios = Entry('brokerage/portfolios', ['v3', 'private'], 'GET', {'cost': 1})
|
|
69
|
+
v3_private_get_brokerage_portfolios_portfolio_uuid = v3PrivateGetBrokeragePortfoliosPortfolioUuid = Entry('brokerage/portfolios/{portfolio_uuid}', ['v3', 'private'], 'GET', {'cost': 1})
|
|
70
|
+
v3_private_get_brokerage_convert_trade_trade_id = v3PrivateGetBrokerageConvertTradeTradeId = Entry('brokerage/convert/trade/{trade_id}', ['v3', 'private'], 'GET', {'cost': 1})
|
|
71
|
+
v3_private_get_brokerage_cfm_balance_summary = v3PrivateGetBrokerageCfmBalanceSummary = Entry('brokerage/cfm/balance_summary', ['v3', 'private'], 'GET', {'cost': 1})
|
|
72
|
+
v3_private_get_brokerage_cfm_positions = v3PrivateGetBrokerageCfmPositions = Entry('brokerage/cfm/positions', ['v3', 'private'], 'GET', {'cost': 1})
|
|
73
|
+
v3_private_get_brokerage_cfm_positions_product_id = v3PrivateGetBrokerageCfmPositionsProductId = Entry('brokerage/cfm/positions/{product_id}', ['v3', 'private'], 'GET', {'cost': 1})
|
|
74
|
+
v3_private_get_brokerage_cfm_sweeps = v3PrivateGetBrokerageCfmSweeps = Entry('brokerage/cfm/sweeps', ['v3', 'private'], 'GET', {'cost': 1})
|
|
75
|
+
v3_private_get_brokerage_intx_portfolio_portfolio_uuid = v3PrivateGetBrokerageIntxPortfolioPortfolioUuid = Entry('brokerage/intx/portfolio/{portfolio_uuid}', ['v3', 'private'], 'GET', {'cost': 1})
|
|
76
|
+
v3_private_get_brokerage_intx_positions_portfolio_uuid = v3PrivateGetBrokerageIntxPositionsPortfolioUuid = Entry('brokerage/intx/positions/{portfolio_uuid}', ['v3', 'private'], 'GET', {'cost': 1})
|
|
77
|
+
v3_private_get_brokerage_intx_positions_portfolio_uuid_symbol = v3PrivateGetBrokerageIntxPositionsPortfolioUuidSymbol = Entry('brokerage/intx/positions/{portfolio_uuid}/{symbol}', ['v3', 'private'], 'GET', {'cost': 1})
|
|
78
|
+
v3_private_get_brokerage_payment_methods = v3PrivateGetBrokeragePaymentMethods = Entry('brokerage/payment_methods', ['v3', 'private'], 'GET', {'cost': 1})
|
|
79
|
+
v3_private_get_brokerage_payment_methods_payment_method_id = v3PrivateGetBrokeragePaymentMethodsPaymentMethodId = Entry('brokerage/payment_methods/{payment_method_id}', ['v3', 'private'], 'GET', {'cost': 1})
|
|
80
|
+
v3_private_post_brokerage_orders = v3PrivatePostBrokerageOrders = Entry('brokerage/orders', ['v3', 'private'], 'POST', {'cost': 1})
|
|
81
|
+
v3_private_post_brokerage_orders_batch_cancel = v3PrivatePostBrokerageOrdersBatchCancel = Entry('brokerage/orders/batch_cancel', ['v3', 'private'], 'POST', {'cost': 1})
|
|
82
|
+
v3_private_post_brokerage_orders_edit = v3PrivatePostBrokerageOrdersEdit = Entry('brokerage/orders/edit', ['v3', 'private'], 'POST', {'cost': 1})
|
|
83
|
+
v3_private_post_brokerage_orders_edit_preview = v3PrivatePostBrokerageOrdersEditPreview = Entry('brokerage/orders/edit_preview', ['v3', 'private'], 'POST', {'cost': 1})
|
|
84
|
+
v3_private_post_brokerage_orders_preview = v3PrivatePostBrokerageOrdersPreview = Entry('brokerage/orders/preview', ['v3', 'private'], 'POST', {'cost': 1})
|
|
85
|
+
v3_private_post_brokerage_portfolios = v3PrivatePostBrokeragePortfolios = Entry('brokerage/portfolios', ['v3', 'private'], 'POST', {'cost': 1})
|
|
86
|
+
v3_private_post_brokerage_portfolios_move_funds = v3PrivatePostBrokeragePortfoliosMoveFunds = Entry('brokerage/portfolios/move_funds', ['v3', 'private'], 'POST', {'cost': 1})
|
|
87
|
+
v3_private_post_brokerage_convert_quote = v3PrivatePostBrokerageConvertQuote = Entry('brokerage/convert/quote', ['v3', 'private'], 'POST', {'cost': 1})
|
|
88
|
+
v3_private_post_brokerage_convert_trade_trade_id = v3PrivatePostBrokerageConvertTradeTradeId = Entry('brokerage/convert/trade/{trade_id}', ['v3', 'private'], 'POST', {'cost': 1})
|
|
89
|
+
v3_private_post_brokerage_cfm_sweeps_schedule = v3PrivatePostBrokerageCfmSweepsSchedule = Entry('brokerage/cfm/sweeps/schedule', ['v3', 'private'], 'POST', {'cost': 1})
|
|
90
|
+
v3_private_post_brokerage_intx_allocate = v3PrivatePostBrokerageIntxAllocate = Entry('brokerage/intx/allocate', ['v3', 'private'], 'POST', {'cost': 1})
|
|
91
|
+
v3_private_post_brokerage_orders_close_position = v3PrivatePostBrokerageOrdersClosePosition = Entry('brokerage/orders/close_position', ['v3', 'private'], 'POST', {'cost': 1})
|
|
92
|
+
v3_private_put_brokerage_portfolios_portfolio_uuid = v3PrivatePutBrokeragePortfoliosPortfolioUuid = Entry('brokerage/portfolios/{portfolio_uuid}', ['v3', 'private'], 'PUT', {'cost': 1})
|
|
93
|
+
v3_private_delete_brokerage_portfolios_portfolio_uuid = v3PrivateDeleteBrokeragePortfoliosPortfolioUuid = Entry('brokerage/portfolios/{portfolio_uuid}', ['v3', 'private'], 'DELETE', {'cost': 1})
|
|
94
|
+
v3_private_delete_brokerage_cfm_sweeps = v3PrivateDeleteBrokerageCfmSweeps = Entry('brokerage/cfm/sweeps', ['v3', 'private'], 'DELETE', {'cost': 1})
|