ccxt 4.4.30__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 (267) hide show
  1. ccxt/__init__.py +1 -1
  2. ccxt/ace.py +36 -12
  3. ccxt/alpaca.py +62 -22
  4. ccxt/ascendex.py +65 -30
  5. ccxt/async_support/__init__.py +1 -1
  6. ccxt/async_support/ace.py +36 -12
  7. ccxt/async_support/alpaca.py +62 -22
  8. ccxt/async_support/ascendex.py +65 -30
  9. ccxt/async_support/base/exchange.py +3 -3
  10. ccxt/async_support/bigone.py +71 -27
  11. ccxt/async_support/binance.py +555 -323
  12. ccxt/async_support/bingx.py +208 -108
  13. ccxt/async_support/bit2c.py +34 -12
  14. ccxt/async_support/bitbank.py +42 -14
  15. ccxt/async_support/bitbns.py +17 -9
  16. ccxt/async_support/bitfinex.py +68 -24
  17. ccxt/async_support/bitfinex2.py +116 -44
  18. ccxt/async_support/bitflyer.py +54 -18
  19. ccxt/async_support/bitget.py +277 -145
  20. ccxt/async_support/bithumb.py +39 -14
  21. ccxt/async_support/bitmart.py +145 -79
  22. ccxt/async_support/bitmex.py +90 -30
  23. ccxt/async_support/bitopro.py +66 -22
  24. ccxt/async_support/bitrue.py +109 -57
  25. ccxt/async_support/bitso.py +55 -19
  26. ccxt/async_support/bitstamp.py +84 -36
  27. ccxt/async_support/bitteam.py +51 -17
  28. ccxt/async_support/bitvavo.py +57 -19
  29. ccxt/async_support/bl3p.py +26 -10
  30. ccxt/async_support/blockchaincom.py +63 -21
  31. ccxt/async_support/blofin.py +95 -38
  32. ccxt/async_support/btcalpha.py +48 -16
  33. ccxt/async_support/btcbox.py +27 -9
  34. ccxt/async_support/btcmarkets.py +57 -19
  35. ccxt/async_support/btcturk.py +36 -12
  36. ccxt/async_support/bybit.py +251 -95
  37. ccxt/async_support/cex.py +65 -22
  38. ccxt/async_support/coinbase.py +138 -56
  39. ccxt/async_support/coinbaseexchange.py +76 -28
  40. ccxt/async_support/coinbaseinternational.py +75 -27
  41. ccxt/async_support/coincatch.py +191 -97
  42. ccxt/async_support/coincheck.py +33 -11
  43. ccxt/async_support/coinex.py +212 -101
  44. ccxt/async_support/coinlist.py +87 -30
  45. ccxt/async_support/coinmate.py +55 -24
  46. ccxt/async_support/coinmetro.py +52 -18
  47. ccxt/async_support/coinone.py +27 -10
  48. ccxt/async_support/coinsph.py +73 -27
  49. ccxt/async_support/coinspot.py +25 -9
  50. ccxt/async_support/cryptocom.py +103 -38
  51. ccxt/async_support/currencycom.py +70 -23
  52. ccxt/async_support/delta.py +90 -30
  53. ccxt/async_support/deribit.py +131 -50
  54. ccxt/async_support/digifinex.py +114 -51
  55. ccxt/async_support/exmo.py +104 -45
  56. ccxt/async_support/gate.py +298 -155
  57. ccxt/async_support/gemini.py +57 -20
  58. ccxt/async_support/hashkey.py +151 -66
  59. ccxt/async_support/hitbtc.py +156 -73
  60. ccxt/async_support/hollaex.py +76 -25
  61. ccxt/async_support/htx.py +297 -240
  62. ccxt/async_support/huobijp.py +1 -0
  63. ccxt/async_support/hyperliquid.py +94 -38
  64. ccxt/async_support/idex.py +73 -24
  65. ccxt/async_support/independentreserve.py +12 -5
  66. ccxt/async_support/indodax.py +53 -16
  67. ccxt/async_support/kraken.py +107 -35
  68. ccxt/async_support/krakenfutures.py +88 -34
  69. ccxt/async_support/kucoin.py +211 -109
  70. ccxt/async_support/kucoinfutures.py +119 -42
  71. ccxt/async_support/kuna.py +80 -39
  72. ccxt/async_support/latoken.py +70 -33
  73. ccxt/async_support/lbank.py +89 -38
  74. ccxt/async_support/luno.py +54 -19
  75. ccxt/async_support/lykke.py +54 -19
  76. ccxt/async_support/mercado.py +1 -0
  77. ccxt/async_support/mexc.py +226 -108
  78. ccxt/async_support/ndax.py +58 -19
  79. ccxt/async_support/novadax.py +67 -22
  80. ccxt/async_support/oceanex.py +58 -19
  81. ccxt/async_support/okcoin.py +81 -38
  82. ccxt/async_support/okx.py +270 -109
  83. ccxt/async_support/onetrading.py +3 -1
  84. ccxt/async_support/oxfun.py +95 -36
  85. ccxt/async_support/p2b.py +49 -23
  86. ccxt/async_support/paradex.py +75 -27
  87. ccxt/async_support/paymium.py +31 -11
  88. ccxt/async_support/phemex.py +91 -41
  89. ccxt/async_support/poloniex.py +80 -30
  90. ccxt/async_support/poloniexfutures.py +72 -30
  91. ccxt/async_support/probit.py +64 -22
  92. ccxt/async_support/timex.py +58 -19
  93. ccxt/async_support/tokocrypto.py +63 -22
  94. ccxt/async_support/tradeogre.py +7 -2
  95. ccxt/async_support/upbit.py +72 -25
  96. ccxt/async_support/vertex.py +74 -28
  97. ccxt/async_support/wavesexchange.py +29 -8
  98. ccxt/async_support/wazirx.py +51 -17
  99. ccxt/async_support/whitebit.py +105 -41
  100. ccxt/async_support/woo.py +162 -65
  101. ccxt/async_support/woofipro.py +118 -49
  102. ccxt/async_support/xt.py +150 -73
  103. ccxt/async_support/yobit.py +49 -16
  104. ccxt/async_support/zaif.py +30 -10
  105. ccxt/async_support/zonda.py +46 -16
  106. ccxt/base/exchange.py +34 -34
  107. ccxt/base/types.py +1 -0
  108. ccxt/bigone.py +71 -27
  109. ccxt/binance.py +555 -323
  110. ccxt/bingx.py +208 -108
  111. ccxt/bit2c.py +34 -12
  112. ccxt/bitbank.py +42 -14
  113. ccxt/bitbns.py +17 -9
  114. ccxt/bitfinex.py +68 -24
  115. ccxt/bitfinex2.py +116 -44
  116. ccxt/bitflyer.py +54 -18
  117. ccxt/bitget.py +277 -145
  118. ccxt/bithumb.py +39 -14
  119. ccxt/bitmart.py +145 -79
  120. ccxt/bitmex.py +90 -30
  121. ccxt/bitopro.py +66 -22
  122. ccxt/bitrue.py +109 -57
  123. ccxt/bitso.py +55 -19
  124. ccxt/bitstamp.py +84 -36
  125. ccxt/bitteam.py +51 -17
  126. ccxt/bitvavo.py +57 -19
  127. ccxt/bl3p.py +26 -10
  128. ccxt/blockchaincom.py +63 -21
  129. ccxt/blofin.py +95 -38
  130. ccxt/btcalpha.py +48 -16
  131. ccxt/btcbox.py +27 -9
  132. ccxt/btcmarkets.py +57 -19
  133. ccxt/btcturk.py +36 -12
  134. ccxt/bybit.py +251 -95
  135. ccxt/cex.py +65 -22
  136. ccxt/coinbase.py +138 -56
  137. ccxt/coinbaseexchange.py +76 -28
  138. ccxt/coinbaseinternational.py +75 -27
  139. ccxt/coincatch.py +191 -97
  140. ccxt/coincheck.py +33 -11
  141. ccxt/coinex.py +212 -101
  142. ccxt/coinlist.py +87 -30
  143. ccxt/coinmate.py +55 -24
  144. ccxt/coinmetro.py +52 -18
  145. ccxt/coinone.py +27 -10
  146. ccxt/coinsph.py +73 -27
  147. ccxt/coinspot.py +25 -9
  148. ccxt/cryptocom.py +103 -38
  149. ccxt/currencycom.py +70 -23
  150. ccxt/delta.py +90 -30
  151. ccxt/deribit.py +131 -50
  152. ccxt/digifinex.py +114 -51
  153. ccxt/exmo.py +104 -45
  154. ccxt/gate.py +298 -155
  155. ccxt/gemini.py +57 -20
  156. ccxt/hashkey.py +151 -66
  157. ccxt/hitbtc.py +156 -73
  158. ccxt/hollaex.py +76 -25
  159. ccxt/htx.py +297 -240
  160. ccxt/huobijp.py +1 -0
  161. ccxt/hyperliquid.py +94 -38
  162. ccxt/idex.py +73 -24
  163. ccxt/independentreserve.py +12 -5
  164. ccxt/indodax.py +53 -16
  165. ccxt/kraken.py +107 -35
  166. ccxt/krakenfutures.py +88 -34
  167. ccxt/kucoin.py +211 -109
  168. ccxt/kucoinfutures.py +119 -42
  169. ccxt/kuna.py +80 -39
  170. ccxt/latoken.py +70 -33
  171. ccxt/lbank.py +89 -38
  172. ccxt/luno.py +54 -19
  173. ccxt/lykke.py +54 -19
  174. ccxt/mercado.py +1 -0
  175. ccxt/mexc.py +226 -108
  176. ccxt/ndax.py +58 -19
  177. ccxt/novadax.py +67 -22
  178. ccxt/oceanex.py +58 -19
  179. ccxt/okcoin.py +81 -38
  180. ccxt/okx.py +270 -109
  181. ccxt/onetrading.py +3 -1
  182. ccxt/oxfun.py +95 -36
  183. ccxt/p2b.py +49 -23
  184. ccxt/paradex.py +75 -27
  185. ccxt/paymium.py +31 -11
  186. ccxt/phemex.py +91 -41
  187. ccxt/poloniex.py +80 -30
  188. ccxt/poloniexfutures.py +72 -30
  189. ccxt/pro/__init__.py +1 -1
  190. ccxt/pro/alpaca.py +15 -5
  191. ccxt/pro/ascendex.py +18 -6
  192. ccxt/pro/binance.py +200 -119
  193. ccxt/pro/bingx.py +44 -24
  194. ccxt/pro/bitfinex.py +13 -5
  195. ccxt/pro/bitget.py +75 -36
  196. ccxt/pro/bithumb.py +12 -4
  197. ccxt/pro/bitmart.py +44 -20
  198. ccxt/pro/bitmex.py +42 -14
  199. ccxt/pro/bitopro.py +15 -5
  200. ccxt/pro/bitrue.py +7 -3
  201. ccxt/pro/bitvavo.py +51 -17
  202. ccxt/pro/blockchaincom.py +18 -6
  203. ccxt/pro/blofin.py +36 -12
  204. ccxt/pro/bybit.py +100 -42
  205. ccxt/pro/cex.py +48 -16
  206. ccxt/pro/coinbase.py +32 -12
  207. ccxt/pro/coinbaseexchange.py +1 -1
  208. ccxt/pro/coinbaseinternational.py +34 -14
  209. ccxt/pro/coincatch.py +54 -19
  210. ccxt/pro/coincheck.py +6 -2
  211. ccxt/pro/coinex.py +40 -20
  212. ccxt/pro/coinone.py +9 -3
  213. ccxt/pro/cryptocom.py +70 -26
  214. ccxt/pro/deribit.py +36 -12
  215. ccxt/pro/exmo.py +10 -4
  216. ccxt/pro/gate.py +64 -30
  217. ccxt/pro/gemini.py +21 -7
  218. ccxt/pro/hashkey.py +26 -8
  219. ccxt/pro/hitbtc.py +61 -37
  220. ccxt/pro/hollaex.py +15 -5
  221. ccxt/pro/htx.py +39 -21
  222. ccxt/pro/hyperliquid.py +41 -14
  223. ccxt/pro/kraken.py +49 -17
  224. ccxt/pro/krakenfutures.py +47 -24
  225. ccxt/pro/kucoin.py +60 -31
  226. ccxt/pro/kucoinfutures.py +41 -19
  227. ccxt/pro/lbank.py +27 -9
  228. ccxt/pro/luno.py +3 -1
  229. ccxt/pro/mexc.py +35 -17
  230. ccxt/pro/ndax.py +12 -4
  231. ccxt/pro/okcoin.py +18 -6
  232. ccxt/pro/okx.py +76 -28
  233. ccxt/pro/onetrading.py +21 -7
  234. ccxt/pro/oxfun.py +54 -20
  235. ccxt/pro/p2b.py +23 -11
  236. ccxt/pro/paradex.py +12 -4
  237. ccxt/pro/phemex.py +31 -19
  238. ccxt/pro/poloniex.py +50 -22
  239. ccxt/pro/poloniexfutures.py +17 -7
  240. ccxt/pro/probit.py +18 -6
  241. ccxt/pro/upbit.py +25 -9
  242. ccxt/pro/vertex.py +20 -6
  243. ccxt/pro/wazirx.py +21 -7
  244. ccxt/pro/whitebit.py +25 -9
  245. ccxt/pro/woo.py +32 -12
  246. ccxt/pro/woofipro.py +35 -13
  247. ccxt/pro/xt.py +46 -26
  248. ccxt/probit.py +64 -22
  249. ccxt/timex.py +58 -19
  250. ccxt/tokocrypto.py +63 -22
  251. ccxt/tradeogre.py +7 -2
  252. ccxt/upbit.py +72 -25
  253. ccxt/vertex.py +74 -28
  254. ccxt/wavesexchange.py +29 -8
  255. ccxt/wazirx.py +51 -17
  256. ccxt/whitebit.py +105 -41
  257. ccxt/woo.py +162 -65
  258. ccxt/woofipro.py +118 -49
  259. ccxt/xt.py +150 -73
  260. ccxt/yobit.py +49 -16
  261. ccxt/zaif.py +30 -10
  262. ccxt/zonda.py +46 -16
  263. {ccxt-4.4.30.dist-info → ccxt-4.4.31.dist-info}/METADATA +5 -5
  264. {ccxt-4.4.30.dist-info → ccxt-4.4.31.dist-info}/RECORD +267 -267
  265. {ccxt-4.4.30.dist-info → ccxt-4.4.31.dist-info}/LICENSE.txt +0 -0
  266. {ccxt-4.4.30.dist-info → ccxt-4.4.31.dist-info}/WHEEL +0 -0
  267. {ccxt-4.4.30.dist-info → ccxt-4.4.31.dist-info}/top_level.txt +0 -0
@@ -425,7 +425,9 @@ class cryptocom(Exchange, ImplicitAPI):
425
425
 
426
426
  async def fetch_markets(self, params={}) -> List[Market]:
427
427
  """
428
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-instruments
428
+
429
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-instruments
430
+
429
431
  retrieves data on all markets for cryptocom
430
432
  :param dict [params]: extra parameters specific to the exchange API endpoint
431
433
  :returns dict[]: an array of objects representing market data
@@ -613,8 +615,10 @@ class cryptocom(Exchange, ImplicitAPI):
613
615
  async def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
614
616
  """
615
617
  fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
616
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-tickers
617
- :see: https://exchange-docs.crypto.com/derivatives/index.html#public-get-tickers
618
+
619
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-tickers
620
+ https://exchange-docs.crypto.com/derivatives/index.html#public-get-tickers
621
+
618
622
  :param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
619
623
  :param dict [params]: extra parameters specific to the exchange API endpoint
620
624
  :returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
@@ -664,7 +668,9 @@ class cryptocom(Exchange, ImplicitAPI):
664
668
 
665
669
  async def fetch_ticker(self, symbol: str, params={}) -> Ticker:
666
670
  """
667
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-tickers
671
+
672
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-tickers
673
+
668
674
  fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
669
675
  :param str symbol: unified symbol of the market to fetch the ticker for
670
676
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -678,7 +684,9 @@ class cryptocom(Exchange, ImplicitAPI):
678
684
  async def fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
679
685
  """
680
686
  fetches information on multiple orders made by the user
681
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-order-history
687
+
688
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-order-history
689
+
682
690
  :param str symbol: unified market symbol of the market the orders were made in
683
691
  :param int [since]: the earliest time in ms to fetch orders for, max date range is one day
684
692
  :param int [limit]: the maximum number of order structures to retrieve, default 100 max 100
@@ -752,7 +760,9 @@ class cryptocom(Exchange, ImplicitAPI):
752
760
  async def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
753
761
  """
754
762
  get a list of the most recent trades for a particular symbol
755
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-trades
763
+
764
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-trades
765
+
756
766
  :param str symbol: unified symbol of the market to fetch trades for
757
767
  :param int [since]: timestamp in ms of the earliest trade to fetch, maximum date range is one day
758
768
  :param int [limit]: the maximum number of trades to fetch
@@ -806,7 +816,9 @@ class cryptocom(Exchange, ImplicitAPI):
806
816
  async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
807
817
  """
808
818
  fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
809
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-candlestick
819
+
820
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-candlestick
821
+
810
822
  :param str symbol: unified symbol of the market to fetch OHLCV data for
811
823
  :param str timeframe: the length of time each candle represents
812
824
  :param int [since]: timestamp in ms of the earliest candle to fetch
@@ -871,7 +883,9 @@ class cryptocom(Exchange, ImplicitAPI):
871
883
  async def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
872
884
  """
873
885
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
874
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-book
886
+
887
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-book
888
+
875
889
  :param str symbol: unified symbol of the market to fetch the order book for
876
890
  :param int [limit]: the number of order book entries to return, max 50
877
891
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -927,7 +941,9 @@ class cryptocom(Exchange, ImplicitAPI):
927
941
  async def fetch_balance(self, params={}) -> Balances:
928
942
  """
929
943
  query for balance and get the amount of funds available for trading or funds locked in orders
930
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-user-balance
944
+
945
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-user-balance
946
+
931
947
  :param dict [params]: extra parameters specific to the exchange API endpoint
932
948
  :returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
933
949
  """
@@ -981,7 +997,10 @@ class cryptocom(Exchange, ImplicitAPI):
981
997
  async def fetch_order(self, id: str, symbol: Str = None, params={}):
982
998
  """
983
999
  fetches information on an order made by the user
984
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-order-detail
1000
+
1001
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-order-detail
1002
+
1003
+ :param str id: order id
985
1004
  :param str symbol: unified symbol of the market the order was made in
986
1005
  :param dict [params]: extra parameters specific to the exchange API endpoint
987
1006
  :returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
@@ -1115,7 +1134,9 @@ class cryptocom(Exchange, ImplicitAPI):
1115
1134
  async def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
1116
1135
  """
1117
1136
  create a trade order
1118
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-create-order
1137
+
1138
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-create-order
1139
+
1119
1140
  :param str symbol: unified symbol of the market to create an order in
1120
1141
  :param str type: 'market', 'limit', 'stop_loss', 'stop_limit', 'take_profit', 'take_profit_limit'
1121
1142
  :param str side: 'buy' or 'sell'
@@ -1150,9 +1171,12 @@ class cryptocom(Exchange, ImplicitAPI):
1150
1171
  async def create_orders(self, orders: List[OrderRequest], params={}):
1151
1172
  """
1152
1173
  create a list of trade orders
1153
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-create-order-list-list
1154
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-create-order-list-oco
1174
+
1175
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-create-order-list-list
1176
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-create-order-list-oco
1177
+
1155
1178
  :param Array orders: list of orders to create, each object should contain the parameters required by createOrder, namely symbol, type, side, amount, price and params
1179
+ :param dict [params]: extra parameters specific to the exchange API endpoint
1156
1180
  :returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
1157
1181
  """
1158
1182
  await self.load_markets()
@@ -1320,7 +1344,9 @@ class cryptocom(Exchange, ImplicitAPI):
1320
1344
  async def cancel_all_orders(self, symbol: Str = None, params={}):
1321
1345
  """
1322
1346
  cancel all open orders
1323
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-all-orders
1347
+
1348
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-all-orders
1349
+
1324
1350
  :param str symbol: unified market symbol of the orders to cancel
1325
1351
  :param dict [params]: extra parameters specific to the exchange API endpoint
1326
1352
  :returns dict} Returns exchange raw message{@link https://docs.ccxt.com/#/?id=order-structure:
@@ -1336,7 +1362,9 @@ class cryptocom(Exchange, ImplicitAPI):
1336
1362
  async def cancel_order(self, id: str, symbol: Str = None, params={}):
1337
1363
  """
1338
1364
  cancels an open order
1339
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-order
1365
+
1366
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-order
1367
+
1340
1368
  :param str id: the order id of the order to cancel
1341
1369
  :param str [symbol]: unified symbol of the market the order was made in
1342
1370
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -1368,7 +1396,9 @@ class cryptocom(Exchange, ImplicitAPI):
1368
1396
  async def cancel_orders(self, ids, symbol: Str = None, params={}):
1369
1397
  """
1370
1398
  cancel multiple orders
1371
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-order-list-list
1399
+
1400
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-order-list-list
1401
+
1372
1402
  :param str[] ids: order ids
1373
1403
  :param str symbol: unified market symbol
1374
1404
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -1397,7 +1427,9 @@ class cryptocom(Exchange, ImplicitAPI):
1397
1427
  async def cancel_orders_for_symbols(self, orders: List[CancellationRequest], params={}):
1398
1428
  """
1399
1429
  cancel multiple orders for multiple symbols
1400
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-order-list-list
1430
+
1431
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-cancel-order-list-list
1432
+
1401
1433
  :param CancellationRequest[] orders: each order should contain the parameters required by cancelOrder namely id and symbol, example [{"id": "a", "symbol": "BTC/USDT"}, {"id": "b", "symbol": "ETH/USDT"}]
1402
1434
  :param dict [params]: extra parameters specific to the exchange API endpoint
1403
1435
  :returns dict: an list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
@@ -1425,7 +1457,9 @@ class cryptocom(Exchange, ImplicitAPI):
1425
1457
  async def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
1426
1458
  """
1427
1459
  fetch all unfilled currently open orders
1428
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-open-orders
1460
+
1461
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-open-orders
1462
+
1429
1463
  :param str symbol: unified market symbol
1430
1464
  :param int [since]: the earliest time in ms to fetch open orders for
1431
1465
  :param int [limit]: the maximum number of open order structures to retrieve
@@ -1483,7 +1517,9 @@ class cryptocom(Exchange, ImplicitAPI):
1483
1517
  async def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
1484
1518
  """
1485
1519
  fetch all trades made by the user
1486
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-trades
1520
+
1521
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-trades
1522
+
1487
1523
  :param str symbol: unified market symbol
1488
1524
  :param int [since]: the earliest time in ms to fetch trades for, maximum date range is one day
1489
1525
  :param int [limit]: the maximum number of trade structures to retrieve
@@ -1559,7 +1595,9 @@ class cryptocom(Exchange, ImplicitAPI):
1559
1595
  async def withdraw(self, code: str, amount: float, address: str, tag=None, params={}) -> Transaction:
1560
1596
  """
1561
1597
  make a withdrawal
1562
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-create-withdrawal
1598
+
1599
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-create-withdrawal
1600
+
1563
1601
  :param str code: unified currency code
1564
1602
  :param float amount: the amount to withdraw
1565
1603
  :param str address: the address to withdraw to
@@ -1605,7 +1643,9 @@ class cryptocom(Exchange, ImplicitAPI):
1605
1643
  async def fetch_deposit_addresses_by_network(self, code: str, params={}) -> List[DepositAddress]:
1606
1644
  """
1607
1645
  fetch a dictionary of addresses for a currency, indexed by network
1608
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-deposit-address
1646
+
1647
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-deposit-address
1648
+
1609
1649
  :param str code: unified currency code of the currency for the deposit address
1610
1650
  :param dict [params]: extra parameters specific to the exchange API endpoint
1611
1651
  :returns dict: a dictionary of `address structures <https://docs.ccxt.com/#/?id=address-structure>` indexed by the network
@@ -1662,7 +1702,9 @@ class cryptocom(Exchange, ImplicitAPI):
1662
1702
  async def fetch_deposit_address(self, code: str, params={}) -> DepositAddress:
1663
1703
  """
1664
1704
  fetch the deposit address for a currency associated with self account
1665
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-deposit-address
1705
+
1706
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-deposit-address
1707
+
1666
1708
  :param str code: unified currency code
1667
1709
  :param dict [params]: extra parameters specific to the exchange API endpoint
1668
1710
  :returns dict: an `address structure <https://docs.ccxt.com/#/?id=address-structure>`
@@ -1679,7 +1721,9 @@ class cryptocom(Exchange, ImplicitAPI):
1679
1721
  async def fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
1680
1722
  """
1681
1723
  fetch all deposits made to an account
1682
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-deposit-history
1724
+
1725
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-deposit-history
1726
+
1683
1727
  :param str code: unified currency code
1684
1728
  :param int [since]: the earliest time in ms to fetch deposits for
1685
1729
  :param int [limit]: the maximum number of deposits structures to retrieve
@@ -1732,7 +1776,9 @@ class cryptocom(Exchange, ImplicitAPI):
1732
1776
  async def fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
1733
1777
  """
1734
1778
  fetch all withdrawals made from an account
1735
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-withdrawal-history
1779
+
1780
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-withdrawal-history
1781
+
1736
1782
  :param str code: unified currency code
1737
1783
  :param int [since]: the earliest time in ms to fetch withdrawals for
1738
1784
  :param int [limit]: the maximum number of withdrawals structures to retrieve
@@ -2144,7 +2190,7 @@ class cryptocom(Exchange, ImplicitAPI):
2144
2190
 
2145
2191
  def custom_handle_margin_mode_and_params(self, methodName, params={}):
2146
2192
  """
2147
- * @ignore
2193
+ @ignore
2148
2194
  marginMode specified by params["marginMode"], self.options["marginMode"], self.options["defaultMarginMode"], params["margin"] = True or self.options["defaultType"] = 'margin'
2149
2195
  :param dict [params]: extra parameters specific to the exchange API endpoint
2150
2196
  :returns Array: the marginMode in lowercase
@@ -2211,7 +2257,9 @@ class cryptocom(Exchange, ImplicitAPI):
2211
2257
  async def fetch_deposit_withdraw_fees(self, codes: Strings = None, params={}):
2212
2258
  """
2213
2259
  fetch deposit and withdraw fees
2214
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-currency-networks
2260
+
2261
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-currency-networks
2262
+
2215
2263
  :param str[]|None codes: list of unified currency codes
2216
2264
  :param dict [params]: extra parameters specific to the exchange API endpoint
2217
2265
  :returns dict: a list of `fee structures <https://docs.ccxt.com/#/?id=fee-structure>`
@@ -2225,7 +2273,9 @@ class cryptocom(Exchange, ImplicitAPI):
2225
2273
  async def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[LedgerEntry]:
2226
2274
  """
2227
2275
  fetch the history of changes, actions done by the user or operations that altered the balance of the user
2228
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-transactions
2276
+
2277
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-transactions
2278
+
2229
2279
  :param str [code]: unified currency code
2230
2280
  :param int [since]: timestamp in ms of the earliest ledger entry
2231
2281
  :param int [limit]: max number of ledger entries to return
@@ -2362,7 +2412,9 @@ class cryptocom(Exchange, ImplicitAPI):
2362
2412
  async def fetch_accounts(self, params={}) -> List[Account]:
2363
2413
  """
2364
2414
  fetch all the accounts associated with a profile
2365
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-accounts
2415
+
2416
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-accounts
2417
+
2366
2418
  :param dict [params]: extra parameters specific to the exchange API endpoint
2367
2419
  :returns dict: a dictionary of `account structures <https://docs.ccxt.com/#/?id=account-structure>` indexed by the account type
2368
2420
  """
@@ -2441,7 +2493,9 @@ class cryptocom(Exchange, ImplicitAPI):
2441
2493
  async def fetch_settlement_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
2442
2494
  """
2443
2495
  fetches historical settlement records
2444
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-expired-settlement-price
2496
+
2497
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-expired-settlement-price
2498
+
2445
2499
  :param str symbol: unified market symbol of the settlement history
2446
2500
  :param int [since]: timestamp in ms
2447
2501
  :param int [limit]: number of records
@@ -2523,7 +2577,9 @@ class cryptocom(Exchange, ImplicitAPI):
2523
2577
  async def fetch_funding_rate_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
2524
2578
  """
2525
2579
  fetches historical funding rates
2526
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-valuations
2580
+
2581
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#public-get-valuations
2582
+
2527
2583
  :param str symbol: unified symbol of the market to fetch the funding rate history for
2528
2584
  :param int [since]: timestamp in ms of the earliest funding rate to fetch
2529
2585
  :param int [limit]: the maximum amount of [funding rate structures] to fetch
@@ -2591,7 +2647,9 @@ class cryptocom(Exchange, ImplicitAPI):
2591
2647
  async def fetch_position(self, symbol: str, params={}):
2592
2648
  """
2593
2649
  fetch data on a single open contract trade position
2594
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-positions
2650
+
2651
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-positions
2652
+
2595
2653
  :param str symbol: unified market symbol of the market the position is held in
2596
2654
  :param dict [params]: extra parameters specific to the exchange API endpoint
2597
2655
  :returns dict: a `position structure <https://docs.ccxt.com/#/?id=position-structure>`
@@ -2631,7 +2689,9 @@ class cryptocom(Exchange, ImplicitAPI):
2631
2689
  async def fetch_positions(self, symbols: Strings = None, params={}):
2632
2690
  """
2633
2691
  fetch all open positions
2634
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-positions
2692
+
2693
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-positions
2694
+
2635
2695
  :param str[]|None symbols: list of unified market symbols
2636
2696
  :param dict [params]: extra parameters specific to the exchange API endpoint
2637
2697
  :returns dict[]: a list of `position structure <https://docs.ccxt.com/#/?id=position-structure>`
@@ -2763,13 +2823,14 @@ class cryptocom(Exchange, ImplicitAPI):
2763
2823
  async def close_position(self, symbol: str, side: OrderSide = None, params={}) -> Order:
2764
2824
  """
2765
2825
  closes open positions for a market
2766
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-close-position
2826
+
2827
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-close-position
2828
+
2767
2829
  :param str symbol: Unified CCXT market symbol
2768
- :param str [marginMode]: not used by cryptocom.closePositions
2769
2830
  :param str [side]: not used by cryptocom.closePositions
2770
2831
  :param dict [params]: extra parameters specific to the okx api endpoint
2771
- *
2772
- * EXCHANGE SPECIFIC PARAMETERS
2832
+
2833
+ EXCHANGE SPECIFIC PARAMETERS
2773
2834
  :param str [params.type]: LIMIT or MARKET
2774
2835
  :param number [params.price]: for limit orders only
2775
2836
  :returns dict[]: `A list of position structures <https://docs.ccxt.com/#/?id=position-structure>`
@@ -2804,7 +2865,9 @@ class cryptocom(Exchange, ImplicitAPI):
2804
2865
  async def fetch_trading_fee(self, symbol: str, params={}) -> TradingFeeInterface:
2805
2866
  """
2806
2867
  fetch the trading fees for a market
2807
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-instrument-fee-rate
2868
+
2869
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-instrument-fee-rate
2870
+
2808
2871
  :param str symbol: unified market symbol
2809
2872
  :param dict [params]: extra parameters specific to the exchange API endpoint
2810
2873
  :returns dict: a `fee structure <https://docs.ccxt.com/#/?id=fee-structure>`
@@ -2835,7 +2898,9 @@ class cryptocom(Exchange, ImplicitAPI):
2835
2898
 
2836
2899
  async def fetch_trading_fees(self, params={}) -> TradingFees:
2837
2900
  """
2838
- :see: https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-fee-rate
2901
+
2902
+ https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html#private-get-fee-rate
2903
+
2839
2904
  fetch the trading fees for multiple markets
2840
2905
  :param dict [params]: extra parameters specific to the exchange API endpoint
2841
2906
  :returns dict: a dictionary of `fee structures <https://docs.ccxt.com/#/?id=fee-structure>` indexed by market symbols
@@ -315,7 +315,9 @@ class currencycom(Exchange, ImplicitAPI):
315
315
  async def fetch_time(self, params={}):
316
316
  """
317
317
  fetches the current integer timestamp in milliseconds from the exchange server
318
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/timeUsingGET
318
+
319
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/timeUsingGET
320
+
319
321
  :param dict [params]: extra parameters specific to the exchange API endpoint
320
322
  :returns int: the current integer timestamp in milliseconds from the exchange server
321
323
  """
@@ -330,7 +332,9 @@ class currencycom(Exchange, ImplicitAPI):
330
332
  async def fetch_currencies(self, params={}) -> Currencies:
331
333
  """
332
334
  fetches all available currencies on an exchange
333
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getCurrenciesUsingGET
335
+
336
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getCurrenciesUsingGET
337
+
334
338
  :param dict [params]: extra parameters specific to the exchange API endpoint
335
339
  :returns dict: an associative dictionary of currencies
336
340
  """
@@ -399,7 +403,9 @@ class currencycom(Exchange, ImplicitAPI):
399
403
  async def fetch_markets(self, params={}) -> List[Market]:
400
404
  """
401
405
  retrieves data on all markets for currencycom
402
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/exchangeInfoUsingGET
406
+
407
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/exchangeInfoUsingGET
408
+
403
409
  :param dict [params]: extra parameters specific to the exchange API endpoint
404
410
  :returns dict[]: an array of objects representing market data
405
411
  """
@@ -578,7 +584,9 @@ class currencycom(Exchange, ImplicitAPI):
578
584
  async def fetch_accounts(self, params={}) -> List[Account]:
579
585
  """
580
586
  fetch all the accounts associated with a profile
581
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/accountUsingGET
587
+
588
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/accountUsingGET
589
+
582
590
  :param dict [params]: extra parameters specific to the exchange API endpoint
583
591
  :returns dict: a dictionary of `account structures <https://docs.ccxt.com/#/?id=account-structure>` indexed by the account type
584
592
  """
@@ -632,7 +640,9 @@ class currencycom(Exchange, ImplicitAPI):
632
640
  async def fetch_trading_fees(self, params={}) -> TradingFees:
633
641
  """
634
642
  fetch the trading fees for multiple markets
635
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/accountUsingGET
643
+
644
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/accountUsingGET
645
+
636
646
  :param dict [params]: extra parameters specific to the exchange API endpoint
637
647
  :returns dict: a dictionary of `fee structures <https://docs.ccxt.com/#/?id=fee-structure>` indexed by market symbols
638
648
  """
@@ -705,7 +715,9 @@ class currencycom(Exchange, ImplicitAPI):
705
715
  async def fetch_balance(self, params={}) -> Balances:
706
716
  """
707
717
  query for balance and get the amount of funds available for trading or funds locked in orders
708
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/accountUsingGET
718
+
719
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/accountUsingGET
720
+
709
721
  :param dict [params]: extra parameters specific to the exchange API endpoint
710
722
  :returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
711
723
  """
@@ -747,7 +759,9 @@ class currencycom(Exchange, ImplicitAPI):
747
759
  async def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
748
760
  """
749
761
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
750
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/depthUsingGET
762
+
763
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/depthUsingGET
764
+
751
765
  :param str symbol: unified symbol of the market to fetch the order book for
752
766
  :param int [limit]: the maximum amount of order book entries to return
753
767
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -861,7 +875,9 @@ class currencycom(Exchange, ImplicitAPI):
861
875
  async def fetch_ticker(self, symbol: str, params={}) -> Ticker:
862
876
  """
863
877
  fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
864
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/ticker_24hrUsingGET
878
+
879
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/ticker_24hrUsingGET
880
+
865
881
  :param str symbol: unified symbol of the market to fetch the ticker for
866
882
  :param dict [params]: extra parameters specific to the exchange API endpoint
867
883
  :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
@@ -897,7 +913,9 @@ class currencycom(Exchange, ImplicitAPI):
897
913
  async def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
898
914
  """
899
915
  fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
900
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/ticker_24hrUsingGET
916
+
917
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/ticker_24hrUsingGET
918
+
901
919
  :param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
902
920
  :param dict [params]: extra parameters specific to the exchange API endpoint
903
921
  :returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
@@ -947,7 +965,9 @@ class currencycom(Exchange, ImplicitAPI):
947
965
  async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
948
966
  """
949
967
  fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
950
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/klinesUsingGET
968
+
969
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/klinesUsingGET
970
+
951
971
  :param str symbol: unified symbol of the market to fetch OHLCV data for
952
972
  :param str timeframe: the length of time each candle represents
953
973
  :param int [since]: timestamp in ms of the earliest candle to fetch
@@ -1053,7 +1073,9 @@ class currencycom(Exchange, ImplicitAPI):
1053
1073
  async def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
1054
1074
  """
1055
1075
  get the list of most recent trades for a particular symbol
1056
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/aggTradesUsingGET
1076
+
1077
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/aggTradesUsingGET
1078
+
1057
1079
  :param str symbol: unified symbol of the market to fetch trades for
1058
1080
  :param int [since]: timestamp in ms of the earliest trade to fetch
1059
1081
  :param int [limit]: the maximum amount of trades to fetch
@@ -1234,7 +1256,9 @@ class currencycom(Exchange, ImplicitAPI):
1234
1256
  async def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
1235
1257
  """
1236
1258
  create a trade order
1237
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/orderUsingPOST
1259
+
1260
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/orderUsingPOST
1261
+
1238
1262
  :param str symbol: unified symbol of the market to create an order in
1239
1263
  :param str type: 'market' or 'limit'
1240
1264
  :param str side: 'buy' or 'sell'
@@ -1322,7 +1346,10 @@ class currencycom(Exchange, ImplicitAPI):
1322
1346
  async def fetch_order(self, id: str, symbol: Str = None, params={}):
1323
1347
  """
1324
1348
  fetches information on an order made by the user
1325
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getOrderUsingGET
1349
+
1350
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getOrderUsingGET
1351
+
1352
+ :param str id: order id
1326
1353
  :param str symbol: unified symbol of the market the order was made in
1327
1354
  :param dict [params]: extra parameters specific to the exchange API endpoint
1328
1355
  :returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
@@ -1363,7 +1390,9 @@ class currencycom(Exchange, ImplicitAPI):
1363
1390
  async def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
1364
1391
  """
1365
1392
  fetch all unfilled currently open orders
1366
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/openOrdersUsingGET
1393
+
1394
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/openOrdersUsingGET
1395
+
1367
1396
  :param str symbol: unified market symbol
1368
1397
  :param int [since]: the earliest time in ms to fetch open orders for
1369
1398
  :param int [limit]: the maximum number of open orders structures to retrieve
@@ -1406,7 +1435,9 @@ class currencycom(Exchange, ImplicitAPI):
1406
1435
  async def cancel_order(self, id: str, symbol: Str = None, params={}):
1407
1436
  """
1408
1437
  cancels an open order
1409
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/cancelOrderUsingDELETE
1438
+
1439
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/cancelOrderUsingDELETE
1440
+
1410
1441
  :param str id: order id
1411
1442
  :param str symbol: unified symbol of the market the order was made in
1412
1443
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -1445,7 +1476,9 @@ class currencycom(Exchange, ImplicitAPI):
1445
1476
  async def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
1446
1477
  """
1447
1478
  fetch all trades made by the user
1448
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/myTradesUsingGET
1479
+
1480
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/myTradesUsingGET
1481
+
1449
1482
  :param str symbol: unified market symbol
1450
1483
  :param int [since]: the earliest time in ms to fetch trades for
1451
1484
  :param int [limit]: the maximum number of trades structures to retrieve
@@ -1485,7 +1518,9 @@ class currencycom(Exchange, ImplicitAPI):
1485
1518
  async def fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
1486
1519
  """
1487
1520
  fetch all deposits made to an account
1488
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getDepositsUsingGET
1521
+
1522
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getDepositsUsingGET
1523
+
1489
1524
  :param str code: unified currency code
1490
1525
  :param int [since]: the earliest time in ms to fetch deposits for
1491
1526
  :param int [limit]: the maximum number of deposits structures to retrieve
@@ -1497,7 +1532,9 @@ class currencycom(Exchange, ImplicitAPI):
1497
1532
  async def fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
1498
1533
  """
1499
1534
  fetch all withdrawals made from an account
1500
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getWithdrawalsUsingGET
1535
+
1536
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getWithdrawalsUsingGET
1537
+
1501
1538
  :param str code: unified currency code
1502
1539
  :param int [since]: the earliest time in ms to fetch withdrawals for
1503
1540
  :param int [limit]: the maximum number of withdrawals structures to retrieve
@@ -1509,7 +1546,9 @@ class currencycom(Exchange, ImplicitAPI):
1509
1546
  async def fetch_deposits_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
1510
1547
  """
1511
1548
  fetch history of deposits and withdrawals
1512
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getTransactionsUsingGET
1549
+
1550
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getTransactionsUsingGET
1551
+
1513
1552
  :param str [code]: unified currency code for the currency of the deposit/withdrawals, default is None
1514
1553
  :param int [since]: timestamp in ms of the earliest deposit/withdrawal, default is None
1515
1554
  :param int [limit]: max number of deposit/withdrawals to return, default is None
@@ -1622,7 +1661,9 @@ class currencycom(Exchange, ImplicitAPI):
1622
1661
  async def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[LedgerEntry]:
1623
1662
  """
1624
1663
  fetch the history of changes, actions done by the user or operations that altered the balance of the user
1625
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getLedgerUsingGET
1664
+
1665
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getLedgerUsingGET
1666
+
1626
1667
  :param str [code]: unified currency code, default is None
1627
1668
  :param int [since]: timestamp in ms of the earliest ledger entry, default is None
1628
1669
  :param int [limit]: max number of ledger entries to return, default is None
@@ -1718,7 +1759,9 @@ class currencycom(Exchange, ImplicitAPI):
1718
1759
  async def fetch_leverage(self, symbol: str, params={}) -> Leverage:
1719
1760
  """
1720
1761
  fetch the set leverage for a market
1721
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/leverageSettingsUsingGET
1762
+
1763
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/leverageSettingsUsingGET
1764
+
1722
1765
  :param str symbol: unified market symbol
1723
1766
  :param dict [params]: extra parameters specific to the exchange API endpoint
1724
1767
  :returns dict: a `leverage structure <https://docs.ccxt.com/#/?id=leverage-structure>`
@@ -1750,7 +1793,9 @@ class currencycom(Exchange, ImplicitAPI):
1750
1793
  async def fetch_deposit_address(self, code: str, params={}) -> DepositAddress:
1751
1794
  """
1752
1795
  fetch the deposit address for a currency associated with self account
1753
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getDepositAddressUsingGET
1796
+
1797
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/getDepositAddressUsingGET
1798
+
1754
1799
  :param str code: unified currency code
1755
1800
  :param dict [params]: extra parameters specific to the exchange API endpoint
1756
1801
  :returns dict: an `address structure <https://docs.ccxt.com/#/?id=address-structure>`
@@ -1809,7 +1854,9 @@ class currencycom(Exchange, ImplicitAPI):
1809
1854
  async def fetch_positions(self, symbols: Strings = None, params={}):
1810
1855
  """
1811
1856
  fetch all open positions
1812
- :see: https://apitradedoc.currency.com/swagger-ui.html#/rest-api/tradingPositionsUsingGET
1857
+
1858
+ https://apitradedoc.currency.com/swagger-ui.html#/rest-api/tradingPositionsUsingGET
1859
+
1813
1860
  :param str[]|None symbols: list of unified market symbols
1814
1861
  :param dict [params]: extra parameters specific to the exchange API endpoint
1815
1862
  :returns dict[]: a list of `position structure <https://docs.ccxt.com/#/?id=position-structure>`