ccxt 4.4.29__py2.py3-none-any.whl → 4.4.31__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.
Files changed (273) hide show
  1. ccxt/__init__.py +1 -1
  2. ccxt/abstract/alpaca.py +1 -0
  3. ccxt/abstract/binance.py +9 -0
  4. ccxt/abstract/binancecoinm.py +9 -0
  5. ccxt/abstract/binanceus.py +9 -0
  6. ccxt/abstract/binanceusdm.py +9 -0
  7. ccxt/ace.py +36 -12
  8. ccxt/alpaca.py +113 -28
  9. ccxt/ascendex.py +65 -30
  10. ccxt/async_support/__init__.py +1 -1
  11. ccxt/async_support/ace.py +36 -12
  12. ccxt/async_support/alpaca.py +113 -28
  13. ccxt/async_support/ascendex.py +65 -30
  14. ccxt/async_support/base/exchange.py +3 -3
  15. ccxt/async_support/bigone.py +71 -27
  16. ccxt/async_support/binance.py +564 -323
  17. ccxt/async_support/bingx.py +208 -108
  18. ccxt/async_support/bit2c.py +34 -12
  19. ccxt/async_support/bitbank.py +42 -14
  20. ccxt/async_support/bitbns.py +29 -21
  21. ccxt/async_support/bitfinex.py +77 -33
  22. ccxt/async_support/bitfinex2.py +116 -44
  23. ccxt/async_support/bitflyer.py +54 -18
  24. ccxt/async_support/bitget.py +277 -145
  25. ccxt/async_support/bithumb.py +39 -14
  26. ccxt/async_support/bitmart.py +198 -132
  27. ccxt/async_support/bitmex.py +90 -30
  28. ccxt/async_support/bitopro.py +66 -22
  29. ccxt/async_support/bitrue.py +109 -57
  30. ccxt/async_support/bitso.py +55 -19
  31. ccxt/async_support/bitstamp.py +84 -36
  32. ccxt/async_support/bitteam.py +51 -17
  33. ccxt/async_support/bitvavo.py +57 -19
  34. ccxt/async_support/bl3p.py +26 -10
  35. ccxt/async_support/blockchaincom.py +63 -21
  36. ccxt/async_support/blofin.py +95 -38
  37. ccxt/async_support/btcalpha.py +48 -16
  38. ccxt/async_support/btcbox.py +27 -9
  39. ccxt/async_support/btcmarkets.py +57 -19
  40. ccxt/async_support/btcturk.py +36 -12
  41. ccxt/async_support/bybit.py +251 -95
  42. ccxt/async_support/cex.py +65 -22
  43. ccxt/async_support/coinbase.py +138 -56
  44. ccxt/async_support/coinbaseexchange.py +76 -28
  45. ccxt/async_support/coinbaseinternational.py +75 -27
  46. ccxt/async_support/coincatch.py +191 -97
  47. ccxt/async_support/coincheck.py +33 -11
  48. ccxt/async_support/coinex.py +212 -101
  49. ccxt/async_support/coinlist.py +87 -30
  50. ccxt/async_support/coinmate.py +55 -24
  51. ccxt/async_support/coinmetro.py +52 -18
  52. ccxt/async_support/coinone.py +27 -10
  53. ccxt/async_support/coinsph.py +73 -27
  54. ccxt/async_support/coinspot.py +25 -9
  55. ccxt/async_support/cryptocom.py +103 -38
  56. ccxt/async_support/currencycom.py +70 -23
  57. ccxt/async_support/delta.py +90 -30
  58. ccxt/async_support/deribit.py +138 -53
  59. ccxt/async_support/digifinex.py +114 -51
  60. ccxt/async_support/exmo.py +104 -45
  61. ccxt/async_support/gate.py +298 -155
  62. ccxt/async_support/gemini.py +57 -20
  63. ccxt/async_support/hashkey.py +151 -66
  64. ccxt/async_support/hitbtc.py +156 -73
  65. ccxt/async_support/hollaex.py +76 -25
  66. ccxt/async_support/htx.py +297 -240
  67. ccxt/async_support/huobijp.py +1 -0
  68. ccxt/async_support/hyperliquid.py +203 -42
  69. ccxt/async_support/idex.py +73 -24
  70. ccxt/async_support/independentreserve.py +12 -5
  71. ccxt/async_support/indodax.py +53 -16
  72. ccxt/async_support/kraken.py +107 -35
  73. ccxt/async_support/krakenfutures.py +88 -34
  74. ccxt/async_support/kucoin.py +211 -109
  75. ccxt/async_support/kucoinfutures.py +119 -42
  76. ccxt/async_support/kuna.py +80 -39
  77. ccxt/async_support/latoken.py +70 -33
  78. ccxt/async_support/lbank.py +90 -39
  79. ccxt/async_support/luno.py +54 -19
  80. ccxt/async_support/lykke.py +54 -19
  81. ccxt/async_support/mercado.py +1 -0
  82. ccxt/async_support/mexc.py +226 -108
  83. ccxt/async_support/ndax.py +58 -19
  84. ccxt/async_support/novadax.py +67 -22
  85. ccxt/async_support/oceanex.py +58 -19
  86. ccxt/async_support/okcoin.py +81 -38
  87. ccxt/async_support/okx.py +270 -109
  88. ccxt/async_support/onetrading.py +3 -1
  89. ccxt/async_support/oxfun.py +95 -36
  90. ccxt/async_support/p2b.py +49 -23
  91. ccxt/async_support/paradex.py +75 -27
  92. ccxt/async_support/paymium.py +31 -11
  93. ccxt/async_support/phemex.py +91 -41
  94. ccxt/async_support/poloniex.py +80 -30
  95. ccxt/async_support/poloniexfutures.py +72 -30
  96. ccxt/async_support/probit.py +64 -22
  97. ccxt/async_support/timex.py +58 -19
  98. ccxt/async_support/tokocrypto.py +63 -22
  99. ccxt/async_support/tradeogre.py +7 -2
  100. ccxt/async_support/upbit.py +72 -25
  101. ccxt/async_support/vertex.py +74 -28
  102. ccxt/async_support/wavesexchange.py +29 -8
  103. ccxt/async_support/wazirx.py +51 -17
  104. ccxt/async_support/whitebit.py +105 -41
  105. ccxt/async_support/woo.py +162 -65
  106. ccxt/async_support/woofipro.py +118 -49
  107. ccxt/async_support/xt.py +150 -73
  108. ccxt/async_support/yobit.py +49 -16
  109. ccxt/async_support/zaif.py +30 -10
  110. ccxt/async_support/zonda.py +46 -16
  111. ccxt/base/exchange.py +34 -34
  112. ccxt/base/types.py +1 -0
  113. ccxt/bigone.py +71 -27
  114. ccxt/binance.py +564 -323
  115. ccxt/bingx.py +208 -108
  116. ccxt/bit2c.py +34 -12
  117. ccxt/bitbank.py +42 -14
  118. ccxt/bitbns.py +29 -21
  119. ccxt/bitfinex.py +77 -33
  120. ccxt/bitfinex2.py +116 -44
  121. ccxt/bitflyer.py +54 -18
  122. ccxt/bitget.py +277 -145
  123. ccxt/bithumb.py +39 -14
  124. ccxt/bitmart.py +198 -132
  125. ccxt/bitmex.py +90 -30
  126. ccxt/bitopro.py +66 -22
  127. ccxt/bitrue.py +109 -57
  128. ccxt/bitso.py +55 -19
  129. ccxt/bitstamp.py +84 -36
  130. ccxt/bitteam.py +51 -17
  131. ccxt/bitvavo.py +57 -19
  132. ccxt/bl3p.py +26 -10
  133. ccxt/blockchaincom.py +63 -21
  134. ccxt/blofin.py +95 -38
  135. ccxt/btcalpha.py +48 -16
  136. ccxt/btcbox.py +27 -9
  137. ccxt/btcmarkets.py +57 -19
  138. ccxt/btcturk.py +36 -12
  139. ccxt/bybit.py +251 -95
  140. ccxt/cex.py +65 -22
  141. ccxt/coinbase.py +138 -56
  142. ccxt/coinbaseexchange.py +76 -28
  143. ccxt/coinbaseinternational.py +75 -27
  144. ccxt/coincatch.py +191 -97
  145. ccxt/coincheck.py +33 -11
  146. ccxt/coinex.py +212 -101
  147. ccxt/coinlist.py +87 -30
  148. ccxt/coinmate.py +55 -24
  149. ccxt/coinmetro.py +52 -18
  150. ccxt/coinone.py +27 -10
  151. ccxt/coinsph.py +73 -27
  152. ccxt/coinspot.py +25 -9
  153. ccxt/cryptocom.py +103 -38
  154. ccxt/currencycom.py +70 -23
  155. ccxt/delta.py +90 -30
  156. ccxt/deribit.py +138 -53
  157. ccxt/digifinex.py +114 -51
  158. ccxt/exmo.py +104 -45
  159. ccxt/gate.py +298 -155
  160. ccxt/gemini.py +57 -20
  161. ccxt/hashkey.py +151 -66
  162. ccxt/hitbtc.py +156 -73
  163. ccxt/hollaex.py +76 -25
  164. ccxt/htx.py +297 -240
  165. ccxt/huobijp.py +1 -0
  166. ccxt/hyperliquid.py +203 -42
  167. ccxt/idex.py +73 -24
  168. ccxt/independentreserve.py +12 -5
  169. ccxt/indodax.py +53 -16
  170. ccxt/kraken.py +107 -35
  171. ccxt/krakenfutures.py +88 -34
  172. ccxt/kucoin.py +211 -109
  173. ccxt/kucoinfutures.py +119 -42
  174. ccxt/kuna.py +80 -39
  175. ccxt/latoken.py +70 -33
  176. ccxt/lbank.py +90 -39
  177. ccxt/luno.py +54 -19
  178. ccxt/lykke.py +54 -19
  179. ccxt/mercado.py +1 -0
  180. ccxt/mexc.py +226 -108
  181. ccxt/ndax.py +58 -19
  182. ccxt/novadax.py +67 -22
  183. ccxt/oceanex.py +58 -19
  184. ccxt/okcoin.py +81 -38
  185. ccxt/okx.py +270 -109
  186. ccxt/onetrading.py +3 -1
  187. ccxt/oxfun.py +95 -36
  188. ccxt/p2b.py +49 -23
  189. ccxt/paradex.py +75 -27
  190. ccxt/paymium.py +31 -11
  191. ccxt/phemex.py +91 -41
  192. ccxt/poloniex.py +80 -30
  193. ccxt/poloniexfutures.py +72 -30
  194. ccxt/pro/__init__.py +1 -1
  195. ccxt/pro/alpaca.py +15 -5
  196. ccxt/pro/ascendex.py +18 -6
  197. ccxt/pro/binance.py +200 -119
  198. ccxt/pro/bingx.py +44 -24
  199. ccxt/pro/bitfinex.py +13 -5
  200. ccxt/pro/bitget.py +75 -36
  201. ccxt/pro/bithumb.py +12 -4
  202. ccxt/pro/bitmart.py +44 -20
  203. ccxt/pro/bitmex.py +42 -14
  204. ccxt/pro/bitopro.py +15 -5
  205. ccxt/pro/bitrue.py +7 -3
  206. ccxt/pro/bitvavo.py +51 -17
  207. ccxt/pro/blockchaincom.py +18 -6
  208. ccxt/pro/blofin.py +38 -13
  209. ccxt/pro/bybit.py +100 -42
  210. ccxt/pro/cex.py +48 -16
  211. ccxt/pro/coinbase.py +32 -12
  212. ccxt/pro/coinbaseexchange.py +1 -1
  213. ccxt/pro/coinbaseinternational.py +34 -14
  214. ccxt/pro/coincatch.py +54 -19
  215. ccxt/pro/coincheck.py +6 -2
  216. ccxt/pro/coinex.py +40 -20
  217. ccxt/pro/coinone.py +9 -3
  218. ccxt/pro/cryptocom.py +70 -26
  219. ccxt/pro/deribit.py +36 -12
  220. ccxt/pro/exmo.py +10 -4
  221. ccxt/pro/gate.py +64 -30
  222. ccxt/pro/gemini.py +21 -7
  223. ccxt/pro/hashkey.py +26 -8
  224. ccxt/pro/hitbtc.py +61 -37
  225. ccxt/pro/hollaex.py +15 -5
  226. ccxt/pro/htx.py +39 -21
  227. ccxt/pro/hyperliquid.py +41 -14
  228. ccxt/pro/kraken.py +49 -17
  229. ccxt/pro/krakenfutures.py +47 -24
  230. ccxt/pro/kucoin.py +60 -31
  231. ccxt/pro/kucoinfutures.py +41 -19
  232. ccxt/pro/lbank.py +27 -9
  233. ccxt/pro/luno.py +3 -1
  234. ccxt/pro/mexc.py +35 -17
  235. ccxt/pro/ndax.py +12 -4
  236. ccxt/pro/okcoin.py +18 -6
  237. ccxt/pro/okx.py +76 -28
  238. ccxt/pro/onetrading.py +21 -7
  239. ccxt/pro/oxfun.py +54 -20
  240. ccxt/pro/p2b.py +23 -11
  241. ccxt/pro/paradex.py +12 -4
  242. ccxt/pro/phemex.py +31 -19
  243. ccxt/pro/poloniex.py +50 -22
  244. ccxt/pro/poloniexfutures.py +17 -7
  245. ccxt/pro/probit.py +18 -6
  246. ccxt/pro/upbit.py +25 -9
  247. ccxt/pro/vertex.py +20 -6
  248. ccxt/pro/wazirx.py +21 -7
  249. ccxt/pro/whitebit.py +25 -9
  250. ccxt/pro/woo.py +32 -12
  251. ccxt/pro/woofipro.py +35 -13
  252. ccxt/pro/xt.py +46 -26
  253. ccxt/probit.py +64 -22
  254. ccxt/test/tests_helpers.py +2 -2
  255. ccxt/timex.py +58 -19
  256. ccxt/tokocrypto.py +63 -22
  257. ccxt/tradeogre.py +7 -2
  258. ccxt/upbit.py +72 -25
  259. ccxt/vertex.py +74 -28
  260. ccxt/wavesexchange.py +29 -8
  261. ccxt/wazirx.py +51 -17
  262. ccxt/whitebit.py +105 -41
  263. ccxt/woo.py +162 -65
  264. ccxt/woofipro.py +118 -49
  265. ccxt/xt.py +150 -73
  266. ccxt/yobit.py +49 -16
  267. ccxt/zaif.py +30 -10
  268. ccxt/zonda.py +46 -16
  269. {ccxt-4.4.29.dist-info → ccxt-4.4.31.dist-info}/METADATA +5 -5
  270. {ccxt-4.4.29.dist-info → ccxt-4.4.31.dist-info}/RECORD +273 -273
  271. {ccxt-4.4.29.dist-info → ccxt-4.4.31.dist-info}/LICENSE.txt +0 -0
  272. {ccxt-4.4.29.dist-info → ccxt-4.4.31.dist-info}/WHEEL +0 -0
  273. {ccxt-4.4.29.dist-info → ccxt-4.4.31.dist-info}/top_level.txt +0 -0
ccxt/pro/bybit.py CHANGED
@@ -208,8 +208,10 @@ class bybit(ccxt.async_support.bybit):
208
208
  async def create_order_ws(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
209
209
  """
210
210
  create a trade order
211
- :see: https://bybit-exchange.github.io/docs/v5/order/create-order
212
- :see: https://bybit-exchange.github.io/docs/v5/websocket/trade/guideline#createamendcancel-order
211
+
212
+ https://bybit-exchange.github.io/docs/v5/order/create-order
213
+ https://bybit-exchange.github.io/docs/v5/websocket/trade/guideline#createamendcancel-order
214
+
213
215
  :param str symbol: unified symbol of the market to create an order in
214
216
  :param str type: 'market' or 'limit'
215
217
  :param str side: 'buy' or 'sell'
@@ -256,8 +258,10 @@ class bybit(ccxt.async_support.bybit):
256
258
  async def edit_order_ws(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={}):
257
259
  """
258
260
  edit a trade order
259
- :see: https://bybit-exchange.github.io/docs/v5/order/amend-order
260
- :see: https://bybit-exchange.github.io/docs/v5/websocket/trade/guideline#createamendcancel-order
261
+
262
+ https://bybit-exchange.github.io/docs/v5/order/amend-order
263
+ https://bybit-exchange.github.io/docs/v5/websocket/trade/guideline#createamendcancel-order
264
+
261
265
  :param str id: cancel order id
262
266
  :param str symbol: unified symbol of the market to create an order in
263
267
  :param str type: 'market' or 'limit'
@@ -298,8 +302,10 @@ class bybit(ccxt.async_support.bybit):
298
302
  async def cancel_order_ws(self, id: str, symbol: Str = None, params={}):
299
303
  """
300
304
  cancels an open order
301
- :see: https://bybit-exchange.github.io/docs/v5/order/cancel-order
302
- :see: https://bybit-exchange.github.io/docs/v5/websocket/trade/guideline#createamendcancel-order
305
+
306
+ https://bybit-exchange.github.io/docs/v5/order/cancel-order
307
+ https://bybit-exchange.github.io/docs/v5/websocket/trade/guideline#createamendcancel-order
308
+
303
309
  :param str id: order id
304
310
  :param str symbol: unified symbol of the market the order was made in
305
311
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -330,8 +336,10 @@ class bybit(ccxt.async_support.bybit):
330
336
  async def watch_ticker(self, symbol: str, params={}) -> Ticker:
331
337
  """
332
338
  watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
333
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/ticker
334
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/etp-ticker
339
+
340
+ https://bybit-exchange.github.io/docs/v5/websocket/public/ticker
341
+ https://bybit-exchange.github.io/docs/v5/websocket/public/etp-ticker
342
+
335
343
  :param str symbol: unified symbol of the market to fetch the ticker for
336
344
  :param dict [params]: extra parameters specific to the exchange API endpoint
337
345
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
@@ -353,8 +361,10 @@ class bybit(ccxt.async_support.bybit):
353
361
  async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
354
362
  """
355
363
  watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
356
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/ticker
357
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/etp-ticker
364
+
365
+ https://bybit-exchange.github.io/docs/v5/websocket/public/ticker
366
+ https://bybit-exchange.github.io/docs/v5/websocket/public/etp-ticker
367
+
358
368
  :param str[] symbols: unified symbol of the market to fetch the ticker for
359
369
  :param dict [params]: extra parameters specific to the exchange API endpoint
360
370
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
@@ -382,8 +392,10 @@ class bybit(ccxt.async_support.bybit):
382
392
  async def un_watch_tickers(self, symbols: Strings = None, params={}) -> Any:
383
393
  """
384
394
  unWatches a price ticker
385
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/ticker
386
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/etp-ticker
395
+
396
+ https://bybit-exchange.github.io/docs/v5/websocket/public/ticker
397
+ https://bybit-exchange.github.io/docs/v5/websocket/public/etp-ticker
398
+
387
399
  :param str[] symbols: unified symbol of the market to fetch the ticker for
388
400
  :param dict [params]: extra parameters specific to the exchange API endpoint
389
401
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
@@ -408,9 +420,11 @@ class bybit(ccxt.async_support.bybit):
408
420
  async def un_watch_ticker(self, symbols: str, params={}) -> Any:
409
421
  """
410
422
  unWatches a price ticker
411
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/ticker
412
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/etp-ticker
413
- :param str symbol: unified symbol of the market to fetch the ticker for
423
+
424
+ https://bybit-exchange.github.io/docs/v5/websocket/public/ticker
425
+ https://bybit-exchange.github.io/docs/v5/websocket/public/etp-ticker
426
+
427
+ :param str[] symbols: unified symbol of the market to fetch the ticker for
414
428
  :param dict [params]: extra parameters specific to the exchange API endpoint
415
429
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
416
430
  """
@@ -563,7 +577,9 @@ class bybit(ccxt.async_support.bybit):
563
577
  async def watch_bids_asks(self, symbols: Strings = None, params={}) -> Tickers:
564
578
  """
565
579
  watches best bid & ask for symbols
566
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
580
+
581
+ https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
582
+
567
583
  :param str[] symbols: unified symbol of the market to fetch the ticker for
568
584
  :param dict [params]: extra parameters specific to the exchange API endpoint
569
585
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
@@ -605,8 +621,10 @@ class bybit(ccxt.async_support.bybit):
605
621
  async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
606
622
  """
607
623
  watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
608
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/kline
609
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/etp-kline
624
+
625
+ https://bybit-exchange.github.io/docs/v5/websocket/public/kline
626
+ https://bybit-exchange.github.io/docs/v5/websocket/public/etp-kline
627
+
610
628
  :param str symbol: unified symbol of the market to fetch OHLCV data for
611
629
  :param str timeframe: the length of time each candle represents
612
630
  :param int [since]: timestamp in ms of the earliest candle to fetch
@@ -621,8 +639,10 @@ class bybit(ccxt.async_support.bybit):
621
639
  async def watch_ohlcv_for_symbols(self, symbolsAndTimeframes: List[List[str]], since: Int = None, limit: Int = None, params={}):
622
640
  """
623
641
  watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
624
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/kline
625
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/etp-kline
642
+
643
+ https://bybit-exchange.github.io/docs/v5/websocket/public/kline
644
+ https://bybit-exchange.github.io/docs/v5/websocket/public/etp-kline
645
+
626
646
  :param str[][] symbolsAndTimeframes: array of arrays containing unified symbols and timeframes to fetch OHLCV data for, example [['BTC/USDT', '1m'], ['LTC/USDT', '5m']]
627
647
  :param int [since]: timestamp in ms of the earliest candle to fetch
628
648
  :param int [limit]: the maximum amount of candles to fetch
@@ -654,8 +674,10 @@ class bybit(ccxt.async_support.bybit):
654
674
  async def un_watch_ohlcv_for_symbols(self, symbolsAndTimeframes: List[List[str]], params={}) -> Any:
655
675
  """
656
676
  unWatches historical candlestick data containing the open, high, low, and close price, and the volume of a market
657
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/kline
658
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/etp-kline
677
+
678
+ https://bybit-exchange.github.io/docs/v5/websocket/public/kline
679
+ https://bybit-exchange.github.io/docs/v5/websocket/public/etp-kline
680
+
659
681
  :param str[][] symbolsAndTimeframes: array of arrays containing unified symbols and timeframes to fetch OHLCV data for, example [['BTC/USDT', '1m'], ['LTC/USDT', '5m']]
660
682
  :param dict [params]: extra parameters specific to the exchange API endpoint
661
683
  :returns dict: A list of candles ordered, open, high, low, close, volume
@@ -686,12 +708,12 @@ class bybit(ccxt.async_support.bybit):
686
708
  async def un_watch_ohlcv(self, symbol: str, timeframe='1m', params={}) -> Any:
687
709
  """
688
710
  unWatches historical candlestick data containing the open, high, low, and close price, and the volume of a market
689
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/kline
690
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/etp-kline
711
+
712
+ https://bybit-exchange.github.io/docs/v5/websocket/public/kline
713
+ https://bybit-exchange.github.io/docs/v5/websocket/public/etp-kline
714
+
691
715
  :param str symbol: unified symbol of the market to fetch OHLCV data for
692
716
  :param str timeframe: the length of time each candle represents
693
- :param int [since]: timestamp in ms of the earliest candle to fetch
694
- :param int [limit]: the maximum amount of candles to fetch
695
717
  :param dict [params]: extra parameters specific to the exchange API endpoint
696
718
  :returns int[][]: A list of candles ordered, open, high, low, close, volume
697
719
  """
@@ -774,7 +796,9 @@ class bybit(ccxt.async_support.bybit):
774
796
  async def watch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
775
797
  """
776
798
  watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
777
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
799
+
800
+ https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
801
+
778
802
  :param str symbol: unified symbol of the market to fetch the order book for
779
803
  :param int [limit]: the maximum amount of order book entries to return.
780
804
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -785,7 +809,9 @@ class bybit(ccxt.async_support.bybit):
785
809
  async def watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={}) -> OrderBook:
786
810
  """
787
811
  watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
788
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
812
+
813
+ https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
814
+
789
815
  :param str[] symbols: unified array of symbols
790
816
  :param int [limit]: the maximum amount of order book entries to return.
791
817
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -821,8 +847,11 @@ class bybit(ccxt.async_support.bybit):
821
847
  async def un_watch_order_book_for_symbols(self, symbols: Strings, params={}) -> Any:
822
848
  """
823
849
  unsubscribe from the orderbook channel
824
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
850
+
851
+ https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
852
+
825
853
  :param str[] symbols: unified symbol of the market to unwatch the trades for
854
+ :param dict [params]: extra parameters specific to the exchange API endpoint
826
855
  :param int [params.limit]: orderbook limit, default is None
827
856
  :returns dict: A dictionary of `order book structures <https://docs.ccxt.com/#/?id=order-book-structure>` indexed by market symbols
828
857
  """
@@ -853,8 +882,11 @@ class bybit(ccxt.async_support.bybit):
853
882
  async def un_watch_order_book(self, symbol: str, params={}) -> Any:
854
883
  """
855
884
  unsubscribe from the orderbook channel
856
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
857
- :param str[] symbols: unified symbol of the market to unwatch the trades for
885
+
886
+ https://bybit-exchange.github.io/docs/v5/websocket/public/orderbook
887
+
888
+ :param str symbol: symbol of the market to unwatch the trades for
889
+ :param dict [params]: extra parameters specific to the exchange API endpoint
858
890
  :param int [params.limit]: orderbook limit, default is None
859
891
  :returns dict: A dictionary of `order book structures <https://docs.ccxt.com/#/?id=order-book-structure>` indexed by market symbols
860
892
  """
@@ -940,7 +972,9 @@ class bybit(ccxt.async_support.bybit):
940
972
  async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
941
973
  """
942
974
  watches information on multiple trades made in a market
943
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/trade
975
+
976
+ https://bybit-exchange.github.io/docs/v5/websocket/public/trade
977
+
944
978
  :param str symbol: unified market symbol of the market trades were made in
945
979
  :param int [since]: the earliest time in ms to fetch trades for
946
980
  :param int [limit]: the maximum number of trade structures to retrieve
@@ -952,7 +986,9 @@ class bybit(ccxt.async_support.bybit):
952
986
  async def watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={}) -> List[Trade]:
953
987
  """
954
988
  get the list of most recent trades for a list of symbols
955
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/trade
989
+
990
+ https://bybit-exchange.github.io/docs/v5/websocket/public/trade
991
+
956
992
  :param str[] symbols: unified symbol of the market to fetch trades for
957
993
  :param int [since]: timestamp in ms of the earliest trade to fetch
958
994
  :param int [limit]: the maximum amount of trades to fetch
@@ -985,8 +1021,11 @@ class bybit(ccxt.async_support.bybit):
985
1021
  async def un_watch_trades_for_symbols(self, symbols: Strings, params={}) -> Any:
986
1022
  """
987
1023
  unsubscribe from the trades channel
988
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/trade
1024
+
1025
+ https://bybit-exchange.github.io/docs/v5/websocket/public/trade
1026
+
989
1027
  :param str[] symbols: unified symbol of the market to unwatch the trades for
1028
+ :param dict [params]: extra parameters specific to the exchange API endpoint
990
1029
  :returns any: status of the unwatch request
991
1030
  """
992
1031
  await self.load_markets()
@@ -1008,8 +1047,11 @@ class bybit(ccxt.async_support.bybit):
1008
1047
  async def un_watch_trades(self, symbol: str, params={}) -> Any:
1009
1048
  """
1010
1049
  unsubscribe from the trades channel
1011
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/trade
1050
+
1051
+ https://bybit-exchange.github.io/docs/v5/websocket/public/trade
1052
+
1012
1053
  :param str symbol: unified symbol of the market to unwatch the trades for
1054
+ :param dict [params]: extra parameters specific to the exchange API endpoint
1013
1055
  :returns any: status of the unwatch request
1014
1056
  """
1015
1057
  await self.load_markets()
@@ -1134,7 +1176,9 @@ class bybit(ccxt.async_support.bybit):
1134
1176
  async def watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
1135
1177
  """
1136
1178
  watches information on multiple trades made by the user
1137
- :see: https://bybit-exchange.github.io/docs/v5/websocket/private/execution
1179
+
1180
+ https://bybit-exchange.github.io/docs/v5/websocket/private/execution
1181
+
1138
1182
  :param str symbol: unified market symbol of the market orders were made in
1139
1183
  :param int [since]: the earliest time in ms to fetch orders for
1140
1184
  :param int [limit]: the maximum number of order structures to retrieve
@@ -1164,7 +1208,9 @@ class bybit(ccxt.async_support.bybit):
1164
1208
  async def un_watch_my_trades(self, symbol: Str = None, params={}) -> Any:
1165
1209
  """
1166
1210
  unWatches information on multiple trades made by the user
1167
- :see: https://bybit-exchange.github.io/docs/v5/websocket/private/execution
1211
+
1212
+ https://bybit-exchange.github.io/docs/v5/websocket/private/execution
1213
+
1168
1214
  :param str symbol: unified market symbol of the market orders were made in
1169
1215
  :param dict [params]: extra parameters specific to the exchange API endpoint
1170
1216
  :param boolean [params.unifiedMargin]: use unified margin account
@@ -1280,9 +1326,13 @@ class bybit(ccxt.async_support.bybit):
1280
1326
 
1281
1327
  async def watch_positions(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={}) -> List[Position]:
1282
1328
  """
1283
- :see: https://bybit-exchange.github.io/docs/v5/websocket/private/position
1329
+
1330
+ https://bybit-exchange.github.io/docs/v5/websocket/private/position
1331
+
1284
1332
  watch all open positions
1285
1333
  :param str[] [symbols]: list of unified market symbols
1334
+ @param since
1335
+ @param limit
1286
1336
  :param dict params: extra parameters specific to the exchange API endpoint
1287
1337
  :returns dict[]: a list of `position structure <https://docs.ccxt.com/en/latest/manual.html#position-structure>`
1288
1338
  """
@@ -1418,7 +1468,9 @@ class bybit(ccxt.async_support.bybit):
1418
1468
  async def watch_liquidations(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Liquidation]:
1419
1469
  """
1420
1470
  watch the public liquidations of a trading pair
1421
- :see: https://bybit-exchange.github.io/docs/v5/websocket/public/liquidation
1471
+
1472
+ https://bybit-exchange.github.io/docs/v5/websocket/public/liquidation
1473
+
1422
1474
  :param str symbol: unified CCXT market symbol
1423
1475
  :param int [since]: the earliest time in ms to fetch liquidations for
1424
1476
  :param int [limit]: the maximum number of liquidation structures to retrieve
@@ -1494,7 +1546,9 @@ class bybit(ccxt.async_support.bybit):
1494
1546
  async def watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
1495
1547
  """
1496
1548
  watches information on multiple orders made by the user
1497
- :see: https://bybit-exchange.github.io/docs/v5/websocket/private/order
1549
+
1550
+ https://bybit-exchange.github.io/docs/v5/websocket/private/order
1551
+
1498
1552
  :param str symbol: unified market symbol of the market orders were made in
1499
1553
  :param int [since]: the earliest time in ms to fetch orders for
1500
1554
  :param int [limit]: the maximum number of order structures to retrieve
@@ -1523,7 +1577,9 @@ class bybit(ccxt.async_support.bybit):
1523
1577
  async def un_watch_orders(self, symbol: Str = None, params={}) -> Any:
1524
1578
  """
1525
1579
  unWatches information on multiple orders made by the user
1526
- :see: https://bybit-exchange.github.io/docs/v5/websocket/private/order
1580
+
1581
+ https://bybit-exchange.github.io/docs/v5/websocket/private/order
1582
+
1527
1583
  :param str symbol: unified market symbol of the market orders were made in
1528
1584
  :param dict [params]: extra parameters specific to the exchange API endpoint
1529
1585
  :param boolean [params.unifiedMargin]: use unified margin account
@@ -1817,7 +1873,9 @@ class bybit(ccxt.async_support.bybit):
1817
1873
  async def watch_balance(self, params={}) -> Balances:
1818
1874
  """
1819
1875
  watch balance and get the amount of funds available for trading or funds locked in orders
1820
- :see: https://bybit-exchange.github.io/docs/v5/websocket/private/wallet
1876
+
1877
+ https://bybit-exchange.github.io/docs/v5/websocket/private/wallet
1878
+
1821
1879
  :param dict [params]: extra parameters specific to the exchange API endpoint
1822
1880
  :returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
1823
1881
  """
ccxt/pro/cex.py CHANGED
@@ -62,7 +62,9 @@ class cex(ccxt.async_support.cex):
62
62
  async def watch_balance(self, params={}) -> Balances:
63
63
  """
64
64
  watch balance and get the amount of funds available for trading or funds locked in orders
65
- :see: https://cex.io/websocket-api#get-balance
65
+
66
+ https://cex.io/websocket-api#get-balance
67
+
66
68
  :param dict [params]: extra parameters specific to the exchange API endpoint
67
69
  :returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
68
70
  """
@@ -119,7 +121,9 @@ class cex(ccxt.async_support.cex):
119
121
  async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
120
122
  """
121
123
  get the list of most recent trades for a particular symbol. Note: can only watch one symbol at a time.
122
- :see: https://cex.io/websocket-api#old-pair-room
124
+
125
+ https://cex.io/websocket-api#old-pair-room
126
+
123
127
  :param str symbol: unified symbol of the market to fetch trades for
124
128
  :param int [since]: timestamp in ms of the earliest trade to fetch
125
129
  :param int [limit]: the maximum amount of trades to fetch
@@ -236,7 +240,9 @@ class cex(ccxt.async_support.cex):
236
240
 
237
241
  async def watch_ticker(self, symbol: str, params={}) -> Ticker:
238
242
  """
239
- :see: https://cex.io/websocket-api#ticker-subscription
243
+
244
+ https://cex.io/websocket-api#ticker-subscription
245
+
240
246
  watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
241
247
  :param str symbol: unified symbol of the market to fetch the ticker for
242
248
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -271,7 +277,9 @@ class cex(ccxt.async_support.cex):
271
277
 
272
278
  async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
273
279
  """
274
- :see: https://cex.io/websocket-api#ticker-subscription
280
+
281
+ https://cex.io/websocket-api#ticker-subscription
282
+
275
283
  watches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
276
284
  :param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
277
285
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -300,7 +308,9 @@ class cex(ccxt.async_support.cex):
300
308
 
301
309
  async def fetch_ticker_ws(self, symbol: str, params={}) -> Ticker:
302
310
  """
303
- :see: https://docs.cex.io/#ws-api-ticker-deprecated
311
+
312
+ https://docs.cex.io/#ws-api-ticker-deprecated
313
+
304
314
  fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
305
315
  :param str symbol: unified symbol of the market to fetch the ticker for
306
316
  :param dict [params]: extra parameters specific to the cex api endpoint
@@ -405,7 +415,9 @@ class cex(ccxt.async_support.cex):
405
415
 
406
416
  async def fetch_balance_ws(self, params={}) -> Balances:
407
417
  """
408
- :see: https://docs.cex.io/#ws-api-get-balance
418
+
419
+ https://docs.cex.io/#ws-api-get-balance
420
+
409
421
  query for balance and get the amount of funds available for trading or funds locked in orders
410
422
  :param dict [params]: extra parameters specific to the cex api endpoint
411
423
  :returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
@@ -423,7 +435,9 @@ class cex(ccxt.async_support.cex):
423
435
  async def watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
424
436
  """
425
437
  get the list of orders associated with the user. Note: In CEX.IO system, orders can be present in trade engine or in archive database. There can be time periods(~2 seconds or more), when order is done/canceled, but still not moved to archive database. That means, you cannot see it using calls: archived-orders/open-orders.
426
- :see: https://docs.cex.io/#ws-api-open-orders
438
+
439
+ https://docs.cex.io/#ws-api-open-orders
440
+
427
441
  :param str symbol: unified symbol of the market to fetch trades for
428
442
  :param int [since]: timestamp in ms of the earliest trade to fetch
429
443
  :param int [limit]: the maximum amount of trades to fetch
@@ -457,7 +471,9 @@ class cex(ccxt.async_support.cex):
457
471
  async def watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
458
472
  """
459
473
  get the list of trades associated with the user. Note: In CEX.IO system, orders can be present in trade engine or in archive database. There can be time periods(~2 seconds or more), when order is done/canceled, but still not moved to archive database. That means, you cannot see it using calls: archived-orders/open-orders.
460
- :see: https://docs.cex.io/#ws-api-open-orders
474
+
475
+ https://docs.cex.io/#ws-api-open-orders
476
+
461
477
  :param str symbol: unified symbol of the market to fetch trades for
462
478
  :param int [since]: timestamp in ms of the earliest trade to fetch
463
479
  :param int [limit]: the maximum amount of trades to fetch
@@ -869,7 +885,9 @@ class cex(ccxt.async_support.cex):
869
885
  async def watch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
870
886
  """
871
887
  watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
872
- :see: https://cex.io/websocket-api#orderbook-subscribe
888
+
889
+ https://cex.io/websocket-api#orderbook-subscribe
890
+
873
891
  :param str symbol: unified symbol of the market to fetch the order book for
874
892
  :param int [limit]: the maximum amount of order book entries to return
875
893
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -990,7 +1008,9 @@ class cex(ccxt.async_support.cex):
990
1008
 
991
1009
  async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
992
1010
  """
993
- :see: https://cex.io/websocket-api#minute-data
1011
+
1012
+ https://cex.io/websocket-api#minute-data
1013
+
994
1014
  watches historical candlestick data containing the open, high, low, and close price, and the volume of a market. It will return the last 120 minutes with the selected timeframe and then 1m candle updates after that.
995
1015
  :param str symbol: unified symbol of the market to fetch OHLCV data for
996
1016
  :param str timeframe: the length of time each candle represents.
@@ -1129,7 +1149,9 @@ class cex(ccxt.async_support.cex):
1129
1149
  async def fetch_order_ws(self, id: str, symbol: Str = None, params={}):
1130
1150
  """
1131
1151
  fetches information on an order made by the user
1132
- :see: https://docs.cex.io/#ws-api-get-order
1152
+
1153
+ https://docs.cex.io/#ws-api-get-order
1154
+
1133
1155
  :param str id: the order id
1134
1156
  :param str symbol: not used by cex fetchOrder
1135
1157
  :param dict [params]: extra parameters specific to the cex api endpoint
@@ -1155,7 +1177,9 @@ class cex(ccxt.async_support.cex):
1155
1177
 
1156
1178
  async def fetch_open_orders_ws(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
1157
1179
  """
1158
- :see: https://docs.cex.io/#ws-api-open-orders
1180
+
1181
+ https://docs.cex.io/#ws-api-open-orders
1182
+
1159
1183
  fetch all unfilled currently open orders
1160
1184
  :param str symbol: unified market symbol
1161
1185
  :param int [since]: the earliest time in ms to fetch open orders for
@@ -1183,7 +1207,9 @@ class cex(ccxt.async_support.cex):
1183
1207
 
1184
1208
  async def create_order_ws(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}) -> Order:
1185
1209
  """
1186
- :see: https://docs.cex.io/#ws-api-order-placement
1210
+
1211
+ https://docs.cex.io/#ws-api-order-placement
1212
+
1187
1213
  create a trade order
1188
1214
  :param str symbol: unified symbol of the market to create an order in
1189
1215
  :param str type: 'market' or 'limit'
@@ -1218,7 +1244,9 @@ class cex(ccxt.async_support.cex):
1218
1244
  async def edit_order_ws(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={}) -> Order:
1219
1245
  """
1220
1246
  edit a trade order
1221
- :see: https://docs.cex.io/#ws-api-cancel-replace
1247
+
1248
+ https://docs.cex.io/#ws-api-cancel-replace
1249
+
1222
1250
  :param str id: order id
1223
1251
  :param str symbol: unified symbol of the market to create an order in
1224
1252
  :param str type: 'market' or 'limit'
@@ -1254,7 +1282,9 @@ class cex(ccxt.async_support.cex):
1254
1282
 
1255
1283
  async def cancel_order_ws(self, id: str, symbol: Str = None, params={}):
1256
1284
  """
1257
- :see: https://docs.cex.io/#ws-api-order-cancel
1285
+
1286
+ https://docs.cex.io/#ws-api-order-cancel
1287
+
1258
1288
  cancels an open order
1259
1289
  :param str id: order id
1260
1290
  :param str symbol: not used by cex cancelOrder()
@@ -1282,7 +1312,9 @@ class cex(ccxt.async_support.cex):
1282
1312
  async def cancel_orders_ws(self, ids: List[str], symbol: Str = None, params={}):
1283
1313
  """
1284
1314
  cancel multiple orders
1285
- :see: https://docs.cex.io/#ws-api-mass-cancel-place
1315
+
1316
+ https://docs.cex.io/#ws-api-mass-cancel-place
1317
+
1286
1318
  :param str[] ids: order ids
1287
1319
  :param str symbol: not used by cex cancelOrders()
1288
1320
  :param dict [params]: extra parameters specific to the cex api endpoint
ccxt/pro/coinbase.py CHANGED
@@ -56,11 +56,14 @@ class coinbase(ccxt.async_support.coinbase):
56
56
 
57
57
  async def subscribe(self, name: str, isPrivate: bool, symbol=None, params={}):
58
58
  """
59
- * @ignore
59
+ @ignore
60
60
  subscribes to a websocket channel
61
- :see: https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-overview#subscribe
61
+
62
+ https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-overview#subscribe
63
+
62
64
  :param str name: the name of the channel
63
- :param string|str[] [symbol]: unified market symbol
65
+ :param boolean isPrivate: whether the channel is private or not
66
+ :param str [symbol]: unified market symbol
64
67
  :param dict [params]: extra parameters specific to the exchange API endpoint
65
68
  :returns dict: subscription to a websocket channel
66
69
  """
@@ -92,10 +95,13 @@ class coinbase(ccxt.async_support.coinbase):
92
95
 
93
96
  async def subscribe_multiple(self, name: str, isPrivate: bool, symbols: Strings = None, params={}):
94
97
  """
95
- * @ignore
98
+ @ignore
96
99
  subscribes to a websocket channel
97
- :see: https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-overview#subscribe
100
+
101
+ https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-overview#subscribe
102
+
98
103
  :param str name: the name of the channel
104
+ :param boolean isPrivate: whether the channel is private or not
99
105
  :param str[] [symbols]: unified market symbol
100
106
  :param dict [params]: extra parameters specific to the exchange API endpoint
101
107
  :returns dict: subscription to a websocket channel
@@ -147,7 +153,9 @@ class coinbase(ccxt.async_support.coinbase):
147
153
  async def watch_ticker(self, symbol: str, params={}) -> Ticker:
148
154
  """
149
155
  watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
150
- :see: https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#ticker-channel
156
+
157
+ https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#ticker-channel
158
+
151
159
  :param str [symbol]: unified symbol of the market to fetch the ticker for
152
160
  :param dict [params]: extra parameters specific to the exchange API endpoint
153
161
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
@@ -158,7 +166,9 @@ class coinbase(ccxt.async_support.coinbase):
158
166
  async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
159
167
  """
160
168
  watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
161
- :see: https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#ticker-batch-channel
169
+
170
+ https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#ticker-batch-channel
171
+
162
172
  :param str[] [symbols]: unified symbol of the market to fetch the ticker for
163
173
  :param dict [params]: extra parameters specific to the exchange API endpoint
164
174
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
@@ -345,7 +355,9 @@ class coinbase(ccxt.async_support.coinbase):
345
355
  async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
346
356
  """
347
357
  get the list of most recent trades for a particular symbol
348
- :see: https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#market-trades-channel
358
+
359
+ https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#market-trades-channel
360
+
349
361
  :param str symbol: unified symbol of the market to fetch trades for
350
362
  :param int [since]: timestamp in ms of the earliest trade to fetch
351
363
  :param int [limit]: the maximum amount of trades to fetch
@@ -363,7 +375,9 @@ class coinbase(ccxt.async_support.coinbase):
363
375
  async def watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={}) -> List[Trade]:
364
376
  """
365
377
  get the list of most recent trades for a particular symbol
366
- :see: https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#market-trades-channel
378
+
379
+ https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#market-trades-channel
380
+
367
381
  :param str[] symbols: unified symbol of the market to fetch trades for
368
382
  :param int [since]: timestamp in ms of the earliest trade to fetch
369
383
  :param int [limit]: the maximum amount of trades to fetch
@@ -382,7 +396,9 @@ class coinbase(ccxt.async_support.coinbase):
382
396
  async def watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
383
397
  """
384
398
  watches information on multiple orders made by the user
385
- :see: https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#user-channel
399
+
400
+ https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#user-channel
401
+
386
402
  :param str [symbol]: unified market symbol of the market orders were made in
387
403
  :param int [since]: the earliest time in ms to fetch orders for
388
404
  :param int [limit]: the maximum number of order structures to retrieve
@@ -399,7 +415,9 @@ class coinbase(ccxt.async_support.coinbase):
399
415
  async def watch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
400
416
  """
401
417
  watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
402
- :see: https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#level2-channel
418
+
419
+ https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#level2-channel
420
+
403
421
  :param str symbol: unified symbol of the market to fetch the order book for
404
422
  :param int [limit]: the maximum amount of order book entries to return
405
423
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -415,7 +433,9 @@ class coinbase(ccxt.async_support.coinbase):
415
433
  async def watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={}) -> OrderBook:
416
434
  """
417
435
  watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
418
- :see: https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#level2-channel
436
+
437
+ https://docs.cloud.coinbase.com/advanced-trade-api/docs/ws-channels#level2-channel
438
+
419
439
  :param str[] symbols: unified array of symbols
420
440
  :param int [limit]: the maximum amount of order book entries to return
421
441
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -163,7 +163,7 @@ class coinbaseexchange(ccxt.async_support.coinbaseexchange):
163
163
  async def watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={}) -> List[Trade]:
164
164
  """
165
165
  get the list of most recent trades for a particular symbol
166
- :param str symbol: unified symbol of the market to fetch trades for
166
+ :param str[] symbols: unified symbol of the market to fetch trades for
167
167
  :param int [since]: timestamp in ms of the earliest trade to fetch
168
168
  :param int [limit]: the maximum amount of trades to fetch
169
169
  :param dict [params]: extra parameters specific to the exchange API endpoint