ccxt 4.4.30__py2.py3-none-any.whl → 4.4.32__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 +1 -1
- ccxt/ace.py +36 -12
- ccxt/alpaca.py +62 -22
- ccxt/ascendex.py +65 -30
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/ace.py +36 -12
- ccxt/async_support/alpaca.py +62 -22
- ccxt/async_support/ascendex.py +65 -30
- ccxt/async_support/base/exchange.py +3 -3
- ccxt/async_support/base/ws/aiohttp_client.py +25 -3
- ccxt/async_support/bigone.py +71 -27
- ccxt/async_support/binance.py +555 -323
- ccxt/async_support/bingx.py +208 -108
- ccxt/async_support/bit2c.py +34 -12
- ccxt/async_support/bitbank.py +42 -14
- ccxt/async_support/bitbns.py +17 -9
- ccxt/async_support/bitfinex.py +68 -24
- ccxt/async_support/bitfinex2.py +116 -44
- ccxt/async_support/bitflyer.py +54 -18
- ccxt/async_support/bitget.py +277 -145
- ccxt/async_support/bithumb.py +39 -14
- ccxt/async_support/bitmart.py +145 -79
- ccxt/async_support/bitmex.py +90 -30
- ccxt/async_support/bitopro.py +66 -22
- ccxt/async_support/bitrue.py +109 -57
- ccxt/async_support/bitso.py +55 -19
- ccxt/async_support/bitstamp.py +84 -36
- ccxt/async_support/bitteam.py +51 -17
- ccxt/async_support/bitvavo.py +57 -22
- ccxt/async_support/bl3p.py +26 -10
- ccxt/async_support/blockchaincom.py +63 -21
- ccxt/async_support/blofin.py +95 -38
- ccxt/async_support/btcalpha.py +48 -16
- ccxt/async_support/btcbox.py +27 -9
- ccxt/async_support/btcmarkets.py +57 -19
- ccxt/async_support/btcturk.py +36 -12
- ccxt/async_support/bybit.py +251 -95
- ccxt/async_support/cex.py +65 -22
- ccxt/async_support/coinbase.py +138 -56
- ccxt/async_support/coinbaseexchange.py +76 -28
- ccxt/async_support/coinbaseinternational.py +75 -27
- ccxt/async_support/coincatch.py +191 -97
- ccxt/async_support/coincheck.py +33 -11
- ccxt/async_support/coinex.py +212 -101
- ccxt/async_support/coinlist.py +87 -30
- ccxt/async_support/coinmate.py +55 -24
- ccxt/async_support/coinmetro.py +52 -18
- ccxt/async_support/coinone.py +27 -10
- ccxt/async_support/coinsph.py +73 -27
- ccxt/async_support/coinspot.py +25 -9
- ccxt/async_support/cryptocom.py +103 -38
- ccxt/async_support/currencycom.py +70 -23
- ccxt/async_support/delta.py +90 -30
- ccxt/async_support/deribit.py +131 -50
- ccxt/async_support/digifinex.py +114 -51
- ccxt/async_support/exmo.py +104 -45
- ccxt/async_support/gate.py +313 -157
- ccxt/async_support/gemini.py +57 -20
- ccxt/async_support/hashkey.py +151 -66
- ccxt/async_support/hitbtc.py +157 -74
- ccxt/async_support/hollaex.py +76 -25
- ccxt/async_support/htx.py +297 -240
- ccxt/async_support/huobijp.py +1 -0
- ccxt/async_support/hyperliquid.py +94 -38
- ccxt/async_support/idex.py +73 -24
- ccxt/async_support/independentreserve.py +12 -5
- ccxt/async_support/indodax.py +54 -17
- ccxt/async_support/kraken.py +108 -36
- ccxt/async_support/krakenfutures.py +88 -34
- ccxt/async_support/kucoin.py +214 -110
- ccxt/async_support/kucoinfutures.py +209 -64
- ccxt/async_support/kuna.py +80 -39
- ccxt/async_support/latoken.py +70 -33
- ccxt/async_support/lbank.py +89 -38
- ccxt/async_support/luno.py +54 -19
- ccxt/async_support/lykke.py +54 -19
- ccxt/async_support/mercado.py +1 -0
- ccxt/async_support/mexc.py +226 -108
- ccxt/async_support/ndax.py +58 -19
- ccxt/async_support/novadax.py +67 -22
- ccxt/async_support/oceanex.py +58 -19
- ccxt/async_support/okcoin.py +81 -38
- ccxt/async_support/okx.py +270 -109
- ccxt/async_support/onetrading.py +3 -1
- ccxt/async_support/oxfun.py +95 -36
- ccxt/async_support/p2b.py +49 -23
- ccxt/async_support/paradex.py +75 -27
- ccxt/async_support/paymium.py +31 -11
- ccxt/async_support/phemex.py +108 -56
- ccxt/async_support/poloniex.py +80 -30
- ccxt/async_support/poloniexfutures.py +72 -30
- ccxt/async_support/probit.py +64 -22
- ccxt/async_support/timex.py +58 -19
- ccxt/async_support/tokocrypto.py +63 -22
- ccxt/async_support/tradeogre.py +7 -2
- ccxt/async_support/upbit.py +72 -25
- ccxt/async_support/vertex.py +74 -28
- ccxt/async_support/wavesexchange.py +32 -8
- ccxt/async_support/wazirx.py +51 -17
- ccxt/async_support/whitebit.py +105 -41
- ccxt/async_support/woo.py +162 -65
- ccxt/async_support/woofipro.py +119 -50
- ccxt/async_support/xt.py +150 -73
- ccxt/async_support/yobit.py +49 -16
- ccxt/async_support/zaif.py +30 -10
- ccxt/async_support/zonda.py +46 -16
- ccxt/base/exchange.py +47 -35
- ccxt/base/types.py +1 -0
- ccxt/bigone.py +71 -27
- ccxt/binance.py +555 -323
- ccxt/bingx.py +208 -108
- ccxt/bit2c.py +34 -12
- ccxt/bitbank.py +42 -14
- ccxt/bitbns.py +17 -9
- ccxt/bitfinex.py +68 -24
- ccxt/bitfinex2.py +116 -44
- ccxt/bitflyer.py +54 -18
- ccxt/bitget.py +277 -145
- ccxt/bithumb.py +39 -14
- ccxt/bitmart.py +145 -79
- ccxt/bitmex.py +90 -30
- ccxt/bitopro.py +66 -22
- ccxt/bitrue.py +109 -57
- ccxt/bitso.py +55 -19
- ccxt/bitstamp.py +84 -36
- ccxt/bitteam.py +51 -17
- ccxt/bitvavo.py +57 -22
- ccxt/bl3p.py +26 -10
- ccxt/blockchaincom.py +63 -21
- ccxt/blofin.py +95 -38
- ccxt/btcalpha.py +48 -16
- ccxt/btcbox.py +27 -9
- ccxt/btcmarkets.py +57 -19
- ccxt/btcturk.py +36 -12
- ccxt/bybit.py +251 -95
- ccxt/cex.py +65 -22
- ccxt/coinbase.py +138 -56
- ccxt/coinbaseexchange.py +76 -28
- ccxt/coinbaseinternational.py +75 -27
- ccxt/coincatch.py +191 -97
- ccxt/coincheck.py +33 -11
- ccxt/coinex.py +212 -101
- ccxt/coinlist.py +87 -30
- ccxt/coinmate.py +55 -24
- ccxt/coinmetro.py +52 -18
- ccxt/coinone.py +27 -10
- ccxt/coinsph.py +73 -27
- ccxt/coinspot.py +25 -9
- ccxt/cryptocom.py +103 -38
- ccxt/currencycom.py +70 -23
- ccxt/delta.py +90 -30
- ccxt/deribit.py +131 -50
- ccxt/digifinex.py +114 -51
- ccxt/exmo.py +104 -45
- ccxt/gate.py +313 -157
- ccxt/gemini.py +57 -20
- ccxt/hashkey.py +151 -66
- ccxt/hitbtc.py +157 -74
- ccxt/hollaex.py +76 -25
- ccxt/htx.py +297 -240
- ccxt/huobijp.py +1 -0
- ccxt/hyperliquid.py +94 -38
- ccxt/idex.py +73 -24
- ccxt/independentreserve.py +12 -5
- ccxt/indodax.py +54 -17
- ccxt/kraken.py +108 -36
- ccxt/krakenfutures.py +88 -34
- ccxt/kucoin.py +214 -110
- ccxt/kucoinfutures.py +209 -64
- ccxt/kuna.py +80 -39
- ccxt/latoken.py +70 -33
- ccxt/lbank.py +89 -38
- ccxt/luno.py +54 -19
- ccxt/lykke.py +54 -19
- ccxt/mercado.py +1 -0
- ccxt/mexc.py +226 -108
- ccxt/ndax.py +58 -19
- ccxt/novadax.py +67 -22
- ccxt/oceanex.py +58 -19
- ccxt/okcoin.py +81 -38
- ccxt/okx.py +270 -109
- ccxt/onetrading.py +3 -1
- ccxt/oxfun.py +95 -36
- ccxt/p2b.py +49 -23
- ccxt/paradex.py +75 -27
- ccxt/paymium.py +31 -11
- ccxt/phemex.py +108 -56
- ccxt/poloniex.py +80 -30
- ccxt/poloniexfutures.py +72 -30
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/alpaca.py +15 -5
- ccxt/pro/ascendex.py +18 -6
- ccxt/pro/binance.py +204 -123
- ccxt/pro/bingx.py +44 -24
- ccxt/pro/bitfinex.py +13 -5
- ccxt/pro/bitget.py +76 -37
- ccxt/pro/bithumb.py +12 -4
- ccxt/pro/bitmart.py +44 -20
- ccxt/pro/bitmex.py +42 -14
- ccxt/pro/bitopro.py +15 -5
- ccxt/pro/bitrue.py +7 -3
- ccxt/pro/bitvavo.py +97 -62
- ccxt/pro/blockchaincom.py +18 -6
- ccxt/pro/blofin.py +36 -12
- ccxt/pro/bybit.py +100 -42
- ccxt/pro/cex.py +48 -16
- ccxt/pro/coinbase.py +32 -12
- ccxt/pro/coinbaseexchange.py +1 -1
- ccxt/pro/coinbaseinternational.py +34 -14
- ccxt/pro/coincatch.py +54 -19
- ccxt/pro/coincheck.py +6 -2
- ccxt/pro/coinex.py +40 -20
- ccxt/pro/coinone.py +9 -3
- ccxt/pro/cryptocom.py +71 -27
- ccxt/pro/deribit.py +36 -12
- ccxt/pro/exmo.py +10 -4
- ccxt/pro/gate.py +65 -31
- ccxt/pro/gemini.py +21 -7
- ccxt/pro/hashkey.py +27 -9
- ccxt/pro/hitbtc.py +61 -37
- ccxt/pro/hollaex.py +15 -5
- ccxt/pro/htx.py +39 -21
- ccxt/pro/hyperliquid.py +41 -14
- ccxt/pro/kraken.py +49 -17
- ccxt/pro/krakenfutures.py +47 -24
- ccxt/pro/kucoin.py +60 -31
- ccxt/pro/kucoinfutures.py +41 -19
- ccxt/pro/lbank.py +27 -9
- ccxt/pro/luno.py +3 -1
- ccxt/pro/mexc.py +36 -19
- ccxt/pro/ndax.py +12 -4
- ccxt/pro/okcoin.py +18 -6
- ccxt/pro/okx.py +76 -28
- ccxt/pro/onetrading.py +21 -7
- ccxt/pro/oxfun.py +54 -20
- ccxt/pro/p2b.py +23 -11
- ccxt/pro/paradex.py +12 -4
- ccxt/pro/phemex.py +31 -19
- ccxt/pro/poloniex.py +50 -22
- ccxt/pro/poloniexfutures.py +17 -7
- ccxt/pro/probit.py +18 -6
- ccxt/pro/upbit.py +25 -9
- ccxt/pro/vertex.py +20 -6
- ccxt/pro/wazirx.py +21 -7
- ccxt/pro/whitebit.py +25 -9
- ccxt/pro/woo.py +32 -12
- ccxt/pro/woofipro.py +35 -13
- ccxt/pro/xt.py +46 -26
- ccxt/probit.py +64 -22
- ccxt/timex.py +58 -19
- ccxt/tokocrypto.py +63 -22
- ccxt/tradeogre.py +7 -2
- ccxt/upbit.py +72 -25
- ccxt/vertex.py +74 -28
- ccxt/wavesexchange.py +32 -8
- ccxt/wazirx.py +51 -17
- ccxt/whitebit.py +105 -41
- ccxt/woo.py +162 -65
- ccxt/woofipro.py +119 -50
- ccxt/xt.py +150 -73
- ccxt/yobit.py +49 -16
- ccxt/zaif.py +30 -10
- ccxt/zonda.py +46 -16
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/METADATA +11 -5
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/RECORD +268 -268
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/WHEEL +0 -0
- {ccxt-4.4.30.dist-info → ccxt-4.4.32.dist-info}/top_level.txt +0 -0
ccxt/pro/coinex.py
CHANGED
@@ -251,8 +251,10 @@ class coinex(ccxt.async_support.coinex):
|
|
251
251
|
async def watch_balance(self, params={}) -> Balances:
|
252
252
|
"""
|
253
253
|
watch balance and get the amount of funds available for trading or funds locked in orders
|
254
|
-
|
255
|
-
|
254
|
+
|
255
|
+
https://docs.coinex.com/api/v2/assets/balance/ws/spot_balance
|
256
|
+
https://docs.coinex.com/api/v2/assets/balance/ws/futures_balance
|
257
|
+
|
256
258
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
257
259
|
:returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
|
258
260
|
"""
|
@@ -390,8 +392,10 @@ class coinex(ccxt.async_support.coinex):
|
|
390
392
|
async def watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
391
393
|
"""
|
392
394
|
watches information on multiple trades made by the user
|
393
|
-
|
394
|
-
|
395
|
+
|
396
|
+
https://docs.coinex.com/api/v2/spot/deal/ws/user-deals
|
397
|
+
https://docs.coinex.com/api/v2/futures/deal/ws/user-deals
|
398
|
+
|
395
399
|
:param str [symbol]: unified symbol of the market the trades were made in
|
396
400
|
:param int [since]: the earliest time in ms to watch trades
|
397
401
|
:param int [limit]: the maximum number of trade structures to retrieve
|
@@ -597,8 +601,10 @@ class coinex(ccxt.async_support.coinex):
|
|
597
601
|
async def watch_ticker(self, symbol: str, params={}) -> Ticker:
|
598
602
|
"""
|
599
603
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
600
|
-
|
601
|
-
|
604
|
+
|
605
|
+
https://docs.coinex.com/api/v2/spot/market/ws/market
|
606
|
+
https://docs.coinex.com/api/v2/futures/market/ws/market-state
|
607
|
+
|
602
608
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
603
609
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
604
610
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -611,8 +617,10 @@ class coinex(ccxt.async_support.coinex):
|
|
611
617
|
async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
612
618
|
"""
|
613
619
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
|
614
|
-
|
615
|
-
|
620
|
+
|
621
|
+
https://docs.coinex.com/api/v2/spot/market/ws/market
|
622
|
+
https://docs.coinex.com/api/v2/futures/market/ws/market-state
|
623
|
+
|
616
624
|
:param str[] symbols: unified symbol of the market to fetch the ticker for
|
617
625
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
618
626
|
:returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -646,8 +654,10 @@ class coinex(ccxt.async_support.coinex):
|
|
646
654
|
async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
647
655
|
"""
|
648
656
|
get the list of most recent trades for a particular symbol
|
649
|
-
|
650
|
-
|
657
|
+
|
658
|
+
https://docs.coinex.com/api/v2/spot/market/ws/market-deals
|
659
|
+
https://docs.coinex.com/api/v2/futures/market/ws/market-deals
|
660
|
+
|
651
661
|
:param str symbol: unified symbol of the market to fetch trades for
|
652
662
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
653
663
|
:param int [limit]: the maximum amount of trades to fetch
|
@@ -660,8 +670,10 @@ class coinex(ccxt.async_support.coinex):
|
|
660
670
|
async def watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
661
671
|
"""
|
662
672
|
watch the most recent trades for a list of symbols
|
663
|
-
|
664
|
-
|
673
|
+
|
674
|
+
https://docs.coinex.com/api/v2/spot/market/ws/market-deals
|
675
|
+
https://docs.coinex.com/api/v2/futures/market/ws/market-deals
|
676
|
+
|
665
677
|
:param str[] symbols: unified symbols of the markets to fetch trades for
|
666
678
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
667
679
|
:param int [limit]: the maximum amount of trades to fetch
|
@@ -700,8 +712,10 @@ class coinex(ccxt.async_support.coinex):
|
|
700
712
|
async def watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={}) -> OrderBook:
|
701
713
|
"""
|
702
714
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
703
|
-
|
704
|
-
|
715
|
+
|
716
|
+
https://docs.coinex.com/api/v2/spot/market/ws/market-depth
|
717
|
+
https://docs.coinex.com/api/v2/futures/market/ws/market-depth
|
718
|
+
|
705
719
|
:param str[] symbols: unified array of symbols
|
706
720
|
:param int [limit]: the maximum amount of order book entries to return
|
707
721
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -752,8 +766,10 @@ class coinex(ccxt.async_support.coinex):
|
|
752
766
|
async def watch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
753
767
|
"""
|
754
768
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
755
|
-
|
756
|
-
|
769
|
+
|
770
|
+
https://docs.coinex.com/api/v2/spot/market/ws/market-depth
|
771
|
+
https://docs.coinex.com/api/v2/futures/market/ws/market-depth
|
772
|
+
|
757
773
|
:param str symbol: unified symbol of the market to fetch the order book for
|
758
774
|
:param int [limit]: the maximum amount of order book entries to return
|
759
775
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -831,8 +847,10 @@ class coinex(ccxt.async_support.coinex):
|
|
831
847
|
async def watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
832
848
|
"""
|
833
849
|
watches information on multiple orders made by the user
|
834
|
-
|
835
|
-
|
850
|
+
|
851
|
+
https://docs.coinex.com/api/v2/spot/order/ws/user-order
|
852
|
+
https://docs.coinex.com/api/v2/futures/order/ws/user-order
|
853
|
+
|
836
854
|
:param str symbol: unified market symbol of the market orders were made in
|
837
855
|
:param int [since]: the earliest time in ms to fetch orders for
|
838
856
|
:param int [limit]: the maximum number of order structures to retrieve
|
@@ -1150,8 +1168,10 @@ class coinex(ccxt.async_support.coinex):
|
|
1150
1168
|
async def watch_bids_asks(self, symbols: Strings = None, params={}) -> Tickers:
|
1151
1169
|
"""
|
1152
1170
|
watches best bid & ask for symbols
|
1153
|
-
|
1154
|
-
|
1171
|
+
|
1172
|
+
https://docs.coinex.com/api/v2/spot/market/ws/market-bbo
|
1173
|
+
https://docs.coinex.com/api/v2/futures/market/ws/market-bbo
|
1174
|
+
|
1155
1175
|
:param str[] [symbols]: unified symbol of the market to fetch the ticker for
|
1156
1176
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1157
1177
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
ccxt/pro/coinone.py
CHANGED
@@ -55,7 +55,9 @@ class coinone(ccxt.async_support.coinone):
|
|
55
55
|
async def watch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
56
56
|
"""
|
57
57
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
58
|
-
|
58
|
+
|
59
|
+
https://docs.coinone.co.kr/reference/public-websocket-orderbook
|
60
|
+
|
59
61
|
:param str symbol: unified symbol of the market to fetch the order book for
|
60
62
|
:param int [limit]: the maximum amount of order book entries to return
|
61
63
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -132,7 +134,9 @@ class coinone(ccxt.async_support.coinone):
|
|
132
134
|
async def watch_ticker(self, symbol: str, params={}) -> Ticker:
|
133
135
|
"""
|
134
136
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
135
|
-
|
137
|
+
|
138
|
+
https://docs.coinone.co.kr/reference/public-websocket-ticker
|
139
|
+
|
136
140
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
137
141
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
138
142
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -248,7 +252,9 @@ class coinone(ccxt.async_support.coinone):
|
|
248
252
|
async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
249
253
|
"""
|
250
254
|
watches information on multiple trades made in a market
|
251
|
-
|
255
|
+
|
256
|
+
https://docs.coinone.co.kr/reference/public-websocket-trade
|
257
|
+
|
252
258
|
:param str symbol: unified market symbol of the market trades were made in
|
253
259
|
:param int [since]: the earliest time in ms to fetch trades for
|
254
260
|
:param int [limit]: the maximum number of trade structures to retrieve
|
ccxt/pro/cryptocom.py
CHANGED
@@ -78,7 +78,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
78
78
|
async def watch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
79
79
|
"""
|
80
80
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
81
|
-
|
81
|
+
|
82
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#book-instrument_name
|
83
|
+
|
82
84
|
:param str symbol: unified symbol of the market to fetch the order book for
|
83
85
|
:param int [limit]: the maximum amount of order book entries to return
|
84
86
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -91,7 +93,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
91
93
|
async def un_watch_order_book(self, symbol: str, params={}) -> Any:
|
92
94
|
"""
|
93
95
|
unWatches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
94
|
-
|
96
|
+
|
97
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#book-instrument_name
|
98
|
+
|
95
99
|
:param str symbol: unified symbol of the market to fetch the order book for
|
96
100
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
97
101
|
:param str [params.bookSubscriptionType]: The subscription type. Allowed values: SNAPSHOT full snapshot. This is the default if not specified. SNAPSHOT_AND_UPDATE delta updates
|
@@ -103,7 +107,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
103
107
|
async def watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={}) -> OrderBook:
|
104
108
|
"""
|
105
109
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
106
|
-
|
110
|
+
|
111
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#book-instrument_name
|
112
|
+
|
107
113
|
:param str[] symbols: unified array of symbols
|
108
114
|
:param int [limit]: the maximum amount of order book entries to return
|
109
115
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -144,7 +150,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
144
150
|
async def un_watch_order_book_for_symbols(self, symbols: List[str], params={}) -> OrderBook:
|
145
151
|
"""
|
146
152
|
unWatches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
147
|
-
|
153
|
+
|
154
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#book-instrument_name
|
155
|
+
|
148
156
|
:param str[] symbols: unified array of symbols
|
149
157
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
150
158
|
:param int [params.limit]: orderbook limit, default is 50
|
@@ -285,7 +293,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
285
293
|
async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
286
294
|
"""
|
287
295
|
get the list of most recent trades for a particular symbol
|
288
|
-
|
296
|
+
|
297
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#trade-instrument_name
|
298
|
+
|
289
299
|
:param str symbol: unified symbol of the market to fetch trades for
|
290
300
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
291
301
|
:param int [limit]: the maximum amount of trades to fetch
|
@@ -297,10 +307,10 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
297
307
|
async def un_watch_trades(self, symbol: str, params={}) -> List[Trade]:
|
298
308
|
"""
|
299
309
|
get the list of most recent trades for a particular symbol
|
300
|
-
|
310
|
+
|
311
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#trade-instrument_name
|
312
|
+
|
301
313
|
:param str symbol: unified symbol of the market to fetch trades for
|
302
|
-
:param int [since]: timestamp in ms of the earliest trade to fetch
|
303
|
-
:param int [limit]: the maximum amount of trades to fetch
|
304
314
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
305
315
|
:returns dict[]: a list of `trade structures <https://docs.ccxt.com/#/?id=public-trades>`
|
306
316
|
"""
|
@@ -309,8 +319,10 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
309
319
|
async def watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
310
320
|
"""
|
311
321
|
get the list of most recent trades for a particular symbol
|
312
|
-
|
313
|
-
|
322
|
+
|
323
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#trade-instrument_name
|
324
|
+
|
325
|
+
:param str[] symbols: unified symbol of the market to fetch trades for
|
314
326
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
315
327
|
:param int [limit]: the maximum amount of trades to fetch
|
316
328
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -334,8 +346,10 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
334
346
|
async def un_watch_trades_for_symbols(self, symbols: List[str], params={}) -> Any:
|
335
347
|
"""
|
336
348
|
get the list of most recent trades for a particular symbol
|
337
|
-
|
338
|
-
|
349
|
+
|
350
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#trade-instrument_name
|
351
|
+
|
352
|
+
:param str[] [symbols]: list of unified market symbols to unwatch trades for
|
339
353
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
340
354
|
:returns dict[]: a list of `trade structures <https://docs.ccxt.com/#/?id=public-trades>`
|
341
355
|
"""
|
@@ -398,7 +412,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
398
412
|
async def watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
399
413
|
"""
|
400
414
|
watches information on multiple trades made by the user
|
401
|
-
|
415
|
+
|
416
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#user-trade-instrument_name
|
417
|
+
|
402
418
|
:param str symbol: unified market symbol of the market trades were made in
|
403
419
|
:param int [since]: the earliest time in ms to fetch trades for
|
404
420
|
:param int [limit]: the maximum number of trade structures to retrieve
|
@@ -420,7 +436,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
420
436
|
async def watch_ticker(self, symbol: str, params={}) -> Ticker:
|
421
437
|
"""
|
422
438
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
423
|
-
|
439
|
+
|
440
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#ticker-instrument_name
|
441
|
+
|
424
442
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
425
443
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
426
444
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -433,7 +451,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
433
451
|
async def un_watch_ticker(self, symbol: str, params={}) -> Any:
|
434
452
|
"""
|
435
453
|
unWatches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
436
|
-
|
454
|
+
|
455
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#ticker-instrument_name
|
456
|
+
|
437
457
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
438
458
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
439
459
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -447,7 +467,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
447
467
|
async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
448
468
|
"""
|
449
469
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
|
450
|
-
|
470
|
+
|
471
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#ticker-instrument_name
|
472
|
+
|
451
473
|
:param str[] symbols: unified symbol of the market to fetch the ticker for
|
452
474
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
453
475
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -478,7 +500,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
478
500
|
async def un_watch_tickers(self, symbols: Strings = None, params={}) -> Any:
|
479
501
|
"""
|
480
502
|
unWatches a price ticker
|
481
|
-
|
503
|
+
|
504
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#ticker-instrument_name
|
505
|
+
|
482
506
|
:param str[] symbols: unified symbol of the market to fetch the ticker for
|
483
507
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
484
508
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -580,7 +604,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
580
604
|
|
581
605
|
async def watch_bids_asks(self, symbols: Strings = None, params={}) -> Tickers:
|
582
606
|
"""
|
583
|
-
|
607
|
+
|
608
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#ticker-instrument_name
|
609
|
+
|
584
610
|
watches best bid & ask for symbols
|
585
611
|
:param str[] symbols: unified symbol of the market to fetch the ticker for
|
586
612
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -639,7 +665,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
639
665
|
async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
640
666
|
"""
|
641
667
|
watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
642
|
-
|
668
|
+
|
669
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#candlestick-time_frame-instrument_name
|
670
|
+
|
643
671
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
644
672
|
:param str timeframe: the length of time each candle represents
|
645
673
|
:param int [since]: timestamp in ms of the earliest candle to fetch
|
@@ -660,7 +688,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
660
688
|
async def un_watch_ohlcv(self, symbol: str, timeframe='1m', params={}) -> Any:
|
661
689
|
"""
|
662
690
|
unWatches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
663
|
-
|
691
|
+
|
692
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#candlestick-time_frame-instrument_name
|
693
|
+
|
664
694
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
665
695
|
:param str timeframe: the length of time each candle represents
|
666
696
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -710,7 +740,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
710
740
|
async def watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
711
741
|
"""
|
712
742
|
watches information on multiple orders made by the user
|
713
|
-
|
743
|
+
|
744
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#user-order-instrument_name
|
745
|
+
|
714
746
|
:param str symbol: unified market symbol of the market orders were made in
|
715
747
|
:param int [since]: the earliest time in ms to fetch orders for
|
716
748
|
:param int [limit]: the maximum number of order structures to retrieve
|
@@ -780,8 +812,12 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
780
812
|
async def watch_positions(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={}) -> List[Position]:
|
781
813
|
"""
|
782
814
|
watch all open positions
|
783
|
-
|
784
|
-
|
815
|
+
|
816
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#user-position_balance
|
817
|
+
|
818
|
+
:param str[] [symbols]: list of unified market symbols to watch positions for
|
819
|
+
:param int [since]: the earliest time in ms to fetch positions for
|
820
|
+
:param int [limit]: the maximum number of positions to retrieve
|
785
821
|
:param dict params: extra parameters specific to the exchange API endpoint
|
786
822
|
:returns dict[]: a list of `position structure <https://docs.ccxt.com/en/latest/manual.html#position-structure>`
|
787
823
|
"""
|
@@ -889,7 +925,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
889
925
|
async def watch_balance(self, params={}) -> Balances:
|
890
926
|
"""
|
891
927
|
watch balance and get the amount of funds available for trading or funds locked in orders
|
892
|
-
|
928
|
+
|
929
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#user-balance
|
930
|
+
|
893
931
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
894
932
|
:returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
|
895
933
|
"""
|
@@ -961,7 +999,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
961
999
|
|
962
1000
|
async def create_order_ws(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}) -> Order:
|
963
1001
|
"""
|
964
|
-
|
1002
|
+
|
1003
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-create-order
|
1004
|
+
|
965
1005
|
create a trade order
|
966
1006
|
:param str symbol: unified symbol of the market to create an order in
|
967
1007
|
:param str type: 'market' or 'limit'
|
@@ -1000,7 +1040,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
1000
1040
|
async def cancel_order_ws(self, id: str, symbol: Str = None, params={}) -> Order:
|
1001
1041
|
"""
|
1002
1042
|
cancels an open order
|
1003
|
-
|
1043
|
+
|
1044
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-order
|
1045
|
+
|
1004
1046
|
:param str id: the order id of the order to cancel
|
1005
1047
|
:param str [symbol]: unified symbol of the market the order was made in
|
1006
1048
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1020,7 +1062,9 @@ class cryptocom(ccxt.async_support.cryptocom):
|
|
1020
1062
|
async def cancel_all_orders_ws(self, symbol: Str = None, params={}):
|
1021
1063
|
"""
|
1022
1064
|
cancel all open orders
|
1023
|
-
|
1065
|
+
|
1066
|
+
https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-all-orders
|
1067
|
+
|
1024
1068
|
:param str symbol: unified market symbol of the orders to cancel
|
1025
1069
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1026
1070
|
:returns dict} Returns exchange raw message {@link https://docs.ccxt.com/#/?id=order-structure:
|
ccxt/pro/deribit.py
CHANGED
@@ -83,7 +83,9 @@ class deribit(ccxt.async_support.deribit):
|
|
83
83
|
|
84
84
|
async def watch_balance(self, params={}) -> Balances:
|
85
85
|
"""
|
86
|
-
|
86
|
+
|
87
|
+
https://docs.deribit.com/#user-portfolio-currency
|
88
|
+
|
87
89
|
watch balance and get the amount of funds available for trading or funds locked in orders
|
88
90
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
89
91
|
:returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
|
@@ -163,7 +165,9 @@ class deribit(ccxt.async_support.deribit):
|
|
163
165
|
|
164
166
|
async def watch_ticker(self, symbol: str, params={}) -> Ticker:
|
165
167
|
"""
|
166
|
-
|
168
|
+
|
169
|
+
https://docs.deribit.com/#ticker-instrument_name-interval
|
170
|
+
|
167
171
|
watches a price ticker, a statistical calculation with the information for a specific market.
|
168
172
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
169
173
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -192,7 +196,9 @@ class deribit(ccxt.async_support.deribit):
|
|
192
196
|
|
193
197
|
async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
194
198
|
"""
|
195
|
-
|
199
|
+
|
200
|
+
https://docs.deribit.com/#ticker-instrument_name-interval
|
201
|
+
|
196
202
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
|
197
203
|
:param str[] [symbols]: unified symbol of the market to fetch the ticker for
|
198
204
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -268,7 +274,9 @@ class deribit(ccxt.async_support.deribit):
|
|
268
274
|
|
269
275
|
async def watch_bids_asks(self, symbols: Strings = None, params={}) -> Tickers:
|
270
276
|
"""
|
271
|
-
|
277
|
+
|
278
|
+
https://docs.deribit.com/#quote-instrument_name
|
279
|
+
|
272
280
|
watches best bid & ask for symbols
|
273
281
|
:param str[] [symbols]: unified symbol of the market to fetch the ticker for
|
274
282
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -342,7 +350,9 @@ class deribit(ccxt.async_support.deribit):
|
|
342
350
|
async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
343
351
|
"""
|
344
352
|
get the list of most recent trades for a particular symbol
|
345
|
-
|
353
|
+
|
354
|
+
https://docs.deribit.com/#trades-instrument_name-interval
|
355
|
+
|
346
356
|
:param str symbol: unified symbol of the market to fetch trades for
|
347
357
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
348
358
|
:param int [limit]: the maximum amount of trades to fetch
|
@@ -356,7 +366,9 @@ class deribit(ccxt.async_support.deribit):
|
|
356
366
|
async def watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
357
367
|
"""
|
358
368
|
get the list of most recent trades for a list of symbols
|
359
|
-
|
369
|
+
|
370
|
+
https://docs.deribit.com/#trades-instrument_name-interval
|
371
|
+
|
360
372
|
:param str[] symbols: unified symbol of the market to fetch trades for
|
361
373
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
362
374
|
:param int [limit]: the maximum amount of trades to fetch
|
@@ -419,7 +431,9 @@ class deribit(ccxt.async_support.deribit):
|
|
419
431
|
async def watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
420
432
|
"""
|
421
433
|
get the list of trades associated with the user
|
422
|
-
|
434
|
+
|
435
|
+
https://docs.deribit.com/#user-trades-instrument_name-interval
|
436
|
+
|
423
437
|
:param str symbol: unified symbol of the market to fetch trades for. Use 'any' to watch all trades
|
424
438
|
:param int [since]: timestamp in ms of the earliest trade to fetch
|
425
439
|
:param int [limit]: the maximum amount of trades to fetch
|
@@ -498,7 +512,9 @@ class deribit(ccxt.async_support.deribit):
|
|
498
512
|
|
499
513
|
async def watch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
500
514
|
"""
|
501
|
-
|
515
|
+
|
516
|
+
https://docs.deribit.com/#book-instrument_name-group-depth-interval
|
517
|
+
|
502
518
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
503
519
|
:param str symbol: unified symbol of the market to fetch the order book for
|
504
520
|
:param int [limit]: the maximum amount of order book entries to return
|
@@ -512,7 +528,9 @@ class deribit(ccxt.async_support.deribit):
|
|
512
528
|
async def watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={}) -> OrderBook:
|
513
529
|
"""
|
514
530
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
515
|
-
|
531
|
+
|
532
|
+
https://docs.deribit.com/#book-instrument_name-group-depth-interval
|
533
|
+
|
516
534
|
:param str[] symbols: unified array of symbols
|
517
535
|
:param int [limit]: the maximum amount of order book entries to return
|
518
536
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -642,7 +660,9 @@ class deribit(ccxt.async_support.deribit):
|
|
642
660
|
|
643
661
|
async def watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
644
662
|
"""
|
645
|
-
|
663
|
+
|
664
|
+
https://docs.deribit.com/#user-orders-instrument_name-raw
|
665
|
+
|
646
666
|
watches information on multiple orders made by the user
|
647
667
|
:param str symbol: unified market symbol of the market orders were made in
|
648
668
|
:param int [since]: the earliest time in ms to fetch orders for
|
@@ -728,7 +748,9 @@ class deribit(ccxt.async_support.deribit):
|
|
728
748
|
|
729
749
|
async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
730
750
|
"""
|
731
|
-
|
751
|
+
|
752
|
+
https://docs.deribit.com/#chart-trades-instrument_name-resolution
|
753
|
+
|
732
754
|
watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
733
755
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
734
756
|
:param str timeframe: the length of time each candle represents
|
@@ -745,7 +767,9 @@ class deribit(ccxt.async_support.deribit):
|
|
745
767
|
async def watch_ohlcv_for_symbols(self, symbolsAndTimeframes: List[List[str]], since: Int = None, limit: Int = None, params={}):
|
746
768
|
"""
|
747
769
|
watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
748
|
-
|
770
|
+
|
771
|
+
https://docs.deribit.com/#chart-trades-instrument_name-resolution
|
772
|
+
|
749
773
|
:param str[][] symbolsAndTimeframes: array of arrays containing unified symbols and timeframes to fetch OHLCV data for, example [['BTC/USDT', '1m'], ['LTC/USDT', '5m']]
|
750
774
|
:param int [since]: timestamp in ms of the earliest candle to fetch
|
751
775
|
:param int [limit]: the maximum amount of candles to fetch
|
ccxt/pro/exmo.py
CHANGED
@@ -199,7 +199,9 @@ class exmo(ccxt.async_support.exmo):
|
|
199
199
|
async def watch_ticker(self, symbol: str, params={}) -> Ticker:
|
200
200
|
"""
|
201
201
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
202
|
-
|
202
|
+
|
203
|
+
https://documenter.getpostman.com/view/10287440/SzYXWKPi#fd8f47bc-8517-43c0-bb60-1d61a86d4471
|
204
|
+
|
203
205
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
204
206
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
205
207
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -222,7 +224,9 @@ class exmo(ccxt.async_support.exmo):
|
|
222
224
|
async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
223
225
|
"""
|
224
226
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
|
225
|
-
|
227
|
+
|
228
|
+
https://documenter.getpostman.com/view/10287440/SzYXWKPi#fd8f47bc-8517-43c0-bb60-1d61a86d4471
|
229
|
+
|
226
230
|
:param str[] [symbols]: unified symbol of the market to fetch the ticker for
|
227
231
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
228
232
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -548,8 +552,10 @@ class exmo(ccxt.async_support.exmo):
|
|
548
552
|
|
549
553
|
async def watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
550
554
|
"""
|
551
|
-
|
552
|
-
|
555
|
+
|
556
|
+
https://documenter.getpostman.com/view/10287440/SzYXWKPi#85f7bc03-b1c9-4cd2-bd22-8fd422272825
|
557
|
+
https://documenter.getpostman.com/view/10287440/SzYXWKPi#95e4ed18-1791-4e6d-83ad-cbfe9be1051c
|
558
|
+
|
553
559
|
watches information on multiple orders made by the user
|
554
560
|
:param str symbol: unified market symbol of the market orders were made in
|
555
561
|
:param int [since]: the earliest time in ms to fetch orders for
|