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/bitget.py
ADDED
|
@@ -0,0 +1,508 @@
|
|
|
1
|
+
from ccxt.base.types import Entry
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class ImplicitAPI:
|
|
5
|
+
public_common_get_v2_public_annoucements = publicCommonGetV2PublicAnnoucements = Entry('v2/public/annoucements', ['public', 'common'], 'GET', {'cost': 1})
|
|
6
|
+
public_common_get_v2_public_time = publicCommonGetV2PublicTime = Entry('v2/public/time', ['public', 'common'], 'GET', {'cost': 1})
|
|
7
|
+
public_spot_get_spot_v1_notice_queryallnotices = publicSpotGetSpotV1NoticeQueryAllNotices = Entry('spot/v1/notice/queryAllNotices', ['public', 'spot'], 'GET', {'cost': 1})
|
|
8
|
+
public_spot_get_spot_v1_public_time = publicSpotGetSpotV1PublicTime = Entry('spot/v1/public/time', ['public', 'spot'], 'GET', {'cost': 1})
|
|
9
|
+
public_spot_get_spot_v1_public_currencies = publicSpotGetSpotV1PublicCurrencies = Entry('spot/v1/public/currencies', ['public', 'spot'], 'GET', {'cost': 6.6667})
|
|
10
|
+
public_spot_get_spot_v1_public_products = publicSpotGetSpotV1PublicProducts = Entry('spot/v1/public/products', ['public', 'spot'], 'GET', {'cost': 1})
|
|
11
|
+
public_spot_get_spot_v1_public_product = publicSpotGetSpotV1PublicProduct = Entry('spot/v1/public/product', ['public', 'spot'], 'GET', {'cost': 1})
|
|
12
|
+
public_spot_get_spot_v1_market_ticker = publicSpotGetSpotV1MarketTicker = Entry('spot/v1/market/ticker', ['public', 'spot'], 'GET', {'cost': 1})
|
|
13
|
+
public_spot_get_spot_v1_market_tickers = publicSpotGetSpotV1MarketTickers = Entry('spot/v1/market/tickers', ['public', 'spot'], 'GET', {'cost': 1})
|
|
14
|
+
public_spot_get_spot_v1_market_fills = publicSpotGetSpotV1MarketFills = Entry('spot/v1/market/fills', ['public', 'spot'], 'GET', {'cost': 2})
|
|
15
|
+
public_spot_get_spot_v1_market_fills_history = publicSpotGetSpotV1MarketFillsHistory = Entry('spot/v1/market/fills-history', ['public', 'spot'], 'GET', {'cost': 2})
|
|
16
|
+
public_spot_get_spot_v1_market_candles = publicSpotGetSpotV1MarketCandles = Entry('spot/v1/market/candles', ['public', 'spot'], 'GET', {'cost': 1})
|
|
17
|
+
public_spot_get_spot_v1_market_depth = publicSpotGetSpotV1MarketDepth = Entry('spot/v1/market/depth', ['public', 'spot'], 'GET', {'cost': 1})
|
|
18
|
+
public_spot_get_spot_v1_market_spot_vip_level = publicSpotGetSpotV1MarketSpotVipLevel = Entry('spot/v1/market/spot-vip-level', ['public', 'spot'], 'GET', {'cost': 2})
|
|
19
|
+
public_spot_get_spot_v1_market_merge_depth = publicSpotGetSpotV1MarketMergeDepth = Entry('spot/v1/market/merge-depth', ['public', 'spot'], 'GET', {'cost': 1})
|
|
20
|
+
public_spot_get_spot_v1_market_history_candles = publicSpotGetSpotV1MarketHistoryCandles = Entry('spot/v1/market/history-candles', ['public', 'spot'], 'GET', {'cost': 1})
|
|
21
|
+
public_spot_get_spot_v1_public_loan_coininfos = publicSpotGetSpotV1PublicLoanCoinInfos = Entry('spot/v1/public/loan/coinInfos', ['public', 'spot'], 'GET', {'cost': 2})
|
|
22
|
+
public_spot_get_spot_v1_public_loan_hour_interest = publicSpotGetSpotV1PublicLoanHourInterest = Entry('spot/v1/public/loan/hour-interest', ['public', 'spot'], 'GET', {'cost': 2})
|
|
23
|
+
public_spot_get_v2_spot_public_coins = publicSpotGetV2SpotPublicCoins = Entry('v2/spot/public/coins', ['public', 'spot'], 'GET', {'cost': 6.6667})
|
|
24
|
+
public_spot_get_v2_spot_public_symbols = publicSpotGetV2SpotPublicSymbols = Entry('v2/spot/public/symbols', ['public', 'spot'], 'GET', {'cost': 1})
|
|
25
|
+
public_spot_get_v2_spot_market_vip_fee_rate = publicSpotGetV2SpotMarketVipFeeRate = Entry('v2/spot/market/vip-fee-rate', ['public', 'spot'], 'GET', {'cost': 2})
|
|
26
|
+
public_spot_get_v2_spot_market_tickers = publicSpotGetV2SpotMarketTickers = Entry('v2/spot/market/tickers', ['public', 'spot'], 'GET', {'cost': 1})
|
|
27
|
+
public_spot_get_v2_spot_market_merge_depth = publicSpotGetV2SpotMarketMergeDepth = Entry('v2/spot/market/merge-depth', ['public', 'spot'], 'GET', {'cost': 1})
|
|
28
|
+
public_spot_get_v2_spot_market_orderbook = publicSpotGetV2SpotMarketOrderbook = Entry('v2/spot/market/orderbook', ['public', 'spot'], 'GET', {'cost': 1})
|
|
29
|
+
public_spot_get_v2_spot_market_candles = publicSpotGetV2SpotMarketCandles = Entry('v2/spot/market/candles', ['public', 'spot'], 'GET', {'cost': 1})
|
|
30
|
+
public_spot_get_v2_spot_market_history_candles = publicSpotGetV2SpotMarketHistoryCandles = Entry('v2/spot/market/history-candles', ['public', 'spot'], 'GET', {'cost': 1})
|
|
31
|
+
public_spot_get_v2_spot_market_fills = publicSpotGetV2SpotMarketFills = Entry('v2/spot/market/fills', ['public', 'spot'], 'GET', {'cost': 2})
|
|
32
|
+
public_spot_get_v2_spot_market_fills_history = publicSpotGetV2SpotMarketFillsHistory = Entry('v2/spot/market/fills-history', ['public', 'spot'], 'GET', {'cost': 2})
|
|
33
|
+
public_mix_get_mix_v1_market_contracts = publicMixGetMixV1MarketContracts = Entry('mix/v1/market/contracts', ['public', 'mix'], 'GET', {'cost': 1})
|
|
34
|
+
public_mix_get_mix_v1_market_depth = publicMixGetMixV1MarketDepth = Entry('mix/v1/market/depth', ['public', 'mix'], 'GET', {'cost': 1})
|
|
35
|
+
public_mix_get_mix_v1_market_ticker = publicMixGetMixV1MarketTicker = Entry('mix/v1/market/ticker', ['public', 'mix'], 'GET', {'cost': 1})
|
|
36
|
+
public_mix_get_mix_v1_market_tickers = publicMixGetMixV1MarketTickers = Entry('mix/v1/market/tickers', ['public', 'mix'], 'GET', {'cost': 1})
|
|
37
|
+
public_mix_get_mix_v1_market_contract_vip_level = publicMixGetMixV1MarketContractVipLevel = Entry('mix/v1/market/contract-vip-level', ['public', 'mix'], 'GET', {'cost': 2})
|
|
38
|
+
public_mix_get_mix_v1_market_fills = publicMixGetMixV1MarketFills = Entry('mix/v1/market/fills', ['public', 'mix'], 'GET', {'cost': 1})
|
|
39
|
+
public_mix_get_mix_v1_market_fills_history = publicMixGetMixV1MarketFillsHistory = Entry('mix/v1/market/fills-history', ['public', 'mix'], 'GET', {'cost': 2})
|
|
40
|
+
public_mix_get_mix_v1_market_candles = publicMixGetMixV1MarketCandles = Entry('mix/v1/market/candles', ['public', 'mix'], 'GET', {'cost': 1})
|
|
41
|
+
public_mix_get_mix_v1_market_index = publicMixGetMixV1MarketIndex = Entry('mix/v1/market/index', ['public', 'mix'], 'GET', {'cost': 1})
|
|
42
|
+
public_mix_get_mix_v1_market_funding_time = publicMixGetMixV1MarketFundingTime = Entry('mix/v1/market/funding-time', ['public', 'mix'], 'GET', {'cost': 1})
|
|
43
|
+
public_mix_get_mix_v1_market_history_fundrate = publicMixGetMixV1MarketHistoryFundRate = Entry('mix/v1/market/history-fundRate', ['public', 'mix'], 'GET', {'cost': 1})
|
|
44
|
+
public_mix_get_mix_v1_market_current_fundrate = publicMixGetMixV1MarketCurrentFundRate = Entry('mix/v1/market/current-fundRate', ['public', 'mix'], 'GET', {'cost': 1})
|
|
45
|
+
public_mix_get_mix_v1_market_open_interest = publicMixGetMixV1MarketOpenInterest = Entry('mix/v1/market/open-interest', ['public', 'mix'], 'GET', {'cost': 1})
|
|
46
|
+
public_mix_get_mix_v1_market_mark_price = publicMixGetMixV1MarketMarkPrice = Entry('mix/v1/market/mark-price', ['public', 'mix'], 'GET', {'cost': 1})
|
|
47
|
+
public_mix_get_mix_v1_market_symbol_leverage = publicMixGetMixV1MarketSymbolLeverage = Entry('mix/v1/market/symbol-leverage', ['public', 'mix'], 'GET', {'cost': 1})
|
|
48
|
+
public_mix_get_mix_v1_market_querypositionlever = publicMixGetMixV1MarketQueryPositionLever = Entry('mix/v1/market/queryPositionLever', ['public', 'mix'], 'GET', {'cost': 1})
|
|
49
|
+
public_mix_get_mix_v1_market_open_limit = publicMixGetMixV1MarketOpenLimit = Entry('mix/v1/market/open-limit', ['public', 'mix'], 'GET', {'cost': 1})
|
|
50
|
+
public_mix_get_mix_v1_market_history_candles = publicMixGetMixV1MarketHistoryCandles = Entry('mix/v1/market/history-candles', ['public', 'mix'], 'GET', {'cost': 1})
|
|
51
|
+
public_mix_get_mix_v1_market_history_index_candles = publicMixGetMixV1MarketHistoryIndexCandles = Entry('mix/v1/market/history-index-candles', ['public', 'mix'], 'GET', {'cost': 1})
|
|
52
|
+
public_mix_get_mix_v1_market_history_mark_candles = publicMixGetMixV1MarketHistoryMarkCandles = Entry('mix/v1/market/history-mark-candles', ['public', 'mix'], 'GET', {'cost': 1})
|
|
53
|
+
public_mix_get_mix_v1_market_merge_depth = publicMixGetMixV1MarketMergeDepth = Entry('mix/v1/market/merge-depth', ['public', 'mix'], 'GET', {'cost': 1})
|
|
54
|
+
public_mix_get_v2_mix_market_vip_fee_rate = publicMixGetV2MixMarketVipFeeRate = Entry('v2/mix/market/vip-fee-rate', ['public', 'mix'], 'GET', {'cost': 2})
|
|
55
|
+
public_mix_get_v2_mix_market_merge_depth = publicMixGetV2MixMarketMergeDepth = Entry('v2/mix/market/merge-depth', ['public', 'mix'], 'GET', {'cost': 1})
|
|
56
|
+
public_mix_get_v2_mix_market_ticker = publicMixGetV2MixMarketTicker = Entry('v2/mix/market/ticker', ['public', 'mix'], 'GET', {'cost': 1})
|
|
57
|
+
public_mix_get_v2_mix_market_tickers = publicMixGetV2MixMarketTickers = Entry('v2/mix/market/tickers', ['public', 'mix'], 'GET', {'cost': 1})
|
|
58
|
+
public_mix_get_v2_mix_market_fills = publicMixGetV2MixMarketFills = Entry('v2/mix/market/fills', ['public', 'mix'], 'GET', {'cost': 1})
|
|
59
|
+
public_mix_get_v2_mix_market_fills_history = publicMixGetV2MixMarketFillsHistory = Entry('v2/mix/market/fills-history', ['public', 'mix'], 'GET', {'cost': 2})
|
|
60
|
+
public_mix_get_v2_mix_market_candles = publicMixGetV2MixMarketCandles = Entry('v2/mix/market/candles', ['public', 'mix'], 'GET', {'cost': 1})
|
|
61
|
+
public_mix_get_v2_mix_market_history_candles = publicMixGetV2MixMarketHistoryCandles = Entry('v2/mix/market/history-candles', ['public', 'mix'], 'GET', {'cost': 1})
|
|
62
|
+
public_mix_get_v2_mix_market_history_index_candles = publicMixGetV2MixMarketHistoryIndexCandles = Entry('v2/mix/market/history-index-candles', ['public', 'mix'], 'GET', {'cost': 1})
|
|
63
|
+
public_mix_get_v2_mix_market_history_mark_candles = publicMixGetV2MixMarketHistoryMarkCandles = Entry('v2/mix/market/history-mark-candles', ['public', 'mix'], 'GET', {'cost': 1})
|
|
64
|
+
public_mix_get_v2_mix_market_open_interest = publicMixGetV2MixMarketOpenInterest = Entry('v2/mix/market/open-interest', ['public', 'mix'], 'GET', {'cost': 1})
|
|
65
|
+
public_mix_get_v2_mix_market_funding_time = publicMixGetV2MixMarketFundingTime = Entry('v2/mix/market/funding-time', ['public', 'mix'], 'GET', {'cost': 1})
|
|
66
|
+
public_mix_get_v2_mix_market_symbol_price = publicMixGetV2MixMarketSymbolPrice = Entry('v2/mix/market/symbol-price', ['public', 'mix'], 'GET', {'cost': 1})
|
|
67
|
+
public_mix_get_v2_mix_market_history_fund_rate = publicMixGetV2MixMarketHistoryFundRate = Entry('v2/mix/market/history-fund-rate', ['public', 'mix'], 'GET', {'cost': 1})
|
|
68
|
+
public_mix_get_v2_mix_market_current_fund_rate = publicMixGetV2MixMarketCurrentFundRate = Entry('v2/mix/market/current-fund-rate', ['public', 'mix'], 'GET', {'cost': 1})
|
|
69
|
+
public_mix_get_v2_mix_market_contracts = publicMixGetV2MixMarketContracts = Entry('v2/mix/market/contracts', ['public', 'mix'], 'GET', {'cost': 1})
|
|
70
|
+
public_mix_get_v2_mix_market_query_position_lever = publicMixGetV2MixMarketQueryPositionLever = Entry('v2/mix/market/query-position-lever', ['public', 'mix'], 'GET', {'cost': 2})
|
|
71
|
+
public_margin_get_margin_v1_cross_public_interestrateandlimit = publicMarginGetMarginV1CrossPublicInterestRateAndLimit = Entry('margin/v1/cross/public/interestRateAndLimit', ['public', 'margin'], 'GET', {'cost': 2})
|
|
72
|
+
public_margin_get_margin_v1_isolated_public_interestrateandlimit = publicMarginGetMarginV1IsolatedPublicInterestRateAndLimit = Entry('margin/v1/isolated/public/interestRateAndLimit', ['public', 'margin'], 'GET', {'cost': 2})
|
|
73
|
+
public_margin_get_margin_v1_cross_public_tierdata = publicMarginGetMarginV1CrossPublicTierData = Entry('margin/v1/cross/public/tierData', ['public', 'margin'], 'GET', {'cost': 2})
|
|
74
|
+
public_margin_get_margin_v1_isolated_public_tierdata = publicMarginGetMarginV1IsolatedPublicTierData = Entry('margin/v1/isolated/public/tierData', ['public', 'margin'], 'GET', {'cost': 2})
|
|
75
|
+
public_margin_get_margin_v1_public_currencies = publicMarginGetMarginV1PublicCurrencies = Entry('margin/v1/public/currencies', ['public', 'margin'], 'GET', {'cost': 1})
|
|
76
|
+
public_margin_get_v2_margin_currencies = publicMarginGetV2MarginCurrencies = Entry('v2/margin/currencies', ['public', 'margin'], 'GET', {'cost': 2})
|
|
77
|
+
public_earn_get_v2_earn_loan_public_coininfos = publicEarnGetV2EarnLoanPublicCoinInfos = Entry('v2/earn/loan/public/coinInfos', ['public', 'earn'], 'GET', {'cost': 2})
|
|
78
|
+
public_earn_get_v2_earn_loan_public_hour_interest = publicEarnGetV2EarnLoanPublicHourInterest = Entry('v2/earn/loan/public/hour-interest', ['public', 'earn'], 'GET', {'cost': 2})
|
|
79
|
+
private_spot_get_spot_v1_wallet_deposit_address = privateSpotGetSpotV1WalletDepositAddress = Entry('spot/v1/wallet/deposit-address', ['private', 'spot'], 'GET', {'cost': 4})
|
|
80
|
+
private_spot_get_spot_v1_wallet_withdrawal_list = privateSpotGetSpotV1WalletWithdrawalList = Entry('spot/v1/wallet/withdrawal-list', ['private', 'spot'], 'GET', {'cost': 1})
|
|
81
|
+
private_spot_get_spot_v1_wallet_deposit_list = privateSpotGetSpotV1WalletDepositList = Entry('spot/v1/wallet/deposit-list', ['private', 'spot'], 'GET', {'cost': 1})
|
|
82
|
+
private_spot_get_spot_v1_account_getinfo = privateSpotGetSpotV1AccountGetInfo = Entry('spot/v1/account/getInfo', ['private', 'spot'], 'GET', {'cost': 20})
|
|
83
|
+
private_spot_get_spot_v1_account_assets = privateSpotGetSpotV1AccountAssets = Entry('spot/v1/account/assets', ['private', 'spot'], 'GET', {'cost': 2})
|
|
84
|
+
private_spot_get_spot_v1_account_assets_lite = privateSpotGetSpotV1AccountAssetsLite = Entry('spot/v1/account/assets-lite', ['private', 'spot'], 'GET', {'cost': 2})
|
|
85
|
+
private_spot_get_spot_v1_account_transferrecords = privateSpotGetSpotV1AccountTransferRecords = Entry('spot/v1/account/transferRecords', ['private', 'spot'], 'GET', {'cost': 1})
|
|
86
|
+
private_spot_get_spot_v1_convert_currencies = privateSpotGetSpotV1ConvertCurrencies = Entry('spot/v1/convert/currencies', ['private', 'spot'], 'GET', {'cost': 2})
|
|
87
|
+
private_spot_get_spot_v1_convert_convert_record = privateSpotGetSpotV1ConvertConvertRecord = Entry('spot/v1/convert/convert-record', ['private', 'spot'], 'GET', {'cost': 2})
|
|
88
|
+
private_spot_get_spot_v1_loan_ongoing_orders = privateSpotGetSpotV1LoanOngoingOrders = Entry('spot/v1/loan/ongoing-orders', ['private', 'spot'], 'GET', {'cost': 2})
|
|
89
|
+
private_spot_get_spot_v1_loan_repay_history = privateSpotGetSpotV1LoanRepayHistory = Entry('spot/v1/loan/repay-history', ['private', 'spot'], 'GET', {'cost': 2})
|
|
90
|
+
private_spot_get_spot_v1_loan_revise_history = privateSpotGetSpotV1LoanReviseHistory = Entry('spot/v1/loan/revise-history', ['private', 'spot'], 'GET', {'cost': 2})
|
|
91
|
+
private_spot_get_spot_v1_loan_borrow_history = privateSpotGetSpotV1LoanBorrowHistory = Entry('spot/v1/loan/borrow-history', ['private', 'spot'], 'GET', {'cost': 2})
|
|
92
|
+
private_spot_get_spot_v1_loan_debts = privateSpotGetSpotV1LoanDebts = Entry('spot/v1/loan/debts', ['private', 'spot'], 'GET', {'cost': 2})
|
|
93
|
+
private_spot_get_v2_spot_trade_orderinfo = privateSpotGetV2SpotTradeOrderInfo = Entry('v2/spot/trade/orderInfo', ['private', 'spot'], 'GET', {'cost': 1})
|
|
94
|
+
private_spot_get_v2_spot_trade_unfilled_orders = privateSpotGetV2SpotTradeUnfilledOrders = Entry('v2/spot/trade/unfilled-orders', ['private', 'spot'], 'GET', {'cost': 1})
|
|
95
|
+
private_spot_get_v2_spot_trade_history_orders = privateSpotGetV2SpotTradeHistoryOrders = Entry('v2/spot/trade/history-orders', ['private', 'spot'], 'GET', {'cost': 1})
|
|
96
|
+
private_spot_get_v2_spot_trade_fills = privateSpotGetV2SpotTradeFills = Entry('v2/spot/trade/fills', ['private', 'spot'], 'GET', {'cost': 2})
|
|
97
|
+
private_spot_get_v2_spot_trade_current_plan_order = privateSpotGetV2SpotTradeCurrentPlanOrder = Entry('v2/spot/trade/current-plan-order', ['private', 'spot'], 'GET', {'cost': 1})
|
|
98
|
+
private_spot_get_v2_spot_trade_history_plan_order = privateSpotGetV2SpotTradeHistoryPlanOrder = Entry('v2/spot/trade/history-plan-order', ['private', 'spot'], 'GET', {'cost': 1})
|
|
99
|
+
private_spot_get_v2_spot_account_info = privateSpotGetV2SpotAccountInfo = Entry('v2/spot/account/info', ['private', 'spot'], 'GET', {'cost': 20})
|
|
100
|
+
private_spot_get_v2_spot_account_assets = privateSpotGetV2SpotAccountAssets = Entry('v2/spot/account/assets', ['private', 'spot'], 'GET', {'cost': 2})
|
|
101
|
+
private_spot_get_v2_spot_account_subaccount_assets = privateSpotGetV2SpotAccountSubaccountAssets = Entry('v2/spot/account/subaccount-assets', ['private', 'spot'], 'GET', {'cost': 2})
|
|
102
|
+
private_spot_get_v2_spot_account_bills = privateSpotGetV2SpotAccountBills = Entry('v2/spot/account/bills', ['private', 'spot'], 'GET', {'cost': 2})
|
|
103
|
+
private_spot_get_v2_spot_account_transferrecords = privateSpotGetV2SpotAccountTransferRecords = Entry('v2/spot/account/transferRecords', ['private', 'spot'], 'GET', {'cost': 1})
|
|
104
|
+
private_spot_get_v2_account_funding_assets = privateSpotGetV2AccountFundingAssets = Entry('v2/account/funding-assets', ['private', 'spot'], 'GET', {'cost': 2})
|
|
105
|
+
private_spot_get_v2_account_bot_assets = privateSpotGetV2AccountBotAssets = Entry('v2/account/bot-assets', ['private', 'spot'], 'GET', {'cost': 2})
|
|
106
|
+
private_spot_get_v2_account_all_account_balance = privateSpotGetV2AccountAllAccountBalance = Entry('v2/account/all-account-balance', ['private', 'spot'], 'GET', {'cost': 20})
|
|
107
|
+
private_spot_get_v2_spot_wallet_deposit_address = privateSpotGetV2SpotWalletDepositAddress = Entry('v2/spot/wallet/deposit-address', ['private', 'spot'], 'GET', {'cost': 2})
|
|
108
|
+
private_spot_get_v2_spot_wallet_deposit_records = privateSpotGetV2SpotWalletDepositRecords = Entry('v2/spot/wallet/deposit-records', ['private', 'spot'], 'GET', {'cost': 2})
|
|
109
|
+
private_spot_get_v2_spot_wallet_withdrawal_records = privateSpotGetV2SpotWalletWithdrawalRecords = Entry('v2/spot/wallet/withdrawal-records', ['private', 'spot'], 'GET', {'cost': 2})
|
|
110
|
+
private_spot_post_spot_v1_wallet_transfer = privateSpotPostSpotV1WalletTransfer = Entry('spot/v1/wallet/transfer', ['private', 'spot'], 'POST', {'cost': 4})
|
|
111
|
+
private_spot_post_spot_v1_wallet_transfer_v2 = privateSpotPostSpotV1WalletTransferV2 = Entry('spot/v1/wallet/transfer-v2', ['private', 'spot'], 'POST', {'cost': 4})
|
|
112
|
+
private_spot_post_spot_v1_wallet_subtransfer = privateSpotPostSpotV1WalletSubTransfer = Entry('spot/v1/wallet/subTransfer', ['private', 'spot'], 'POST', {'cost': 10})
|
|
113
|
+
private_spot_post_spot_v1_wallet_withdrawal = privateSpotPostSpotV1WalletWithdrawal = Entry('spot/v1/wallet/withdrawal', ['private', 'spot'], 'POST', {'cost': 4})
|
|
114
|
+
private_spot_post_spot_v1_wallet_withdrawal_v2 = privateSpotPostSpotV1WalletWithdrawalV2 = Entry('spot/v1/wallet/withdrawal-v2', ['private', 'spot'], 'POST', {'cost': 4})
|
|
115
|
+
private_spot_post_spot_v1_wallet_withdrawal_inner = privateSpotPostSpotV1WalletWithdrawalInner = Entry('spot/v1/wallet/withdrawal-inner', ['private', 'spot'], 'POST', {'cost': 4})
|
|
116
|
+
private_spot_post_spot_v1_wallet_withdrawal_inner_v2 = privateSpotPostSpotV1WalletWithdrawalInnerV2 = Entry('spot/v1/wallet/withdrawal-inner-v2', ['private', 'spot'], 'POST', {'cost': 4})
|
|
117
|
+
private_spot_post_spot_v1_account_sub_account_spot_assets = privateSpotPostSpotV1AccountSubAccountSpotAssets = Entry('spot/v1/account/sub-account-spot-assets', ['private', 'spot'], 'POST', {'cost': 200})
|
|
118
|
+
private_spot_post_spot_v1_account_bills = privateSpotPostSpotV1AccountBills = Entry('spot/v1/account/bills', ['private', 'spot'], 'POST', {'cost': 2})
|
|
119
|
+
private_spot_post_spot_v1_trade_orders = privateSpotPostSpotV1TradeOrders = Entry('spot/v1/trade/orders', ['private', 'spot'], 'POST', {'cost': 2})
|
|
120
|
+
private_spot_post_spot_v1_trade_batch_orders = privateSpotPostSpotV1TradeBatchOrders = Entry('spot/v1/trade/batch-orders', ['private', 'spot'], 'POST', {'cost': 4})
|
|
121
|
+
private_spot_post_spot_v1_trade_cancel_order = privateSpotPostSpotV1TradeCancelOrder = Entry('spot/v1/trade/cancel-order', ['private', 'spot'], 'POST', {'cost': 2})
|
|
122
|
+
private_spot_post_spot_v1_trade_cancel_order_v2 = privateSpotPostSpotV1TradeCancelOrderV2 = Entry('spot/v1/trade/cancel-order-v2', ['private', 'spot'], 'POST', {'cost': 2})
|
|
123
|
+
private_spot_post_spot_v1_trade_cancel_symbol_order = privateSpotPostSpotV1TradeCancelSymbolOrder = Entry('spot/v1/trade/cancel-symbol-order', ['private', 'spot'], 'POST', {'cost': 2})
|
|
124
|
+
private_spot_post_spot_v1_trade_cancel_batch_orders = privateSpotPostSpotV1TradeCancelBatchOrders = Entry('spot/v1/trade/cancel-batch-orders', ['private', 'spot'], 'POST', {'cost': 4})
|
|
125
|
+
private_spot_post_spot_v1_trade_cancel_batch_orders_v2 = privateSpotPostSpotV1TradeCancelBatchOrdersV2 = Entry('spot/v1/trade/cancel-batch-orders-v2', ['private', 'spot'], 'POST', {'cost': 4})
|
|
126
|
+
private_spot_post_spot_v1_trade_orderinfo = privateSpotPostSpotV1TradeOrderInfo = Entry('spot/v1/trade/orderInfo', ['private', 'spot'], 'POST', {'cost': 1})
|
|
127
|
+
private_spot_post_spot_v1_trade_open_orders = privateSpotPostSpotV1TradeOpenOrders = Entry('spot/v1/trade/open-orders', ['private', 'spot'], 'POST', {'cost': 1})
|
|
128
|
+
private_spot_post_spot_v1_trade_history = privateSpotPostSpotV1TradeHistory = Entry('spot/v1/trade/history', ['private', 'spot'], 'POST', {'cost': 1})
|
|
129
|
+
private_spot_post_spot_v1_trade_fills = privateSpotPostSpotV1TradeFills = Entry('spot/v1/trade/fills', ['private', 'spot'], 'POST', {'cost': 1})
|
|
130
|
+
private_spot_post_spot_v1_plan_placeplan = privateSpotPostSpotV1PlanPlacePlan = Entry('spot/v1/plan/placePlan', ['private', 'spot'], 'POST', {'cost': 1})
|
|
131
|
+
private_spot_post_spot_v1_plan_modifyplan = privateSpotPostSpotV1PlanModifyPlan = Entry('spot/v1/plan/modifyPlan', ['private', 'spot'], 'POST', {'cost': 1})
|
|
132
|
+
private_spot_post_spot_v1_plan_cancelplan = privateSpotPostSpotV1PlanCancelPlan = Entry('spot/v1/plan/cancelPlan', ['private', 'spot'], 'POST', {'cost': 1})
|
|
133
|
+
private_spot_post_spot_v1_plan_currentplan = privateSpotPostSpotV1PlanCurrentPlan = Entry('spot/v1/plan/currentPlan', ['private', 'spot'], 'POST', {'cost': 1})
|
|
134
|
+
private_spot_post_spot_v1_plan_historyplan = privateSpotPostSpotV1PlanHistoryPlan = Entry('spot/v1/plan/historyPlan', ['private', 'spot'], 'POST', {'cost': 1})
|
|
135
|
+
private_spot_post_spot_v1_plan_batchcancelplan = privateSpotPostSpotV1PlanBatchCancelPlan = Entry('spot/v1/plan/batchCancelPlan', ['private', 'spot'], 'POST', {'cost': 2})
|
|
136
|
+
private_spot_post_spot_v1_convert_quoted_price = privateSpotPostSpotV1ConvertQuotedPrice = Entry('spot/v1/convert/quoted-price', ['private', 'spot'], 'POST', {'cost': 4})
|
|
137
|
+
private_spot_post_spot_v1_convert_trade = privateSpotPostSpotV1ConvertTrade = Entry('spot/v1/convert/trade', ['private', 'spot'], 'POST', {'cost': 4})
|
|
138
|
+
private_spot_post_spot_v1_loan_borrow = privateSpotPostSpotV1LoanBorrow = Entry('spot/v1/loan/borrow', ['private', 'spot'], 'POST', {'cost': 2})
|
|
139
|
+
private_spot_post_spot_v1_loan_repay = privateSpotPostSpotV1LoanRepay = Entry('spot/v1/loan/repay', ['private', 'spot'], 'POST', {'cost': 2})
|
|
140
|
+
private_spot_post_spot_v1_loan_revise_pledge = privateSpotPostSpotV1LoanRevisePledge = Entry('spot/v1/loan/revise-pledge', ['private', 'spot'], 'POST', {'cost': 2})
|
|
141
|
+
private_spot_post_spot_v1_trace_order_ordercurrentlist = privateSpotPostSpotV1TraceOrderOrderCurrentList = Entry('spot/v1/trace/order/orderCurrentList', ['private', 'spot'], 'POST', {'cost': 2})
|
|
142
|
+
private_spot_post_spot_v1_trace_order_orderhistorylist = privateSpotPostSpotV1TraceOrderOrderHistoryList = Entry('spot/v1/trace/order/orderHistoryList', ['private', 'spot'], 'POST', {'cost': 2})
|
|
143
|
+
private_spot_post_spot_v1_trace_order_closetrackingorder = privateSpotPostSpotV1TraceOrderCloseTrackingOrder = Entry('spot/v1/trace/order/closeTrackingOrder', ['private', 'spot'], 'POST', {'cost': 2})
|
|
144
|
+
private_spot_post_spot_v1_trace_order_updatetpsl = privateSpotPostSpotV1TraceOrderUpdateTpsl = Entry('spot/v1/trace/order/updateTpsl', ['private', 'spot'], 'POST', {'cost': 2})
|
|
145
|
+
private_spot_post_spot_v1_trace_order_followerendorder = privateSpotPostSpotV1TraceOrderFollowerEndOrder = Entry('spot/v1/trace/order/followerEndOrder', ['private', 'spot'], 'POST', {'cost': 2})
|
|
146
|
+
private_spot_post_spot_v1_trace_order_spotinfolist = privateSpotPostSpotV1TraceOrderSpotInfoList = Entry('spot/v1/trace/order/spotInfoList', ['private', 'spot'], 'POST', {'cost': 2})
|
|
147
|
+
private_spot_post_spot_v1_trace_config_gettradersettings = privateSpotPostSpotV1TraceConfigGetTraderSettings = Entry('spot/v1/trace/config/getTraderSettings', ['private', 'spot'], 'POST', {'cost': 2})
|
|
148
|
+
private_spot_post_spot_v1_trace_config_getfollowersettings = privateSpotPostSpotV1TraceConfigGetFollowerSettings = Entry('spot/v1/trace/config/getFollowerSettings', ['private', 'spot'], 'POST', {'cost': 2})
|
|
149
|
+
private_spot_post_spot_v1_trace_user_mytraders = privateSpotPostSpotV1TraceUserMyTraders = Entry('spot/v1/trace/user/myTraders', ['private', 'spot'], 'POST', {'cost': 2})
|
|
150
|
+
private_spot_post_spot_v1_trace_config_setfollowerconfig = privateSpotPostSpotV1TraceConfigSetFollowerConfig = Entry('spot/v1/trace/config/setFollowerConfig', ['private', 'spot'], 'POST', {'cost': 2})
|
|
151
|
+
private_spot_post_spot_v1_trace_user_myfollowers = privateSpotPostSpotV1TraceUserMyFollowers = Entry('spot/v1/trace/user/myFollowers', ['private', 'spot'], 'POST', {'cost': 2})
|
|
152
|
+
private_spot_post_spot_v1_trace_config_setproductcode = privateSpotPostSpotV1TraceConfigSetProductCode = Entry('spot/v1/trace/config/setProductCode', ['private', 'spot'], 'POST', {'cost': 2})
|
|
153
|
+
private_spot_post_spot_v1_trace_user_removetrader = privateSpotPostSpotV1TraceUserRemoveTrader = Entry('spot/v1/trace/user/removeTrader', ['private', 'spot'], 'POST', {'cost': 2})
|
|
154
|
+
private_spot_post_spot_v1_trace_getremovablefollower = privateSpotPostSpotV1TraceGetRemovableFollower = Entry('spot/v1/trace/getRemovableFollower', ['private', 'spot'], 'POST', {'cost': 2})
|
|
155
|
+
private_spot_post_spot_v1_trace_user_removefollower = privateSpotPostSpotV1TraceUserRemoveFollower = Entry('spot/v1/trace/user/removeFollower', ['private', 'spot'], 'POST', {'cost': 2})
|
|
156
|
+
private_spot_post_spot_v1_trace_profit_totalprofitinfo = privateSpotPostSpotV1TraceProfitTotalProfitInfo = Entry('spot/v1/trace/profit/totalProfitInfo', ['private', 'spot'], 'POST', {'cost': 2})
|
|
157
|
+
private_spot_post_spot_v1_trace_profit_totalprofitlist = privateSpotPostSpotV1TraceProfitTotalProfitList = Entry('spot/v1/trace/profit/totalProfitList', ['private', 'spot'], 'POST', {'cost': 2})
|
|
158
|
+
private_spot_post_spot_v1_trace_profit_profithislist = privateSpotPostSpotV1TraceProfitProfitHisList = Entry('spot/v1/trace/profit/profitHisList', ['private', 'spot'], 'POST', {'cost': 2})
|
|
159
|
+
private_spot_post_spot_v1_trace_profit_profithisdetaillist = privateSpotPostSpotV1TraceProfitProfitHisDetailList = Entry('spot/v1/trace/profit/profitHisDetailList', ['private', 'spot'], 'POST', {'cost': 2})
|
|
160
|
+
private_spot_post_spot_v1_trace_profit_waitprofitdetaillist = privateSpotPostSpotV1TraceProfitWaitProfitDetailList = Entry('spot/v1/trace/profit/waitProfitDetailList', ['private', 'spot'], 'POST', {'cost': 2})
|
|
161
|
+
private_spot_post_spot_v1_trace_user_gettraderinfo = privateSpotPostSpotV1TraceUserGetTraderInfo = Entry('spot/v1/trace/user/getTraderInfo', ['private', 'spot'], 'POST', {'cost': 2})
|
|
162
|
+
private_spot_post_v2_spot_trade_place_order = privateSpotPostV2SpotTradePlaceOrder = Entry('v2/spot/trade/place-order', ['private', 'spot'], 'POST', {'cost': 2})
|
|
163
|
+
private_spot_post_v2_spot_trade_cancel_order = privateSpotPostV2SpotTradeCancelOrder = Entry('v2/spot/trade/cancel-order', ['private', 'spot'], 'POST', {'cost': 2})
|
|
164
|
+
private_spot_post_v2_spot_trade_batch_orders = privateSpotPostV2SpotTradeBatchOrders = Entry('v2/spot/trade/batch-orders', ['private', 'spot'], 'POST', {'cost': 20})
|
|
165
|
+
private_spot_post_v2_spot_trade_batch_cancel_order = privateSpotPostV2SpotTradeBatchCancelOrder = Entry('v2/spot/trade/batch-cancel-order', ['private', 'spot'], 'POST', {'cost': 2})
|
|
166
|
+
private_spot_post_v2_spot_trade_cancel_symbol_order = privateSpotPostV2SpotTradeCancelSymbolOrder = Entry('v2/spot/trade/cancel-symbol-order', ['private', 'spot'], 'POST', {'cost': 4})
|
|
167
|
+
private_spot_post_v2_spot_trade_place_plan_order = privateSpotPostV2SpotTradePlacePlanOrder = Entry('v2/spot/trade/place-plan-order', ['private', 'spot'], 'POST', {'cost': 1})
|
|
168
|
+
private_spot_post_v2_spot_trade_modify_plan_order = privateSpotPostV2SpotTradeModifyPlanOrder = Entry('v2/spot/trade/modify-plan-order', ['private', 'spot'], 'POST', {'cost': 1})
|
|
169
|
+
private_spot_post_v2_spot_trade_cancel_plan_order = privateSpotPostV2SpotTradeCancelPlanOrder = Entry('v2/spot/trade/cancel-plan-order', ['private', 'spot'], 'POST', {'cost': 1})
|
|
170
|
+
private_spot_post_v2_spot_trade_batch_cancel_plan_order = privateSpotPostV2SpotTradeBatchCancelPlanOrder = Entry('v2/spot/trade/batch-cancel-plan-order', ['private', 'spot'], 'POST', {'cost': 2})
|
|
171
|
+
private_spot_post_v2_spot_wallet_transfer = privateSpotPostV2SpotWalletTransfer = Entry('v2/spot/wallet/transfer', ['private', 'spot'], 'POST', {'cost': 2})
|
|
172
|
+
private_spot_post_v2_spot_wallet_subaccount_transfer = privateSpotPostV2SpotWalletSubaccountTransfer = Entry('v2/spot/wallet/subaccount-transfer', ['private', 'spot'], 'POST', {'cost': 2})
|
|
173
|
+
private_spot_post_v2_spot_wallet_withdrawal = privateSpotPostV2SpotWalletWithdrawal = Entry('v2/spot/wallet/withdrawal', ['private', 'spot'], 'POST', {'cost': 2})
|
|
174
|
+
private_spot_post_v2_spot_wallet_cancel_withdrawal = privateSpotPostV2SpotWalletCancelWithdrawal = Entry('v2/spot/wallet/cancel-withdrawal', ['private', 'spot'], 'POST', {'cost': 2})
|
|
175
|
+
private_spot_post_v2_spot_wallet_modify_deposit_account = privateSpotPostV2SpotWalletModifyDepositAccount = Entry('v2/spot/wallet/modify-deposit-account', ['private', 'spot'], 'POST', {'cost': 2})
|
|
176
|
+
private_mix_get_mix_v1_account_account = privateMixGetMixV1AccountAccount = Entry('mix/v1/account/account', ['private', 'mix'], 'GET', {'cost': 2})
|
|
177
|
+
private_mix_get_mix_v1_account_accounts = privateMixGetMixV1AccountAccounts = Entry('mix/v1/account/accounts', ['private', 'mix'], 'GET', {'cost': 2})
|
|
178
|
+
private_mix_get_mix_v1_position_singleposition = privateMixGetMixV1PositionSinglePosition = Entry('mix/v1/position/singlePosition', ['private', 'mix'], 'GET', {'cost': 2})
|
|
179
|
+
private_mix_get_mix_v1_position_singleposition_v2 = privateMixGetMixV1PositionSinglePositionV2 = Entry('mix/v1/position/singlePosition-v2', ['private', 'mix'], 'GET', {'cost': 2})
|
|
180
|
+
private_mix_get_mix_v1_position_allposition = privateMixGetMixV1PositionAllPosition = Entry('mix/v1/position/allPosition', ['private', 'mix'], 'GET', {'cost': 4})
|
|
181
|
+
private_mix_get_mix_v1_position_allposition_v2 = privateMixGetMixV1PositionAllPositionV2 = Entry('mix/v1/position/allPosition-v2', ['private', 'mix'], 'GET', {'cost': 4})
|
|
182
|
+
private_mix_get_mix_v1_position_history_position = privateMixGetMixV1PositionHistoryPosition = Entry('mix/v1/position/history-position', ['private', 'mix'], 'GET', {'cost': 1})
|
|
183
|
+
private_mix_get_mix_v1_account_accountbill = privateMixGetMixV1AccountAccountBill = Entry('mix/v1/account/accountBill', ['private', 'mix'], 'GET', {'cost': 2})
|
|
184
|
+
private_mix_get_mix_v1_account_accountbusinessbill = privateMixGetMixV1AccountAccountBusinessBill = Entry('mix/v1/account/accountBusinessBill', ['private', 'mix'], 'GET', {'cost': 4})
|
|
185
|
+
private_mix_get_mix_v1_order_current = privateMixGetMixV1OrderCurrent = Entry('mix/v1/order/current', ['private', 'mix'], 'GET', {'cost': 1})
|
|
186
|
+
private_mix_get_mix_v1_order_margincoincurrent = privateMixGetMixV1OrderMarginCoinCurrent = Entry('mix/v1/order/marginCoinCurrent', ['private', 'mix'], 'GET', {'cost': 1})
|
|
187
|
+
private_mix_get_mix_v1_order_history = privateMixGetMixV1OrderHistory = Entry('mix/v1/order/history', ['private', 'mix'], 'GET', {'cost': 2})
|
|
188
|
+
private_mix_get_mix_v1_order_historyproducttype = privateMixGetMixV1OrderHistoryProductType = Entry('mix/v1/order/historyProductType', ['private', 'mix'], 'GET', {'cost': 4})
|
|
189
|
+
private_mix_get_mix_v1_order_detail = privateMixGetMixV1OrderDetail = Entry('mix/v1/order/detail', ['private', 'mix'], 'GET', {'cost': 2})
|
|
190
|
+
private_mix_get_mix_v1_order_fills = privateMixGetMixV1OrderFills = Entry('mix/v1/order/fills', ['private', 'mix'], 'GET', {'cost': 2})
|
|
191
|
+
private_mix_get_mix_v1_order_allfills = privateMixGetMixV1OrderAllFills = Entry('mix/v1/order/allFills', ['private', 'mix'], 'GET', {'cost': 2})
|
|
192
|
+
private_mix_get_mix_v1_plan_currentplan = privateMixGetMixV1PlanCurrentPlan = Entry('mix/v1/plan/currentPlan', ['private', 'mix'], 'GET', {'cost': 1})
|
|
193
|
+
private_mix_get_mix_v1_plan_historyplan = privateMixGetMixV1PlanHistoryPlan = Entry('mix/v1/plan/historyPlan', ['private', 'mix'], 'GET', {'cost': 2})
|
|
194
|
+
private_mix_get_mix_v1_trace_currenttrack = privateMixGetMixV1TraceCurrentTrack = Entry('mix/v1/trace/currentTrack', ['private', 'mix'], 'GET', {'cost': 2})
|
|
195
|
+
private_mix_get_mix_v1_trace_followerorder = privateMixGetMixV1TraceFollowerOrder = Entry('mix/v1/trace/followerOrder', ['private', 'mix'], 'GET', {'cost': 2})
|
|
196
|
+
private_mix_get_mix_v1_trace_followerhistoryorders = privateMixGetMixV1TraceFollowerHistoryOrders = Entry('mix/v1/trace/followerHistoryOrders', ['private', 'mix'], 'GET', {'cost': 2})
|
|
197
|
+
private_mix_get_mix_v1_trace_historytrack = privateMixGetMixV1TraceHistoryTrack = Entry('mix/v1/trace/historyTrack', ['private', 'mix'], 'GET', {'cost': 2})
|
|
198
|
+
private_mix_get_mix_v1_trace_summary = privateMixGetMixV1TraceSummary = Entry('mix/v1/trace/summary', ['private', 'mix'], 'GET', {'cost': 1})
|
|
199
|
+
private_mix_get_mix_v1_trace_profitsettletokenidgroup = privateMixGetMixV1TraceProfitSettleTokenIdGroup = Entry('mix/v1/trace/profitSettleTokenIdGroup', ['private', 'mix'], 'GET', {'cost': 1})
|
|
200
|
+
private_mix_get_mix_v1_trace_profitdategrouplist = privateMixGetMixV1TraceProfitDateGroupList = Entry('mix/v1/trace/profitDateGroupList', ['private', 'mix'], 'GET', {'cost': 1})
|
|
201
|
+
private_mix_get_mix_v1_trade_profitdatelist = privateMixGetMixV1TradeProfitDateList = Entry('mix/v1/trade/profitDateList', ['private', 'mix'], 'GET', {'cost': 2})
|
|
202
|
+
private_mix_get_mix_v1_trace_waitprofitdatelist = privateMixGetMixV1TraceWaitProfitDateList = Entry('mix/v1/trace/waitProfitDateList', ['private', 'mix'], 'GET', {'cost': 1})
|
|
203
|
+
private_mix_get_mix_v1_trace_tradersymbols = privateMixGetMixV1TraceTraderSymbols = Entry('mix/v1/trace/traderSymbols', ['private', 'mix'], 'GET', {'cost': 1})
|
|
204
|
+
private_mix_get_mix_v1_trace_traderlist = privateMixGetMixV1TraceTraderList = Entry('mix/v1/trace/traderList', ['private', 'mix'], 'GET', {'cost': 2})
|
|
205
|
+
private_mix_get_mix_v1_trace_traderdetail = privateMixGetMixV1TraceTraderDetail = Entry('mix/v1/trace/traderDetail', ['private', 'mix'], 'GET', {'cost': 2})
|
|
206
|
+
private_mix_get_mix_v1_trace_querytraceconfig = privateMixGetMixV1TraceQueryTraceConfig = Entry('mix/v1/trace/queryTraceConfig', ['private', 'mix'], 'GET', {'cost': 2})
|
|
207
|
+
private_mix_get_v2_mix_account_account = privateMixGetV2MixAccountAccount = Entry('v2/mix/account/account', ['private', 'mix'], 'GET', {'cost': 2})
|
|
208
|
+
private_mix_get_v2_mix_account_accounts = privateMixGetV2MixAccountAccounts = Entry('v2/mix/account/accounts', ['private', 'mix'], 'GET', {'cost': 2})
|
|
209
|
+
private_mix_get_v2_mix_account_sub_account_assets = privateMixGetV2MixAccountSubAccountAssets = Entry('v2/mix/account/sub-account-assets', ['private', 'mix'], 'GET', {'cost': 200})
|
|
210
|
+
private_mix_get_v2_mix_account_open_count = privateMixGetV2MixAccountOpenCount = Entry('v2/mix/account/open-count', ['private', 'mix'], 'GET', {'cost': 2})
|
|
211
|
+
private_mix_get_v2_mix_account_bill = privateMixGetV2MixAccountBill = Entry('v2/mix/account/bill', ['private', 'mix'], 'GET', {'cost': 2})
|
|
212
|
+
private_mix_get_v2_mix_market_query_position_lever = privateMixGetV2MixMarketQueryPositionLever = Entry('v2/mix/market/query-position-lever', ['private', 'mix'], 'GET', {'cost': 2})
|
|
213
|
+
private_mix_get_v2_mix_position_single_position = privateMixGetV2MixPositionSinglePosition = Entry('v2/mix/position/single-position', ['private', 'mix'], 'GET', {'cost': 2})
|
|
214
|
+
private_mix_get_v2_mix_position_all_position = privateMixGetV2MixPositionAllPosition = Entry('v2/mix/position/all-position', ['private', 'mix'], 'GET', {'cost': 4})
|
|
215
|
+
private_mix_get_v2_mix_position_history_position = privateMixGetV2MixPositionHistoryPosition = Entry('v2/mix/position/history-position', ['private', 'mix'], 'GET', {'cost': 1})
|
|
216
|
+
private_mix_get_v2_mix_order_detail = privateMixGetV2MixOrderDetail = Entry('v2/mix/order/detail', ['private', 'mix'], 'GET', {'cost': 2})
|
|
217
|
+
private_mix_get_v2_mix_order_fills = privateMixGetV2MixOrderFills = Entry('v2/mix/order/fills', ['private', 'mix'], 'GET', {'cost': 2})
|
|
218
|
+
private_mix_get_v2_mix_order_fill_history = privateMixGetV2MixOrderFillHistory = Entry('v2/mix/order/fill-history', ['private', 'mix'], 'GET', {'cost': 2})
|
|
219
|
+
private_mix_get_v2_mix_order_orders_pending = privateMixGetV2MixOrderOrdersPending = Entry('v2/mix/order/orders-pending', ['private', 'mix'], 'GET', {'cost': 2})
|
|
220
|
+
private_mix_get_v2_mix_order_orders_history = privateMixGetV2MixOrderOrdersHistory = Entry('v2/mix/order/orders-history', ['private', 'mix'], 'GET', {'cost': 2})
|
|
221
|
+
private_mix_get_v2_mix_order_orders_plan_pending = privateMixGetV2MixOrderOrdersPlanPending = Entry('v2/mix/order/orders-plan-pending', ['private', 'mix'], 'GET', {'cost': 2})
|
|
222
|
+
private_mix_get_v2_mix_order_orders_plan_history = privateMixGetV2MixOrderOrdersPlanHistory = Entry('v2/mix/order/orders-plan-history', ['private', 'mix'], 'GET', {'cost': 2})
|
|
223
|
+
private_mix_post_mix_v1_account_sub_account_contract_assets = privateMixPostMixV1AccountSubAccountContractAssets = Entry('mix/v1/account/sub-account-contract-assets', ['private', 'mix'], 'POST', {'cost': 200})
|
|
224
|
+
private_mix_post_mix_v1_account_open_count = privateMixPostMixV1AccountOpenCount = Entry('mix/v1/account/open-count', ['private', 'mix'], 'POST', {'cost': 1})
|
|
225
|
+
private_mix_post_mix_v1_account_setleverage = privateMixPostMixV1AccountSetLeverage = Entry('mix/v1/account/setLeverage', ['private', 'mix'], 'POST', {'cost': 4})
|
|
226
|
+
private_mix_post_mix_v1_account_setmargin = privateMixPostMixV1AccountSetMargin = Entry('mix/v1/account/setMargin', ['private', 'mix'], 'POST', {'cost': 4})
|
|
227
|
+
private_mix_post_mix_v1_account_setmarginmode = privateMixPostMixV1AccountSetMarginMode = Entry('mix/v1/account/setMarginMode', ['private', 'mix'], 'POST', {'cost': 4})
|
|
228
|
+
private_mix_post_mix_v1_account_setpositionmode = privateMixPostMixV1AccountSetPositionMode = Entry('mix/v1/account/setPositionMode', ['private', 'mix'], 'POST', {'cost': 4})
|
|
229
|
+
private_mix_post_mix_v1_order_placeorder = privateMixPostMixV1OrderPlaceOrder = Entry('mix/v1/order/placeOrder', ['private', 'mix'], 'POST', {'cost': 2})
|
|
230
|
+
private_mix_post_mix_v1_order_batch_orders = privateMixPostMixV1OrderBatchOrders = Entry('mix/v1/order/batch-orders', ['private', 'mix'], 'POST', {'cost': 2})
|
|
231
|
+
private_mix_post_mix_v1_order_cancel_order = privateMixPostMixV1OrderCancelOrder = Entry('mix/v1/order/cancel-order', ['private', 'mix'], 'POST', {'cost': 2})
|
|
232
|
+
private_mix_post_mix_v1_order_cancel_batch_orders = privateMixPostMixV1OrderCancelBatchOrders = Entry('mix/v1/order/cancel-batch-orders', ['private', 'mix'], 'POST', {'cost': 2})
|
|
233
|
+
private_mix_post_mix_v1_order_modifyorder = privateMixPostMixV1OrderModifyOrder = Entry('mix/v1/order/modifyOrder', ['private', 'mix'], 'POST', {'cost': 2})
|
|
234
|
+
private_mix_post_mix_v1_order_cancel_symbol_orders = privateMixPostMixV1OrderCancelSymbolOrders = Entry('mix/v1/order/cancel-symbol-orders', ['private', 'mix'], 'POST', {'cost': 2})
|
|
235
|
+
private_mix_post_mix_v1_order_cancel_all_orders = privateMixPostMixV1OrderCancelAllOrders = Entry('mix/v1/order/cancel-all-orders', ['private', 'mix'], 'POST', {'cost': 2})
|
|
236
|
+
private_mix_post_mix_v1_order_close_all_positions = privateMixPostMixV1OrderCloseAllPositions = Entry('mix/v1/order/close-all-positions', ['private', 'mix'], 'POST', {'cost': 20})
|
|
237
|
+
private_mix_post_mix_v1_plan_placeplan = privateMixPostMixV1PlanPlacePlan = Entry('mix/v1/plan/placePlan', ['private', 'mix'], 'POST', {'cost': 2})
|
|
238
|
+
private_mix_post_mix_v1_plan_modifyplan = privateMixPostMixV1PlanModifyPlan = Entry('mix/v1/plan/modifyPlan', ['private', 'mix'], 'POST', {'cost': 2})
|
|
239
|
+
private_mix_post_mix_v1_plan_modifyplanpreset = privateMixPostMixV1PlanModifyPlanPreset = Entry('mix/v1/plan/modifyPlanPreset', ['private', 'mix'], 'POST', {'cost': 2})
|
|
240
|
+
private_mix_post_mix_v1_plan_placetpsl = privateMixPostMixV1PlanPlaceTPSL = Entry('mix/v1/plan/placeTPSL', ['private', 'mix'], 'POST', {'cost': 2})
|
|
241
|
+
private_mix_post_mix_v1_plan_placetrailstop = privateMixPostMixV1PlanPlaceTrailStop = Entry('mix/v1/plan/placeTrailStop', ['private', 'mix'], 'POST', {'cost': 2})
|
|
242
|
+
private_mix_post_mix_v1_plan_placepositionstpsl = privateMixPostMixV1PlanPlacePositionsTPSL = Entry('mix/v1/plan/placePositionsTPSL', ['private', 'mix'], 'POST', {'cost': 2})
|
|
243
|
+
private_mix_post_mix_v1_plan_modifytpslplan = privateMixPostMixV1PlanModifyTPSLPlan = Entry('mix/v1/plan/modifyTPSLPlan', ['private', 'mix'], 'POST', {'cost': 2})
|
|
244
|
+
private_mix_post_mix_v1_plan_cancelplan = privateMixPostMixV1PlanCancelPlan = Entry('mix/v1/plan/cancelPlan', ['private', 'mix'], 'POST', {'cost': 2})
|
|
245
|
+
private_mix_post_mix_v1_plan_cancelsymbolplan = privateMixPostMixV1PlanCancelSymbolPlan = Entry('mix/v1/plan/cancelSymbolPlan', ['private', 'mix'], 'POST', {'cost': 2})
|
|
246
|
+
private_mix_post_mix_v1_plan_cancelallplan = privateMixPostMixV1PlanCancelAllPlan = Entry('mix/v1/plan/cancelAllPlan', ['private', 'mix'], 'POST', {'cost': 2})
|
|
247
|
+
private_mix_post_mix_v1_trace_closetrackorder = privateMixPostMixV1TraceCloseTrackOrder = Entry('mix/v1/trace/closeTrackOrder', ['private', 'mix'], 'POST', {'cost': 2})
|
|
248
|
+
private_mix_post_mix_v1_trace_modifytpsl = privateMixPostMixV1TraceModifyTPSL = Entry('mix/v1/trace/modifyTPSL', ['private', 'mix'], 'POST', {'cost': 2})
|
|
249
|
+
private_mix_post_mix_v1_trace_closetrackorderbysymbol = privateMixPostMixV1TraceCloseTrackOrderBySymbol = Entry('mix/v1/trace/closeTrackOrderBySymbol', ['private', 'mix'], 'POST', {'cost': 2})
|
|
250
|
+
private_mix_post_mix_v1_trace_setupcopysymbols = privateMixPostMixV1TraceSetUpCopySymbols = Entry('mix/v1/trace/setUpCopySymbols', ['private', 'mix'], 'POST', {'cost': 2})
|
|
251
|
+
private_mix_post_mix_v1_trace_followersetbatchtraceconfig = privateMixPostMixV1TraceFollowerSetBatchTraceConfig = Entry('mix/v1/trace/followerSetBatchTraceConfig', ['private', 'mix'], 'POST', {'cost': 2})
|
|
252
|
+
private_mix_post_mix_v1_trace_followerclosebytrackingno = privateMixPostMixV1TraceFollowerCloseByTrackingNo = Entry('mix/v1/trace/followerCloseByTrackingNo', ['private', 'mix'], 'POST', {'cost': 2})
|
|
253
|
+
private_mix_post_mix_v1_trace_followerclosebyall = privateMixPostMixV1TraceFollowerCloseByAll = Entry('mix/v1/trace/followerCloseByAll', ['private', 'mix'], 'POST', {'cost': 2})
|
|
254
|
+
private_mix_post_mix_v1_trace_followersettpsl = privateMixPostMixV1TraceFollowerSetTpsl = Entry('mix/v1/trace/followerSetTpsl', ['private', 'mix'], 'POST', {'cost': 2})
|
|
255
|
+
private_mix_post_mix_v1_trace_cancelcopytrader = privateMixPostMixV1TraceCancelCopyTrader = Entry('mix/v1/trace/cancelCopyTrader', ['private', 'mix'], 'POST', {'cost': 4})
|
|
256
|
+
private_mix_post_mix_v1_trace_traderupdateconfig = privateMixPostMixV1TraceTraderUpdateConfig = Entry('mix/v1/trace/traderUpdateConfig', ['private', 'mix'], 'POST', {'cost': 2})
|
|
257
|
+
private_mix_post_mix_v1_trace_mytraderlist = privateMixPostMixV1TraceMyTraderList = Entry('mix/v1/trace/myTraderList', ['private', 'mix'], 'POST', {'cost': 2})
|
|
258
|
+
private_mix_post_mix_v1_trace_myfollowerlist = privateMixPostMixV1TraceMyFollowerList = Entry('mix/v1/trace/myFollowerList', ['private', 'mix'], 'POST', {'cost': 2})
|
|
259
|
+
private_mix_post_mix_v1_trace_removefollower = privateMixPostMixV1TraceRemoveFollower = Entry('mix/v1/trace/removeFollower', ['private', 'mix'], 'POST', {'cost': 2})
|
|
260
|
+
private_mix_post_mix_v1_trace_public_getfollowerconfig = privateMixPostMixV1TracePublicGetFollowerConfig = Entry('mix/v1/trace/public/getFollowerConfig', ['private', 'mix'], 'POST', {'cost': 2})
|
|
261
|
+
private_mix_post_mix_v1_trace_report_order_historylist = privateMixPostMixV1TraceReportOrderHistoryList = Entry('mix/v1/trace/report/order/historyList', ['private', 'mix'], 'POST', {'cost': 2})
|
|
262
|
+
private_mix_post_mix_v1_trace_report_order_currentlist = privateMixPostMixV1TraceReportOrderCurrentList = Entry('mix/v1/trace/report/order/currentList', ['private', 'mix'], 'POST', {'cost': 2})
|
|
263
|
+
private_mix_post_mix_v1_trace_querytradertpslratioconfig = privateMixPostMixV1TraceQueryTraderTpslRatioConfig = Entry('mix/v1/trace/queryTraderTpslRatioConfig', ['private', 'mix'], 'POST', {'cost': 2})
|
|
264
|
+
private_mix_post_mix_v1_trace_traderupdatetpslratioconfig = privateMixPostMixV1TraceTraderUpdateTpslRatioConfig = Entry('mix/v1/trace/traderUpdateTpslRatioConfig', ['private', 'mix'], 'POST', {'cost': 2})
|
|
265
|
+
private_mix_post_v2_mix_account_set_leverage = privateMixPostV2MixAccountSetLeverage = Entry('v2/mix/account/set-leverage', ['private', 'mix'], 'POST', {'cost': 4})
|
|
266
|
+
private_mix_post_v2_mix_account_set_margin = privateMixPostV2MixAccountSetMargin = Entry('v2/mix/account/set-margin', ['private', 'mix'], 'POST', {'cost': 4})
|
|
267
|
+
private_mix_post_v2_mix_account_set_margin_mode = privateMixPostV2MixAccountSetMarginMode = Entry('v2/mix/account/set-margin-mode', ['private', 'mix'], 'POST', {'cost': 4})
|
|
268
|
+
private_mix_post_v2_mix_account_set_position_mode = privateMixPostV2MixAccountSetPositionMode = Entry('v2/mix/account/set-position-mode', ['private', 'mix'], 'POST', {'cost': 4})
|
|
269
|
+
private_mix_post_v2_mix_order_place_order = privateMixPostV2MixOrderPlaceOrder = Entry('v2/mix/order/place-order', ['private', 'mix'], 'POST', {'cost': 2})
|
|
270
|
+
private_mix_post_v2_mix_order_click_backhand = privateMixPostV2MixOrderClickBackhand = Entry('v2/mix/order/click-backhand', ['private', 'mix'], 'POST', {'cost': 20})
|
|
271
|
+
private_mix_post_v2_mix_order_batch_place_order = privateMixPostV2MixOrderBatchPlaceOrder = Entry('v2/mix/order/batch-place-order', ['private', 'mix'], 'POST', {'cost': 20})
|
|
272
|
+
private_mix_post_v2_mix_order_modify_order = privateMixPostV2MixOrderModifyOrder = Entry('v2/mix/order/modify-order', ['private', 'mix'], 'POST', {'cost': 2})
|
|
273
|
+
private_mix_post_v2_mix_order_cancel_order = privateMixPostV2MixOrderCancelOrder = Entry('v2/mix/order/cancel-order', ['private', 'mix'], 'POST', {'cost': 2})
|
|
274
|
+
private_mix_post_v2_mix_order_batch_cancel_orders = privateMixPostV2MixOrderBatchCancelOrders = Entry('v2/mix/order/batch-cancel-orders', ['private', 'mix'], 'POST', {'cost': 2})
|
|
275
|
+
private_mix_post_v2_mix_order_close_positions = privateMixPostV2MixOrderClosePositions = Entry('v2/mix/order/close-positions', ['private', 'mix'], 'POST', {'cost': 20})
|
|
276
|
+
private_mix_post_v2_mix_order_place_tpsl_order = privateMixPostV2MixOrderPlaceTpslOrder = Entry('v2/mix/order/place-tpsl-order', ['private', 'mix'], 'POST', {'cost': 2})
|
|
277
|
+
private_mix_post_v2_mix_order_place_plan_order = privateMixPostV2MixOrderPlacePlanOrder = Entry('v2/mix/order/place-plan-order', ['private', 'mix'], 'POST', {'cost': 2})
|
|
278
|
+
private_mix_post_v2_mix_order_modify_tpsl_order = privateMixPostV2MixOrderModifyTpslOrder = Entry('v2/mix/order/modify-tpsl-order', ['private', 'mix'], 'POST', {'cost': 2})
|
|
279
|
+
private_mix_post_v2_mix_order_modify_plan_order = privateMixPostV2MixOrderModifyPlanOrder = Entry('v2/mix/order/modify-plan-order', ['private', 'mix'], 'POST', {'cost': 2})
|
|
280
|
+
private_mix_post_v2_mix_order_cancel_plan_order = privateMixPostV2MixOrderCancelPlanOrder = Entry('v2/mix/order/cancel-plan-order', ['private', 'mix'], 'POST', {'cost': 2})
|
|
281
|
+
private_user_get_user_v1_fee_query = privateUserGetUserV1FeeQuery = Entry('user/v1/fee/query', ['private', 'user'], 'GET', {'cost': 2})
|
|
282
|
+
private_user_get_user_v1_sub_virtual_list = privateUserGetUserV1SubVirtualList = Entry('user/v1/sub/virtual-list', ['private', 'user'], 'GET', {'cost': 2})
|
|
283
|
+
private_user_get_user_v1_sub_virtual_api_list = privateUserGetUserV1SubVirtualApiList = Entry('user/v1/sub/virtual-api-list', ['private', 'user'], 'GET', {'cost': 2})
|
|
284
|
+
private_user_get_user_v1_tax_spot_record = privateUserGetUserV1TaxSpotRecord = Entry('user/v1/tax/spot-record', ['private', 'user'], 'GET', {'cost': 1})
|
|
285
|
+
private_user_get_user_v1_tax_future_record = privateUserGetUserV1TaxFutureRecord = Entry('user/v1/tax/future-record', ['private', 'user'], 'GET', {'cost': 1})
|
|
286
|
+
private_user_get_user_v1_tax_margin_record = privateUserGetUserV1TaxMarginRecord = Entry('user/v1/tax/margin-record', ['private', 'user'], 'GET', {'cost': 1})
|
|
287
|
+
private_user_get_user_v1_tax_p2p_record = privateUserGetUserV1TaxP2pRecord = Entry('user/v1/tax/p2p-record', ['private', 'user'], 'GET', {'cost': 1})
|
|
288
|
+
private_user_get_v2_user_virtual_subaccount_list = privateUserGetV2UserVirtualSubaccountList = Entry('v2/user/virtual-subaccount-list', ['private', 'user'], 'GET', {'cost': 2})
|
|
289
|
+
private_user_get_v2_user_virtual_subaccount_apikey_list = privateUserGetV2UserVirtualSubaccountApikeyList = Entry('v2/user/virtual-subaccount-apikey-list', ['private', 'user'], 'GET', {'cost': 2})
|
|
290
|
+
private_user_post_user_v1_sub_virtual_create = privateUserPostUserV1SubVirtualCreate = Entry('user/v1/sub/virtual-create', ['private', 'user'], 'POST', {'cost': 4})
|
|
291
|
+
private_user_post_user_v1_sub_virtual_modify = privateUserPostUserV1SubVirtualModify = Entry('user/v1/sub/virtual-modify', ['private', 'user'], 'POST', {'cost': 4})
|
|
292
|
+
private_user_post_user_v1_sub_virtual_api_batch_create = privateUserPostUserV1SubVirtualApiBatchCreate = Entry('user/v1/sub/virtual-api-batch-create', ['private', 'user'], 'POST', {'cost': 20})
|
|
293
|
+
private_user_post_user_v1_sub_virtual_api_create = privateUserPostUserV1SubVirtualApiCreate = Entry('user/v1/sub/virtual-api-create', ['private', 'user'], 'POST', {'cost': 4})
|
|
294
|
+
private_user_post_user_v1_sub_virtual_api_modify = privateUserPostUserV1SubVirtualApiModify = Entry('user/v1/sub/virtual-api-modify', ['private', 'user'], 'POST', {'cost': 4})
|
|
295
|
+
private_user_post_v2_user_create_virtual_subaccount = privateUserPostV2UserCreateVirtualSubaccount = Entry('v2/user/create-virtual-subaccount', ['private', 'user'], 'POST', {'cost': 4})
|
|
296
|
+
private_user_post_v2_user_modify_virtual_subaccount = privateUserPostV2UserModifyVirtualSubaccount = Entry('v2/user/modify-virtual-subaccount', ['private', 'user'], 'POST', {'cost': 4})
|
|
297
|
+
private_user_post_v2_user_batch_create_subaccount_and_apikey = privateUserPostV2UserBatchCreateSubaccountAndApikey = Entry('v2/user/batch-create-subaccount-and-apikey', ['private', 'user'], 'POST', {'cost': 20})
|
|
298
|
+
private_user_post_v2_user_create_virtual_subaccount_apikey = privateUserPostV2UserCreateVirtualSubaccountApikey = Entry('v2/user/create-virtual-subaccount-apikey', ['private', 'user'], 'POST', {'cost': 4})
|
|
299
|
+
private_user_post_v2_user_modify_virtual_subaccount_apikey = privateUserPostV2UserModifyVirtualSubaccountApikey = Entry('v2/user/modify-virtual-subaccount-apikey', ['private', 'user'], 'POST', {'cost': 4})
|
|
300
|
+
private_p2p_get_p2p_v1_merchant_merchantlist = privateP2pGetP2pV1MerchantMerchantList = Entry('p2p/v1/merchant/merchantList', ['private', 'p2p'], 'GET', {'cost': 2})
|
|
301
|
+
private_p2p_get_p2p_v1_merchant_merchantinfo = privateP2pGetP2pV1MerchantMerchantInfo = Entry('p2p/v1/merchant/merchantInfo', ['private', 'p2p'], 'GET', {'cost': 2})
|
|
302
|
+
private_p2p_get_p2p_v1_merchant_advlist = privateP2pGetP2pV1MerchantAdvList = Entry('p2p/v1/merchant/advList', ['private', 'p2p'], 'GET', {'cost': 2})
|
|
303
|
+
private_p2p_get_p2p_v1_merchant_orderlist = privateP2pGetP2pV1MerchantOrderList = Entry('p2p/v1/merchant/orderList', ['private', 'p2p'], 'GET', {'cost': 2})
|
|
304
|
+
private_p2p_get_v2_p2p_merchantlist = privateP2pGetV2P2pMerchantList = Entry('v2/p2p/merchantList', ['private', 'p2p'], 'GET', {'cost': 2})
|
|
305
|
+
private_p2p_get_v2_p2p_merchantinfo = privateP2pGetV2P2pMerchantInfo = Entry('v2/p2p/merchantInfo', ['private', 'p2p'], 'GET', {'cost': 2})
|
|
306
|
+
private_p2p_get_v2_p2p_orderlist = privateP2pGetV2P2pOrderList = Entry('v2/p2p/orderList', ['private', 'p2p'], 'GET', {'cost': 2})
|
|
307
|
+
private_p2p_get_v2_p2p_advlist = privateP2pGetV2P2pAdvList = Entry('v2/p2p/advList', ['private', 'p2p'], 'GET', {'cost': 2})
|
|
308
|
+
private_broker_get_broker_v1_account_info = privateBrokerGetBrokerV1AccountInfo = Entry('broker/v1/account/info', ['private', 'broker'], 'GET', {'cost': 2})
|
|
309
|
+
private_broker_get_broker_v1_account_sub_list = privateBrokerGetBrokerV1AccountSubList = Entry('broker/v1/account/sub-list', ['private', 'broker'], 'GET', {'cost': 20})
|
|
310
|
+
private_broker_get_broker_v1_account_sub_email = privateBrokerGetBrokerV1AccountSubEmail = Entry('broker/v1/account/sub-email', ['private', 'broker'], 'GET', {'cost': 20})
|
|
311
|
+
private_broker_get_broker_v1_account_sub_spot_assets = privateBrokerGetBrokerV1AccountSubSpotAssets = Entry('broker/v1/account/sub-spot-assets', ['private', 'broker'], 'GET', {'cost': 2})
|
|
312
|
+
private_broker_get_broker_v1_account_sub_future_assets = privateBrokerGetBrokerV1AccountSubFutureAssets = Entry('broker/v1/account/sub-future-assets', ['private', 'broker'], 'GET', {'cost': 2})
|
|
313
|
+
private_broker_get_broker_v1_account_subaccount_transfer = privateBrokerGetBrokerV1AccountSubaccountTransfer = Entry('broker/v1/account/subaccount-transfer', ['private', 'broker'], 'GET', {'cost': 1})
|
|
314
|
+
private_broker_get_broker_v1_account_subaccount_deposit = privateBrokerGetBrokerV1AccountSubaccountDeposit = Entry('broker/v1/account/subaccount-deposit', ['private', 'broker'], 'GET', {'cost': 1})
|
|
315
|
+
private_broker_get_broker_v1_account_subaccount_withdrawal = privateBrokerGetBrokerV1AccountSubaccountWithdrawal = Entry('broker/v1/account/subaccount-withdrawal', ['private', 'broker'], 'GET', {'cost': 1})
|
|
316
|
+
private_broker_get_broker_v1_account_sub_api_list = privateBrokerGetBrokerV1AccountSubApiList = Entry('broker/v1/account/sub-api-list', ['private', 'broker'], 'GET', {'cost': 2})
|
|
317
|
+
private_broker_get_v2_broker_account_info = privateBrokerGetV2BrokerAccountInfo = Entry('v2/broker/account/info', ['private', 'broker'], 'GET', {'cost': 2})
|
|
318
|
+
private_broker_get_v2_broker_account_subaccount_list = privateBrokerGetV2BrokerAccountSubaccountList = Entry('v2/broker/account/subaccount-list', ['private', 'broker'], 'GET', {'cost': 20})
|
|
319
|
+
private_broker_get_v2_broker_account_subaccount_email = privateBrokerGetV2BrokerAccountSubaccountEmail = Entry('v2/broker/account/subaccount-email', ['private', 'broker'], 'GET', {'cost': 2})
|
|
320
|
+
private_broker_get_v2_broker_account_subaccount_spot_assets = privateBrokerGetV2BrokerAccountSubaccountSpotAssets = Entry('v2/broker/account/subaccount-spot-assets', ['private', 'broker'], 'GET', {'cost': 2})
|
|
321
|
+
private_broker_get_v2_broker_account_subaccount_future_assets = privateBrokerGetV2BrokerAccountSubaccountFutureAssets = Entry('v2/broker/account/subaccount-future-assets', ['private', 'broker'], 'GET', {'cost': 2})
|
|
322
|
+
private_broker_get_v2_broker_manage_subaccount_apikey_list = privateBrokerGetV2BrokerManageSubaccountApikeyList = Entry('v2/broker/manage/subaccount-apikey-list', ['private', 'broker'], 'GET', {'cost': 2})
|
|
323
|
+
private_broker_post_broker_v1_account_sub_create = privateBrokerPostBrokerV1AccountSubCreate = Entry('broker/v1/account/sub-create', ['private', 'broker'], 'POST', {'cost': 20})
|
|
324
|
+
private_broker_post_broker_v1_account_sub_modify = privateBrokerPostBrokerV1AccountSubModify = Entry('broker/v1/account/sub-modify', ['private', 'broker'], 'POST', {'cost': 20})
|
|
325
|
+
private_broker_post_broker_v1_account_sub_modify_email = privateBrokerPostBrokerV1AccountSubModifyEmail = Entry('broker/v1/account/sub-modify-email', ['private', 'broker'], 'POST', {'cost': 20})
|
|
326
|
+
private_broker_post_broker_v1_account_sub_address = privateBrokerPostBrokerV1AccountSubAddress = Entry('broker/v1/account/sub-address', ['private', 'broker'], 'POST', {'cost': 2})
|
|
327
|
+
private_broker_post_broker_v1_account_sub_withdrawal = privateBrokerPostBrokerV1AccountSubWithdrawal = Entry('broker/v1/account/sub-withdrawal', ['private', 'broker'], 'POST', {'cost': 2})
|
|
328
|
+
private_broker_post_broker_v1_account_sub_auto_transfer = privateBrokerPostBrokerV1AccountSubAutoTransfer = Entry('broker/v1/account/sub-auto-transfer', ['private', 'broker'], 'POST', {'cost': 4})
|
|
329
|
+
private_broker_post_broker_v1_account_sub_api_create = privateBrokerPostBrokerV1AccountSubApiCreate = Entry('broker/v1/account/sub-api-create', ['private', 'broker'], 'POST', {'cost': 2})
|
|
330
|
+
private_broker_post_broker_v1_account_sub_api_modify = privateBrokerPostBrokerV1AccountSubApiModify = Entry('broker/v1/account/sub-api-modify', ['private', 'broker'], 'POST', {'cost': 2})
|
|
331
|
+
private_broker_post_v2_broker_account_modify_subaccount_email = privateBrokerPostV2BrokerAccountModifySubaccountEmail = Entry('v2/broker/account/modify-subaccount-email', ['private', 'broker'], 'POST', {'cost': 2})
|
|
332
|
+
private_broker_post_v2_broker_account_create_subaccount = privateBrokerPostV2BrokerAccountCreateSubaccount = Entry('v2/broker/account/create-subaccount', ['private', 'broker'], 'POST', {'cost': 20})
|
|
333
|
+
private_broker_post_v2_broker_account_modify_subaccount = privateBrokerPostV2BrokerAccountModifySubaccount = Entry('v2/broker/account/modify-subaccount', ['private', 'broker'], 'POST', {'cost': 20})
|
|
334
|
+
private_broker_post_v2_broker_account_subaccount_address = privateBrokerPostV2BrokerAccountSubaccountAddress = Entry('v2/broker/account/subaccount-address', ['private', 'broker'], 'POST', {'cost': 2})
|
|
335
|
+
private_broker_post_v2_broker_account_subaccount_withdrawal = privateBrokerPostV2BrokerAccountSubaccountWithdrawal = Entry('v2/broker/account/subaccount-withdrawal', ['private', 'broker'], 'POST', {'cost': 2})
|
|
336
|
+
private_broker_post_v2_broker_account_set_subaccount_autotransfer = privateBrokerPostV2BrokerAccountSetSubaccountAutotransfer = Entry('v2/broker/account/set-subaccount-autotransfer', ['private', 'broker'], 'POST', {'cost': 2})
|
|
337
|
+
private_broker_post_v2_broker_manage_create_subaccount_apikey = privateBrokerPostV2BrokerManageCreateSubaccountApikey = Entry('v2/broker/manage/create-subaccount-apikey', ['private', 'broker'], 'POST', {'cost': 2})
|
|
338
|
+
private_broker_post_v2_broker_manage_modify_subaccount_apikey = privateBrokerPostV2BrokerManageModifySubaccountApikey = Entry('v2/broker/manage/modify-subaccount-apikey', ['private', 'broker'], 'POST', {'cost': 2})
|
|
339
|
+
private_margin_get_margin_v1_cross_account_riskrate = privateMarginGetMarginV1CrossAccountRiskRate = Entry('margin/v1/cross/account/riskRate', ['private', 'margin'], 'GET', {'cost': 2})
|
|
340
|
+
private_margin_get_margin_v1_cross_account_maxtransferoutamount = privateMarginGetMarginV1CrossAccountMaxTransferOutAmount = Entry('margin/v1/cross/account/maxTransferOutAmount', ['private', 'margin'], 'GET', {'cost': 2})
|
|
341
|
+
private_margin_get_margin_v1_isolated_account_maxtransferoutamount = privateMarginGetMarginV1IsolatedAccountMaxTransferOutAmount = Entry('margin/v1/isolated/account/maxTransferOutAmount', ['private', 'margin'], 'GET', {'cost': 2})
|
|
342
|
+
private_margin_get_margin_v1_isolated_order_openorders = privateMarginGetMarginV1IsolatedOrderOpenOrders = Entry('margin/v1/isolated/order/openOrders', ['private', 'margin'], 'GET', {'cost': 2})
|
|
343
|
+
private_margin_get_margin_v1_isolated_order_history = privateMarginGetMarginV1IsolatedOrderHistory = Entry('margin/v1/isolated/order/history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
344
|
+
private_margin_get_margin_v1_isolated_order_fills = privateMarginGetMarginV1IsolatedOrderFills = Entry('margin/v1/isolated/order/fills', ['private', 'margin'], 'GET', {'cost': 2})
|
|
345
|
+
private_margin_get_margin_v1_isolated_loan_list = privateMarginGetMarginV1IsolatedLoanList = Entry('margin/v1/isolated/loan/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
346
|
+
private_margin_get_margin_v1_isolated_repay_list = privateMarginGetMarginV1IsolatedRepayList = Entry('margin/v1/isolated/repay/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
347
|
+
private_margin_get_margin_v1_isolated_interest_list = privateMarginGetMarginV1IsolatedInterestList = Entry('margin/v1/isolated/interest/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
348
|
+
private_margin_get_margin_v1_isolated_liquidation_list = privateMarginGetMarginV1IsolatedLiquidationList = Entry('margin/v1/isolated/liquidation/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
349
|
+
private_margin_get_margin_v1_isolated_fin_list = privateMarginGetMarginV1IsolatedFinList = Entry('margin/v1/isolated/fin/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
350
|
+
private_margin_get_margin_v1_cross_order_openorders = privateMarginGetMarginV1CrossOrderOpenOrders = Entry('margin/v1/cross/order/openOrders', ['private', 'margin'], 'GET', {'cost': 2})
|
|
351
|
+
private_margin_get_margin_v1_cross_order_history = privateMarginGetMarginV1CrossOrderHistory = Entry('margin/v1/cross/order/history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
352
|
+
private_margin_get_margin_v1_cross_order_fills = privateMarginGetMarginV1CrossOrderFills = Entry('margin/v1/cross/order/fills', ['private', 'margin'], 'GET', {'cost': 2})
|
|
353
|
+
private_margin_get_margin_v1_cross_loan_list = privateMarginGetMarginV1CrossLoanList = Entry('margin/v1/cross/loan/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
354
|
+
private_margin_get_margin_v1_cross_repay_list = privateMarginGetMarginV1CrossRepayList = Entry('margin/v1/cross/repay/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
355
|
+
private_margin_get_margin_v1_cross_interest_list = privateMarginGetMarginV1CrossInterestList = Entry('margin/v1/cross/interest/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
356
|
+
private_margin_get_margin_v1_cross_liquidation_list = privateMarginGetMarginV1CrossLiquidationList = Entry('margin/v1/cross/liquidation/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
357
|
+
private_margin_get_margin_v1_cross_fin_list = privateMarginGetMarginV1CrossFinList = Entry('margin/v1/cross/fin/list', ['private', 'margin'], 'GET', {'cost': 2})
|
|
358
|
+
private_margin_get_margin_v1_cross_account_assets = privateMarginGetMarginV1CrossAccountAssets = Entry('margin/v1/cross/account/assets', ['private', 'margin'], 'GET', {'cost': 2})
|
|
359
|
+
private_margin_get_margin_v1_isolated_account_assets = privateMarginGetMarginV1IsolatedAccountAssets = Entry('margin/v1/isolated/account/assets', ['private', 'margin'], 'GET', {'cost': 2})
|
|
360
|
+
private_margin_get_v2_margin_crossed_borrow_history = privateMarginGetV2MarginCrossedBorrowHistory = Entry('v2/margin/crossed/borrow-history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
361
|
+
private_margin_get_v2_margin_crossed_repay_history = privateMarginGetV2MarginCrossedRepayHistory = Entry('v2/margin/crossed/repay-history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
362
|
+
private_margin_get_v2_margin_crossed_interest_history = privateMarginGetV2MarginCrossedInterestHistory = Entry('v2/margin/crossed/interest-history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
363
|
+
private_margin_get_v2_margin_crossed_liquidation_history = privateMarginGetV2MarginCrossedLiquidationHistory = Entry('v2/margin/crossed/liquidation-history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
364
|
+
private_margin_get_v2_margin_crossed_financial_records = privateMarginGetV2MarginCrossedFinancialRecords = Entry('v2/margin/crossed/financial-records', ['private', 'margin'], 'GET', {'cost': 2})
|
|
365
|
+
private_margin_get_v2_margin_crossed_account_assets = privateMarginGetV2MarginCrossedAccountAssets = Entry('v2/margin/crossed/account/assets', ['private', 'margin'], 'GET', {'cost': 2})
|
|
366
|
+
private_margin_get_v2_margin_crossed_account_risk_rate = privateMarginGetV2MarginCrossedAccountRiskRate = Entry('v2/margin/crossed/account/risk-rate', ['private', 'margin'], 'GET', {'cost': 2})
|
|
367
|
+
private_margin_get_v2_margin_crossed_account_max_borrowable_amount = privateMarginGetV2MarginCrossedAccountMaxBorrowableAmount = Entry('v2/margin/crossed/account/max-borrowable-amount', ['private', 'margin'], 'GET', {'cost': 2})
|
|
368
|
+
private_margin_get_v2_margin_crossed_account_max_transfer_out_amount = privateMarginGetV2MarginCrossedAccountMaxTransferOutAmount = Entry('v2/margin/crossed/account/max-transfer-out-amount', ['private', 'margin'], 'GET', {'cost': 2})
|
|
369
|
+
private_margin_get_v2_margin_crossed_interest_rate_and_limit = privateMarginGetV2MarginCrossedInterestRateAndLimit = Entry('v2/margin/crossed/interest-rate-and-limit', ['private', 'margin'], 'GET', {'cost': 2})
|
|
370
|
+
private_margin_get_v2_margin_crossed_tier_data = privateMarginGetV2MarginCrossedTierData = Entry('v2/margin/crossed/tier-data', ['private', 'margin'], 'GET', {'cost': 2})
|
|
371
|
+
private_margin_get_v2_margin_crossed_open_orders = privateMarginGetV2MarginCrossedOpenOrders = Entry('v2/margin/crossed/open-orders', ['private', 'margin'], 'GET', {'cost': 2})
|
|
372
|
+
private_margin_get_v2_margin_crossed_history_orders = privateMarginGetV2MarginCrossedHistoryOrders = Entry('v2/margin/crossed/history-orders', ['private', 'margin'], 'GET', {'cost': 2})
|
|
373
|
+
private_margin_get_v2_margin_crossed_fills = privateMarginGetV2MarginCrossedFills = Entry('v2/margin/crossed/fills', ['private', 'margin'], 'GET', {'cost': 2})
|
|
374
|
+
private_margin_get_v2_margin_isolated_borrow_history = privateMarginGetV2MarginIsolatedBorrowHistory = Entry('v2/margin/isolated/borrow-history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
375
|
+
private_margin_get_v2_margin_isolated_repay_history = privateMarginGetV2MarginIsolatedRepayHistory = Entry('v2/margin/isolated/repay-history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
376
|
+
private_margin_get_v2_margin_isolated_interest_history = privateMarginGetV2MarginIsolatedInterestHistory = Entry('v2/margin/isolated/interest-history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
377
|
+
private_margin_get_v2_margin_isolated_liquidation_history = privateMarginGetV2MarginIsolatedLiquidationHistory = Entry('v2/margin/isolated/liquidation-history', ['private', 'margin'], 'GET', {'cost': 2})
|
|
378
|
+
private_margin_get_v2_margin_isolated_financial_records = privateMarginGetV2MarginIsolatedFinancialRecords = Entry('v2/margin/isolated/financial-records', ['private', 'margin'], 'GET', {'cost': 2})
|
|
379
|
+
private_margin_get_v2_margin_isolated_account_assets = privateMarginGetV2MarginIsolatedAccountAssets = Entry('v2/margin/isolated/account/assets', ['private', 'margin'], 'GET', {'cost': 2})
|
|
380
|
+
private_margin_get_v2_margin_isolated_account_risk_rate = privateMarginGetV2MarginIsolatedAccountRiskRate = Entry('v2/margin/isolated/account/risk-rate', ['private', 'margin'], 'GET', {'cost': 2})
|
|
381
|
+
private_margin_get_v2_margin_isolated_account_max_borrowable_amount = privateMarginGetV2MarginIsolatedAccountMaxBorrowableAmount = Entry('v2/margin/isolated/account/max-borrowable-amount', ['private', 'margin'], 'GET', {'cost': 2})
|
|
382
|
+
private_margin_get_v2_margin_isolated_account_max_transfer_out_amount = privateMarginGetV2MarginIsolatedAccountMaxTransferOutAmount = Entry('v2/margin/isolated/account/max-transfer-out-amount', ['private', 'margin'], 'GET', {'cost': 2})
|
|
383
|
+
private_margin_get_v2_margin_isolated_interest_rate_and_limit = privateMarginGetV2MarginIsolatedInterestRateAndLimit = Entry('v2/margin/isolated/interest-rate-and-limit', ['private', 'margin'], 'GET', {'cost': 2})
|
|
384
|
+
private_margin_get_v2_margin_isolated_tier_data = privateMarginGetV2MarginIsolatedTierData = Entry('v2/margin/isolated/tier-data', ['private', 'margin'], 'GET', {'cost': 2})
|
|
385
|
+
private_margin_get_v2_margin_isolated_open_orders = privateMarginGetV2MarginIsolatedOpenOrders = Entry('v2/margin/isolated/open-orders', ['private', 'margin'], 'GET', {'cost': 2})
|
|
386
|
+
private_margin_get_v2_margin_isolated_history_orders = privateMarginGetV2MarginIsolatedHistoryOrders = Entry('v2/margin/isolated/history-orders', ['private', 'margin'], 'GET', {'cost': 2})
|
|
387
|
+
private_margin_get_v2_margin_isolated_fills = privateMarginGetV2MarginIsolatedFills = Entry('v2/margin/isolated/fills', ['private', 'margin'], 'GET', {'cost': 2})
|
|
388
|
+
private_margin_post_margin_v1_cross_account_borrow = privateMarginPostMarginV1CrossAccountBorrow = Entry('margin/v1/cross/account/borrow', ['private', 'margin'], 'POST', {'cost': 2})
|
|
389
|
+
private_margin_post_margin_v1_isolated_account_borrow = privateMarginPostMarginV1IsolatedAccountBorrow = Entry('margin/v1/isolated/account/borrow', ['private', 'margin'], 'POST', {'cost': 2})
|
|
390
|
+
private_margin_post_margin_v1_cross_account_repay = privateMarginPostMarginV1CrossAccountRepay = Entry('margin/v1/cross/account/repay', ['private', 'margin'], 'POST', {'cost': 2})
|
|
391
|
+
private_margin_post_margin_v1_isolated_account_repay = privateMarginPostMarginV1IsolatedAccountRepay = Entry('margin/v1/isolated/account/repay', ['private', 'margin'], 'POST', {'cost': 2})
|
|
392
|
+
private_margin_post_margin_v1_isolated_account_riskrate = privateMarginPostMarginV1IsolatedAccountRiskRate = Entry('margin/v1/isolated/account/riskRate', ['private', 'margin'], 'POST', {'cost': 2})
|
|
393
|
+
private_margin_post_margin_v1_cross_account_maxborrowableamount = privateMarginPostMarginV1CrossAccountMaxBorrowableAmount = Entry('margin/v1/cross/account/maxBorrowableAmount', ['private', 'margin'], 'POST', {'cost': 2})
|
|
394
|
+
private_margin_post_margin_v1_isolated_account_maxborrowableamount = privateMarginPostMarginV1IsolatedAccountMaxBorrowableAmount = Entry('margin/v1/isolated/account/maxBorrowableAmount', ['private', 'margin'], 'POST', {'cost': 2})
|
|
395
|
+
private_margin_post_margin_v1_isolated_account_flashrepay = privateMarginPostMarginV1IsolatedAccountFlashRepay = Entry('margin/v1/isolated/account/flashRepay', ['private', 'margin'], 'POST', {'cost': 2})
|
|
396
|
+
private_margin_post_margin_v1_isolated_account_queryflashrepaystatus = privateMarginPostMarginV1IsolatedAccountQueryFlashRepayStatus = Entry('margin/v1/isolated/account/queryFlashRepayStatus', ['private', 'margin'], 'POST', {'cost': 2})
|
|
397
|
+
private_margin_post_margin_v1_cross_account_flashrepay = privateMarginPostMarginV1CrossAccountFlashRepay = Entry('margin/v1/cross/account/flashRepay', ['private', 'margin'], 'POST', {'cost': 2})
|
|
398
|
+
private_margin_post_margin_v1_cross_account_queryflashrepaystatus = privateMarginPostMarginV1CrossAccountQueryFlashRepayStatus = Entry('margin/v1/cross/account/queryFlashRepayStatus', ['private', 'margin'], 'POST', {'cost': 2})
|
|
399
|
+
private_margin_post_margin_v1_isolated_order_placeorder = privateMarginPostMarginV1IsolatedOrderPlaceOrder = Entry('margin/v1/isolated/order/placeOrder', ['private', 'margin'], 'POST', {'cost': 4})
|
|
400
|
+
private_margin_post_margin_v1_isolated_order_batchplaceorder = privateMarginPostMarginV1IsolatedOrderBatchPlaceOrder = Entry('margin/v1/isolated/order/batchPlaceOrder', ['private', 'margin'], 'POST', {'cost': 4})
|
|
401
|
+
private_margin_post_margin_v1_isolated_order_cancelorder = privateMarginPostMarginV1IsolatedOrderCancelOrder = Entry('margin/v1/isolated/order/cancelOrder', ['private', 'margin'], 'POST', {'cost': 2})
|
|
402
|
+
private_margin_post_margin_v1_isolated_order_batchcancelorder = privateMarginPostMarginV1IsolatedOrderBatchCancelOrder = Entry('margin/v1/isolated/order/batchCancelOrder', ['private', 'margin'], 'POST', {'cost': 2})
|
|
403
|
+
private_margin_post_margin_v1_cross_order_placeorder = privateMarginPostMarginV1CrossOrderPlaceOrder = Entry('margin/v1/cross/order/placeOrder', ['private', 'margin'], 'POST', {'cost': 2})
|
|
404
|
+
private_margin_post_margin_v1_cross_order_batchplaceorder = privateMarginPostMarginV1CrossOrderBatchPlaceOrder = Entry('margin/v1/cross/order/batchPlaceOrder', ['private', 'margin'], 'POST', {'cost': 2})
|
|
405
|
+
private_margin_post_margin_v1_cross_order_cancelorder = privateMarginPostMarginV1CrossOrderCancelOrder = Entry('margin/v1/cross/order/cancelOrder', ['private', 'margin'], 'POST', {'cost': 2})
|
|
406
|
+
private_margin_post_margin_v1_cross_order_batchcancelorder = privateMarginPostMarginV1CrossOrderBatchCancelOrder = Entry('margin/v1/cross/order/batchCancelOrder', ['private', 'margin'], 'POST', {'cost': 2})
|
|
407
|
+
private_margin_post_v2_margin_crossed_account_borrow = privateMarginPostV2MarginCrossedAccountBorrow = Entry('v2/margin/crossed/account/borrow', ['private', 'margin'], 'POST', {'cost': 2})
|
|
408
|
+
private_margin_post_v2_margin_crossed_account_repay = privateMarginPostV2MarginCrossedAccountRepay = Entry('v2/margin/crossed/account/repay', ['private', 'margin'], 'POST', {'cost': 2})
|
|
409
|
+
private_margin_post_v2_margin_crossed_account_flash_repay = privateMarginPostV2MarginCrossedAccountFlashRepay = Entry('v2/margin/crossed/account/flash-repay', ['private', 'margin'], 'POST', {'cost': 2})
|
|
410
|
+
private_margin_post_v2_margin_crossed_account_query_flash_repay_status = privateMarginPostV2MarginCrossedAccountQueryFlashRepayStatus = Entry('v2/margin/crossed/account/query-flash-repay-status', ['private', 'margin'], 'POST', {'cost': 2})
|
|
411
|
+
private_margin_post_v2_margin_crossed_place_order = privateMarginPostV2MarginCrossedPlaceOrder = Entry('v2/margin/crossed/place-order', ['private', 'margin'], 'POST', {'cost': 2})
|
|
412
|
+
private_margin_post_v2_margin_crossed_batch_place_order = privateMarginPostV2MarginCrossedBatchPlaceOrder = Entry('v2/margin/crossed/batch-place-order', ['private', 'margin'], 'POST', {'cost': 2})
|
|
413
|
+
private_margin_post_v2_margin_crossed_cancel_order = privateMarginPostV2MarginCrossedCancelOrder = Entry('v2/margin/crossed/cancel-order', ['private', 'margin'], 'POST', {'cost': 2})
|
|
414
|
+
private_margin_post_v2_margin_crossed_batch_cancel_order = privateMarginPostV2MarginCrossedBatchCancelOrder = Entry('v2/margin/crossed/batch-cancel-order', ['private', 'margin'], 'POST', {'cost': 2})
|
|
415
|
+
private_margin_post_v2_margin_isolated_account_borrow = privateMarginPostV2MarginIsolatedAccountBorrow = Entry('v2/margin/isolated/account/borrow', ['private', 'margin'], 'POST', {'cost': 2})
|
|
416
|
+
private_margin_post_v2_margin_isolated_account_repay = privateMarginPostV2MarginIsolatedAccountRepay = Entry('v2/margin/isolated/account/repay', ['private', 'margin'], 'POST', {'cost': 2})
|
|
417
|
+
private_margin_post_v2_margin_isolated_account_flash_repay = privateMarginPostV2MarginIsolatedAccountFlashRepay = Entry('v2/margin/isolated/account/flash-repay', ['private', 'margin'], 'POST', {'cost': 2})
|
|
418
|
+
private_margin_post_v2_margin_isolated_account_query_flash_repay_status = privateMarginPostV2MarginIsolatedAccountQueryFlashRepayStatus = Entry('v2/margin/isolated/account/query-flash-repay-status', ['private', 'margin'], 'POST', {'cost': 2})
|
|
419
|
+
private_margin_post_v2_margin_isolated_place_order = privateMarginPostV2MarginIsolatedPlaceOrder = Entry('v2/margin/isolated/place-order', ['private', 'margin'], 'POST', {'cost': 2})
|
|
420
|
+
private_margin_post_v2_margin_isolated_batch_place_order = privateMarginPostV2MarginIsolatedBatchPlaceOrder = Entry('v2/margin/isolated/batch-place-order', ['private', 'margin'], 'POST', {'cost': 2})
|
|
421
|
+
private_margin_post_v2_margin_isolated_cancel_order = privateMarginPostV2MarginIsolatedCancelOrder = Entry('v2/margin/isolated/cancel-order', ['private', 'margin'], 'POST', {'cost': 2})
|
|
422
|
+
private_margin_post_v2_margin_isolated_batch_cancel_order = privateMarginPostV2MarginIsolatedBatchCancelOrder = Entry('v2/margin/isolated/batch-cancel-order', ['private', 'margin'], 'POST', {'cost': 2})
|
|
423
|
+
private_copy_get_v2_copy_mix_trader_order_current_track = privateCopyGetV2CopyMixTraderOrderCurrentTrack = Entry('v2/copy/mix-trader/order-current-track', ['private', 'copy'], 'GET', {'cost': 2})
|
|
424
|
+
private_copy_get_v2_copy_mix_trader_order_history_track = privateCopyGetV2CopyMixTraderOrderHistoryTrack = Entry('v2/copy/mix-trader/order-history-track', ['private', 'copy'], 'GET', {'cost': 2})
|
|
425
|
+
private_copy_get_v2_copy_mix_trader_order_total_detail = privateCopyGetV2CopyMixTraderOrderTotalDetail = Entry('v2/copy/mix-trader/order-total-detail', ['private', 'copy'], 'GET', {'cost': 2})
|
|
426
|
+
private_copy_get_v2_copy_mix_trader_profit_history_summarys = privateCopyGetV2CopyMixTraderProfitHistorySummarys = Entry('v2/copy/mix-trader/profit-history-summarys', ['private', 'copy'], 'GET', {'cost': 1})
|
|
427
|
+
private_copy_get_v2_copy_mix_trader_profit_history_details = privateCopyGetV2CopyMixTraderProfitHistoryDetails = Entry('v2/copy/mix-trader/profit-history-details', ['private', 'copy'], 'GET', {'cost': 1})
|
|
428
|
+
private_copy_get_v2_copy_mix_trader_profit_details = privateCopyGetV2CopyMixTraderProfitDetails = Entry('v2/copy/mix-trader/profit-details', ['private', 'copy'], 'GET', {'cost': 1})
|
|
429
|
+
private_copy_get_v2_copy_mix_trader_profits_group_coin_date = privateCopyGetV2CopyMixTraderProfitsGroupCoinDate = Entry('v2/copy/mix-trader/profits-group-coin-date', ['private', 'copy'], 'GET', {'cost': 1})
|
|
430
|
+
private_copy_get_v2_copy_mix_trader_config_query_symbols = privateCopyGetV2CopyMixTraderConfigQuerySymbols = Entry('v2/copy/mix-trader/config-query-symbols', ['private', 'copy'], 'GET', {'cost': 1})
|
|
431
|
+
private_copy_get_v2_copy_mix_trader_config_query_followers = privateCopyGetV2CopyMixTraderConfigQueryFollowers = Entry('v2/copy/mix-trader/config-query-followers', ['private', 'copy'], 'GET', {'cost': 2})
|
|
432
|
+
private_copy_get_v2_copy_mix_follower_query_current_orders = privateCopyGetV2CopyMixFollowerQueryCurrentOrders = Entry('v2/copy/mix-follower/query-current-orders', ['private', 'copy'], 'GET', {'cost': 2})
|
|
433
|
+
private_copy_get_v2_copy_mix_follower_query_history_orders = privateCopyGetV2CopyMixFollowerQueryHistoryOrders = Entry('v2/copy/mix-follower/query-history-orders', ['private', 'copy'], 'GET', {'cost': 1})
|
|
434
|
+
private_copy_get_v2_copy_mix_follower_query_settings = privateCopyGetV2CopyMixFollowerQuerySettings = Entry('v2/copy/mix-follower/query-settings', ['private', 'copy'], 'GET', {'cost': 2})
|
|
435
|
+
private_copy_get_v2_copy_mix_follower_query_traders = privateCopyGetV2CopyMixFollowerQueryTraders = Entry('v2/copy/mix-follower/query-traders', ['private', 'copy'], 'GET', {'cost': 2})
|
|
436
|
+
private_copy_get_v2_copy_mix_follower_query_quantity_limit = privateCopyGetV2CopyMixFollowerQueryQuantityLimit = Entry('v2/copy/mix-follower/query-quantity-limit', ['private', 'copy'], 'GET', {'cost': 2})
|
|
437
|
+
private_copy_get_v2_copy_mix_broker_query_traders = privateCopyGetV2CopyMixBrokerQueryTraders = Entry('v2/copy/mix-broker/query-traders', ['private', 'copy'], 'GET', {'cost': 2})
|
|
438
|
+
private_copy_get_v2_copy_mix_broker_query_history_traces = privateCopyGetV2CopyMixBrokerQueryHistoryTraces = Entry('v2/copy/mix-broker/query-history-traces', ['private', 'copy'], 'GET', {'cost': 2})
|
|
439
|
+
private_copy_get_v2_copy_mix_broker_query_current_traces = privateCopyGetV2CopyMixBrokerQueryCurrentTraces = Entry('v2/copy/mix-broker/query-current-traces', ['private', 'copy'], 'GET', {'cost': 2})
|
|
440
|
+
private_copy_get_v2_copy_spot_trader_profit_summarys = privateCopyGetV2CopySpotTraderProfitSummarys = Entry('v2/copy/spot-trader/profit-summarys', ['private', 'copy'], 'GET', {'cost': 2})
|
|
441
|
+
private_copy_get_v2_copy_spot_trader_profit_history_details = privateCopyGetV2CopySpotTraderProfitHistoryDetails = Entry('v2/copy/spot-trader/profit-history-details', ['private', 'copy'], 'GET', {'cost': 2})
|
|
442
|
+
private_copy_get_v2_copy_spot_trader_profit_details = privateCopyGetV2CopySpotTraderProfitDetails = Entry('v2/copy/spot-trader/profit-details', ['private', 'copy'], 'GET', {'cost': 2})
|
|
443
|
+
private_copy_get_v2_copy_spot_trader_order_total_detail = privateCopyGetV2CopySpotTraderOrderTotalDetail = Entry('v2/copy/spot-trader/order-total-detail', ['private', 'copy'], 'GET', {'cost': 2})
|
|
444
|
+
private_copy_get_v2_copy_spot_trader_order_history_track = privateCopyGetV2CopySpotTraderOrderHistoryTrack = Entry('v2/copy/spot-trader/order-history-track', ['private', 'copy'], 'GET', {'cost': 2})
|
|
445
|
+
private_copy_get_v2_copy_spot_trader_order_current_track = privateCopyGetV2CopySpotTraderOrderCurrentTrack = Entry('v2/copy/spot-trader/order-current-track', ['private', 'copy'], 'GET', {'cost': 2})
|
|
446
|
+
private_copy_get_v2_copy_spot_trader_config_query_settings = privateCopyGetV2CopySpotTraderConfigQuerySettings = Entry('v2/copy/spot-trader/config-query-settings', ['private', 'copy'], 'GET', {'cost': 2})
|
|
447
|
+
private_copy_get_v2_copy_spot_trader_config_query_followers = privateCopyGetV2CopySpotTraderConfigQueryFollowers = Entry('v2/copy/spot-trader/config-query-followers', ['private', 'copy'], 'GET', {'cost': 2})
|
|
448
|
+
private_copy_get_v2_copy_spot_follower_query_traders = privateCopyGetV2CopySpotFollowerQueryTraders = Entry('v2/copy/spot-follower/query-traders', ['private', 'copy'], 'GET', {'cost': 2})
|
|
449
|
+
private_copy_get_v2_copy_spot_follower_query_trader_symbols = privateCopyGetV2CopySpotFollowerQueryTraderSymbols = Entry('v2/copy/spot-follower/query-trader-symbols', ['private', 'copy'], 'GET', {'cost': 2})
|
|
450
|
+
private_copy_get_v2_copy_spot_follower_query_settings = privateCopyGetV2CopySpotFollowerQuerySettings = Entry('v2/copy/spot-follower/query-settings', ['private', 'copy'], 'GET', {'cost': 2})
|
|
451
|
+
private_copy_get_v2_copy_spot_follower_query_history_orders = privateCopyGetV2CopySpotFollowerQueryHistoryOrders = Entry('v2/copy/spot-follower/query-history-orders', ['private', 'copy'], 'GET', {'cost': 2})
|
|
452
|
+
private_copy_get_v2_copy_spot_follower_query_current_orders = privateCopyGetV2CopySpotFollowerQueryCurrentOrders = Entry('v2/copy/spot-follower/query-current-orders', ['private', 'copy'], 'GET', {'cost': 2})
|
|
453
|
+
private_copy_post_v2_copy_mix_trader_order_modify_tpsl = privateCopyPostV2CopyMixTraderOrderModifyTpsl = Entry('v2/copy/mix-trader/order-modify-tpsl', ['private', 'copy'], 'POST', {'cost': 2})
|
|
454
|
+
private_copy_post_v2_copy_mix_trader_order_close_positions = privateCopyPostV2CopyMixTraderOrderClosePositions = Entry('v2/copy/mix-trader/order-close-positions', ['private', 'copy'], 'POST', {'cost': 2})
|
|
455
|
+
private_copy_post_v2_copy_mix_trader_config_setting_symbols = privateCopyPostV2CopyMixTraderConfigSettingSymbols = Entry('v2/copy/mix-trader/config-setting-symbols', ['private', 'copy'], 'POST', {'cost': 2})
|
|
456
|
+
private_copy_post_v2_copy_mix_trader_config_setting_base = privateCopyPostV2CopyMixTraderConfigSettingBase = Entry('v2/copy/mix-trader/config-setting-base', ['private', 'copy'], 'POST', {'cost': 2})
|
|
457
|
+
private_copy_post_v2_copy_mix_trader_config_remove_follower = privateCopyPostV2CopyMixTraderConfigRemoveFollower = Entry('v2/copy/mix-trader/config-remove-follower', ['private', 'copy'], 'POST', {'cost': 2})
|
|
458
|
+
private_copy_post_v2_copy_mix_follower_setting_tpsl = privateCopyPostV2CopyMixFollowerSettingTpsl = Entry('v2/copy/mix-follower/setting-tpsl', ['private', 'copy'], 'POST', {'cost': 1})
|
|
459
|
+
private_copy_post_v2_copy_mix_follower_settings = privateCopyPostV2CopyMixFollowerSettings = Entry('v2/copy/mix-follower/settings', ['private', 'copy'], 'POST', {'cost': 2})
|
|
460
|
+
private_copy_post_v2_copy_mix_follower_close_positions = privateCopyPostV2CopyMixFollowerClosePositions = Entry('v2/copy/mix-follower/close-positions', ['private', 'copy'], 'POST', {'cost': 2})
|
|
461
|
+
private_copy_post_v2_copy_mix_follower_cancel_trader = privateCopyPostV2CopyMixFollowerCancelTrader = Entry('v2/copy/mix-follower/cancel-trader', ['private', 'copy'], 'POST', {'cost': 4})
|
|
462
|
+
private_copy_post_v2_copy_spot_trader_order_modify_tpsl = privateCopyPostV2CopySpotTraderOrderModifyTpsl = Entry('v2/copy/spot-trader/order-modify-tpsl', ['private', 'copy'], 'POST', {'cost': 2})
|
|
463
|
+
private_copy_post_v2_copy_spot_trader_order_close_tracking = privateCopyPostV2CopySpotTraderOrderCloseTracking = Entry('v2/copy/spot-trader/order-close-tracking', ['private', 'copy'], 'POST', {'cost': 2})
|
|
464
|
+
private_copy_post_v2_copy_spot_trader_config_setting_symbols = privateCopyPostV2CopySpotTraderConfigSettingSymbols = Entry('v2/copy/spot-trader/config-setting-symbols', ['private', 'copy'], 'POST', {'cost': 2})
|
|
465
|
+
private_copy_post_v2_copy_spot_trader_config_remove_follower = privateCopyPostV2CopySpotTraderConfigRemoveFollower = Entry('v2/copy/spot-trader/config-remove-follower', ['private', 'copy'], 'POST', {'cost': 2})
|
|
466
|
+
private_copy_post_v2_copy_spot_follower_stop_order = privateCopyPostV2CopySpotFollowerStopOrder = Entry('v2/copy/spot-follower/stop-order', ['private', 'copy'], 'POST', {'cost': 2})
|
|
467
|
+
private_copy_post_v2_copy_spot_follower_settings = privateCopyPostV2CopySpotFollowerSettings = Entry('v2/copy/spot-follower/settings', ['private', 'copy'], 'POST', {'cost': 2})
|
|
468
|
+
private_copy_post_v2_copy_spot_follower_setting_tpsl = privateCopyPostV2CopySpotFollowerSettingTpsl = Entry('v2/copy/spot-follower/setting-tpsl', ['private', 'copy'], 'POST', {'cost': 2})
|
|
469
|
+
private_copy_post_v2_copy_spot_follower_order_close_tracking = privateCopyPostV2CopySpotFollowerOrderCloseTracking = Entry('v2/copy/spot-follower/order-close-tracking', ['private', 'copy'], 'POST', {'cost': 2})
|
|
470
|
+
private_copy_post_v2_copy_spot_follower_cancel_trader = privateCopyPostV2CopySpotFollowerCancelTrader = Entry('v2/copy/spot-follower/cancel-trader', ['private', 'copy'], 'POST', {'cost': 2})
|
|
471
|
+
private_tax_get_v2_tax_spot_record = privateTaxGetV2TaxSpotRecord = Entry('v2/tax/spot-record', ['private', 'tax'], 'GET', {'cost': 20})
|
|
472
|
+
private_tax_get_v2_tax_future_record = privateTaxGetV2TaxFutureRecord = Entry('v2/tax/future-record', ['private', 'tax'], 'GET', {'cost': 20})
|
|
473
|
+
private_tax_get_v2_tax_margin_record = privateTaxGetV2TaxMarginRecord = Entry('v2/tax/margin-record', ['private', 'tax'], 'GET', {'cost': 20})
|
|
474
|
+
private_tax_get_v2_tax_p2p_record = privateTaxGetV2TaxP2pRecord = Entry('v2/tax/p2p-record', ['private', 'tax'], 'GET', {'cost': 20})
|
|
475
|
+
private_convert_get_v2_convert_currencies = privateConvertGetV2ConvertCurrencies = Entry('v2/convert/currencies', ['private', 'convert'], 'GET', {'cost': 2})
|
|
476
|
+
private_convert_get_v2_convert_quoted_price = privateConvertGetV2ConvertQuotedPrice = Entry('v2/convert/quoted-price', ['private', 'convert'], 'GET', {'cost': 2})
|
|
477
|
+
private_convert_get_v2_convert_convert_record = privateConvertGetV2ConvertConvertRecord = Entry('v2/convert/convert-record', ['private', 'convert'], 'GET', {'cost': 2})
|
|
478
|
+
private_convert_get_v2_convert_bgb_convert_coin_list = privateConvertGetV2ConvertBgbConvertCoinList = Entry('v2/convert/bgb-convert-coin-list', ['private', 'convert'], 'GET', {'cost': 2})
|
|
479
|
+
private_convert_get_v2_convert_bgb_convert_records = privateConvertGetV2ConvertBgbConvertRecords = Entry('v2/convert/bgb-convert-records', ['private', 'convert'], 'GET', {'cost': 2})
|
|
480
|
+
private_convert_post_v2_convert_trade = privateConvertPostV2ConvertTrade = Entry('v2/convert/trade', ['private', 'convert'], 'POST', {'cost': 2})
|
|
481
|
+
private_convert_post_v2_convert_bgb_convert = privateConvertPostV2ConvertBgbConvert = Entry('v2/convert/bgb-convert', ['private', 'convert'], 'POST', {'cost': 2})
|
|
482
|
+
private_earn_get_v2_earn_savings_product = privateEarnGetV2EarnSavingsProduct = Entry('v2/earn/savings/product', ['private', 'earn'], 'GET', {'cost': 2})
|
|
483
|
+
private_earn_get_v2_earn_savings_account = privateEarnGetV2EarnSavingsAccount = Entry('v2/earn/savings/account', ['private', 'earn'], 'GET', {'cost': 2})
|
|
484
|
+
private_earn_get_v2_earn_savings_assets = privateEarnGetV2EarnSavingsAssets = Entry('v2/earn/savings/assets', ['private', 'earn'], 'GET', {'cost': 2})
|
|
485
|
+
private_earn_get_v2_earn_savings_records = privateEarnGetV2EarnSavingsRecords = Entry('v2/earn/savings/records', ['private', 'earn'], 'GET', {'cost': 2})
|
|
486
|
+
private_earn_get_v2_earn_savings_subscribe_info = privateEarnGetV2EarnSavingsSubscribeInfo = Entry('v2/earn/savings/subscribe-info', ['private', 'earn'], 'GET', {'cost': 2})
|
|
487
|
+
private_earn_get_v2_earn_savings_subscribe_result = privateEarnGetV2EarnSavingsSubscribeResult = Entry('v2/earn/savings/subscribe-result', ['private', 'earn'], 'GET', {'cost': 2})
|
|
488
|
+
private_earn_get_v2_earn_savings_redeem_result = privateEarnGetV2EarnSavingsRedeemResult = Entry('v2/earn/savings/redeem-result', ['private', 'earn'], 'GET', {'cost': 2})
|
|
489
|
+
private_earn_get_v2_earn_sharkfin_product = privateEarnGetV2EarnSharkfinProduct = Entry('v2/earn/sharkfin/product', ['private', 'earn'], 'GET', {'cost': 2})
|
|
490
|
+
private_earn_get_v2_earn_sharkfin_account = privateEarnGetV2EarnSharkfinAccount = Entry('v2/earn/sharkfin/account', ['private', 'earn'], 'GET', {'cost': 2})
|
|
491
|
+
private_earn_get_v2_earn_sharkfin_assets = privateEarnGetV2EarnSharkfinAssets = Entry('v2/earn/sharkfin/assets', ['private', 'earn'], 'GET', {'cost': 2})
|
|
492
|
+
private_earn_get_v2_earn_sharkfin_records = privateEarnGetV2EarnSharkfinRecords = Entry('v2/earn/sharkfin/records', ['private', 'earn'], 'GET', {'cost': 2})
|
|
493
|
+
private_earn_get_v2_earn_sharkfin_subscribe_info = privateEarnGetV2EarnSharkfinSubscribeInfo = Entry('v2/earn/sharkfin/subscribe-info', ['private', 'earn'], 'GET', {'cost': 2})
|
|
494
|
+
private_earn_get_v2_earn_sharkfin_subscribe_result = privateEarnGetV2EarnSharkfinSubscribeResult = Entry('v2/earn/sharkfin/subscribe-result', ['private', 'earn'], 'GET', {'cost': 4})
|
|
495
|
+
private_earn_get_v2_earn_loan_ongoing_orders = privateEarnGetV2EarnLoanOngoingOrders = Entry('v2/earn/loan/ongoing-orders', ['private', 'earn'], 'GET', {'cost': 2})
|
|
496
|
+
private_earn_get_v2_earn_loan_repay_history = privateEarnGetV2EarnLoanRepayHistory = Entry('v2/earn/loan/repay-history', ['private', 'earn'], 'GET', {'cost': 2})
|
|
497
|
+
private_earn_get_v2_earn_loan_revise_history = privateEarnGetV2EarnLoanReviseHistory = Entry('v2/earn/loan/revise-history', ['private', 'earn'], 'GET', {'cost': 2})
|
|
498
|
+
private_earn_get_v2_earn_loan_borrow_history = privateEarnGetV2EarnLoanBorrowHistory = Entry('v2/earn/loan/borrow-history', ['private', 'earn'], 'GET', {'cost': 2})
|
|
499
|
+
private_earn_get_v2_earn_loan_debts = privateEarnGetV2EarnLoanDebts = Entry('v2/earn/loan/debts', ['private', 'earn'], 'GET', {'cost': 2})
|
|
500
|
+
private_earn_get_v2_earn_loan_reduces = privateEarnGetV2EarnLoanReduces = Entry('v2/earn/loan/reduces', ['private', 'earn'], 'GET', {'cost': 2})
|
|
501
|
+
private_earn_get_v2_earn_account_assets = privateEarnGetV2EarnAccountAssets = Entry('v2/earn/account/assets', ['private', 'earn'], 'GET', {'cost': 2})
|
|
502
|
+
private_earn_post_v2_earn_savings_subscribe = privateEarnPostV2EarnSavingsSubscribe = Entry('v2/earn/savings/subscribe', ['private', 'earn'], 'POST', {'cost': 2})
|
|
503
|
+
private_earn_post_v2_earn_savings_redeem = privateEarnPostV2EarnSavingsRedeem = Entry('v2/earn/savings/redeem', ['private', 'earn'], 'POST', {'cost': 2})
|
|
504
|
+
private_earn_post_v2_earn_sharkfin_subscribe = privateEarnPostV2EarnSharkfinSubscribe = Entry('v2/earn/sharkfin/subscribe', ['private', 'earn'], 'POST', {'cost': 2})
|
|
505
|
+
private_earn_post_v2_earn_loan_borrow = privateEarnPostV2EarnLoanBorrow = Entry('v2/earn/loan/borrow', ['private', 'earn'], 'POST', {'cost': 2})
|
|
506
|
+
private_earn_post_v2_earn_loan_repay = privateEarnPostV2EarnLoanRepay = Entry('v2/earn/loan/repay', ['private', 'earn'], 'POST', {'cost': 2})
|
|
507
|
+
private_earn_post_v2_earn_loan_revise_pledge = privateEarnPostV2EarnLoanRevisePledge = Entry('v2/earn/loan/revise-pledge', ['private', 'earn'], 'POST', {'cost': 2})
|
|
508
|
+
private_common_get_v2_common_trade_rate = privateCommonGetV2CommonTradeRate = Entry('v2/common/trade-rate', ['private', 'common'], 'GET', {'cost': 2})
|