ccxt 4.0.75__py2.py3-none-any.whl → 4.0.77__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.

Potentially problematic release.


This version of ccxt might be problematic. Click here for more details.

Files changed (243) hide show
  1. ccxt/__init__.py +1 -1
  2. ccxt/abstract/bingx.py +2 -0
  3. ccxt/abstract/coinsph.py +5 -0
  4. ccxt/abstract/gate.py +24 -0
  5. ccxt/abstract/gateio.py +24 -0
  6. ccxt/ace.py +2 -2
  7. ccxt/alpaca.py +1 -1
  8. ccxt/ascendex.py +3 -3
  9. ccxt/async_support/__init__.py +1 -1
  10. ccxt/async_support/ace.py +2 -2
  11. ccxt/async_support/alpaca.py +1 -1
  12. ccxt/async_support/ascendex.py +3 -3
  13. ccxt/async_support/base/exchange.py +3 -3
  14. ccxt/async_support/bigone.py +2 -2
  15. ccxt/async_support/binance.py +5 -5
  16. ccxt/async_support/bingx.py +72 -21
  17. ccxt/async_support/bit2c.py +2 -2
  18. ccxt/async_support/bitbank.py +2 -2
  19. ccxt/async_support/bitbns.py +2 -2
  20. ccxt/async_support/bitfinex.py +2 -2
  21. ccxt/async_support/bitfinex2.py +4 -4
  22. ccxt/async_support/bitflyer.py +2 -2
  23. ccxt/async_support/bitforex.py +2 -2
  24. ccxt/async_support/bitget.py +5 -5
  25. ccxt/async_support/bithumb.py +2 -2
  26. ccxt/async_support/bitmart.py +2 -2
  27. ccxt/async_support/bitmex.py +5 -5
  28. ccxt/async_support/bitopro.py +3 -3
  29. ccxt/async_support/bitpanda.py +2 -2
  30. ccxt/async_support/bitrue.py +3 -3
  31. ccxt/async_support/bitso.py +2 -2
  32. ccxt/async_support/bitstamp.py +2 -2
  33. ccxt/async_support/bitstamp1.py +2 -2
  34. ccxt/async_support/bittrex.py +3 -3
  35. ccxt/async_support/bitvavo.py +3 -3
  36. ccxt/async_support/bkex.py +4 -4
  37. ccxt/async_support/bl3p.py +2 -2
  38. ccxt/async_support/blockchaincom.py +1 -1
  39. ccxt/async_support/btcalpha.py +2 -2
  40. ccxt/async_support/btcbox.py +2 -2
  41. ccxt/async_support/btcmarkets.py +2 -2
  42. ccxt/async_support/btctradeua.py +2 -2
  43. ccxt/async_support/btcturk.py +2 -2
  44. ccxt/async_support/bybit.py +6 -6
  45. ccxt/async_support/cex.py +2 -2
  46. ccxt/async_support/coinbase.py +3 -3
  47. ccxt/async_support/coinbasepro.py +2 -2
  48. ccxt/async_support/coincheck.py +2 -2
  49. ccxt/async_support/coinex.py +6 -6
  50. ccxt/async_support/coinfalcon.py +2 -2
  51. ccxt/async_support/coinmate.py +2 -2
  52. ccxt/async_support/coinone.py +2 -2
  53. ccxt/async_support/coinsph.py +7 -2
  54. ccxt/async_support/coinspot.py +2 -2
  55. ccxt/async_support/cryptocom.py +5 -5
  56. ccxt/async_support/currencycom.py +2 -2
  57. ccxt/async_support/delta.py +2 -2
  58. ccxt/async_support/deribit.py +3 -3
  59. ccxt/async_support/digifinex.py +4 -4
  60. ccxt/async_support/exmo.py +2 -2
  61. ccxt/async_support/gate.py +46 -4
  62. ccxt/async_support/gemini.py +3 -3
  63. ccxt/async_support/hitbtc.py +4 -4
  64. ccxt/async_support/hollaex.py +3 -3
  65. ccxt/async_support/huobi.py +5 -5
  66. ccxt/async_support/huobijp.py +2 -2
  67. ccxt/async_support/idex.py +2 -2
  68. ccxt/async_support/independentreserve.py +2 -2
  69. ccxt/async_support/indodax.py +2 -2
  70. ccxt/async_support/kraken.py +2 -2
  71. ccxt/async_support/kucoin.py +4 -4
  72. ccxt/async_support/kucoinfutures.py +5 -5
  73. ccxt/async_support/kuna.py +2 -2
  74. ccxt/async_support/latoken.py +2 -2
  75. ccxt/async_support/lbank.py +2 -2
  76. ccxt/async_support/lbank2.py +2 -2
  77. ccxt/async_support/luno.py +2 -2
  78. ccxt/async_support/lykke.py +2 -2
  79. ccxt/async_support/mercado.py +2 -2
  80. ccxt/async_support/mexc.py +6 -3
  81. ccxt/async_support/ndax.py +2 -2
  82. ccxt/async_support/novadax.py +2 -2
  83. ccxt/async_support/oceanex.py +2 -2
  84. ccxt/async_support/okcoin.py +2 -2
  85. ccxt/async_support/okx.py +4 -4
  86. ccxt/async_support/paymium.py +2 -2
  87. ccxt/async_support/phemex.py +2 -2
  88. ccxt/async_support/poloniex.py +149 -68
  89. ccxt/async_support/poloniexfutures.py +2 -2
  90. ccxt/async_support/probit.py +2 -2
  91. ccxt/async_support/tidex.py +2 -2
  92. ccxt/async_support/timex.py +2 -2
  93. ccxt/async_support/tokocrypto.py +2 -2
  94. ccxt/async_support/upbit.py +2 -2
  95. ccxt/async_support/wavesexchange.py +3 -3
  96. ccxt/async_support/wazirx.py +2 -2
  97. ccxt/async_support/whitebit.py +4 -3
  98. ccxt/async_support/woo.py +2 -2
  99. ccxt/async_support/yobit.py +2 -2
  100. ccxt/async_support/zaif.py +2 -2
  101. ccxt/async_support/zonda.py +2 -2
  102. ccxt/base/exchange.py +3 -3
  103. ccxt/bigone.py +2 -2
  104. ccxt/binance.py +5 -5
  105. ccxt/bingx.py +72 -21
  106. ccxt/bit2c.py +2 -2
  107. ccxt/bitbank.py +2 -2
  108. ccxt/bitbns.py +2 -2
  109. ccxt/bitfinex.py +2 -2
  110. ccxt/bitfinex2.py +4 -4
  111. ccxt/bitflyer.py +2 -2
  112. ccxt/bitforex.py +2 -2
  113. ccxt/bitget.py +5 -5
  114. ccxt/bithumb.py +2 -2
  115. ccxt/bitmart.py +2 -2
  116. ccxt/bitmex.py +5 -5
  117. ccxt/bitopro.py +3 -3
  118. ccxt/bitpanda.py +2 -2
  119. ccxt/bitrue.py +3 -3
  120. ccxt/bitso.py +2 -2
  121. ccxt/bitstamp.py +2 -2
  122. ccxt/bitstamp1.py +2 -2
  123. ccxt/bittrex.py +3 -3
  124. ccxt/bitvavo.py +3 -3
  125. ccxt/bkex.py +4 -4
  126. ccxt/bl3p.py +2 -2
  127. ccxt/blockchaincom.py +1 -1
  128. ccxt/btcalpha.py +2 -2
  129. ccxt/btcbox.py +2 -2
  130. ccxt/btcmarkets.py +2 -2
  131. ccxt/btctradeua.py +2 -2
  132. ccxt/btcturk.py +2 -2
  133. ccxt/bybit.py +6 -6
  134. ccxt/cex.py +2 -2
  135. ccxt/coinbase.py +3 -3
  136. ccxt/coinbasepro.py +2 -2
  137. ccxt/coincheck.py +2 -2
  138. ccxt/coinex.py +6 -6
  139. ccxt/coinfalcon.py +2 -2
  140. ccxt/coinmate.py +2 -2
  141. ccxt/coinone.py +2 -2
  142. ccxt/coinsph.py +7 -2
  143. ccxt/coinspot.py +2 -2
  144. ccxt/cryptocom.py +5 -5
  145. ccxt/currencycom.py +2 -2
  146. ccxt/delta.py +2 -2
  147. ccxt/deribit.py +3 -3
  148. ccxt/digifinex.py +4 -4
  149. ccxt/exmo.py +2 -2
  150. ccxt/gate.py +46 -4
  151. ccxt/gemini.py +3 -3
  152. ccxt/hitbtc.py +4 -4
  153. ccxt/hollaex.py +3 -3
  154. ccxt/huobi.py +5 -5
  155. ccxt/huobijp.py +2 -2
  156. ccxt/idex.py +2 -2
  157. ccxt/independentreserve.py +2 -2
  158. ccxt/indodax.py +2 -2
  159. ccxt/kraken.py +2 -2
  160. ccxt/kucoin.py +4 -4
  161. ccxt/kucoinfutures.py +5 -5
  162. ccxt/kuna.py +2 -2
  163. ccxt/latoken.py +2 -2
  164. ccxt/lbank.py +2 -2
  165. ccxt/lbank2.py +2 -2
  166. ccxt/luno.py +2 -2
  167. ccxt/lykke.py +2 -2
  168. ccxt/mercado.py +2 -2
  169. ccxt/mexc.py +6 -3
  170. ccxt/ndax.py +2 -2
  171. ccxt/novadax.py +2 -2
  172. ccxt/oceanex.py +2 -2
  173. ccxt/okcoin.py +2 -2
  174. ccxt/okx.py +4 -4
  175. ccxt/paymium.py +2 -2
  176. ccxt/phemex.py +2 -2
  177. ccxt/poloniex.py +149 -68
  178. ccxt/poloniexfutures.py +2 -2
  179. ccxt/pro/__init__.py +1 -1
  180. ccxt/pro/ascendex.py +2 -2
  181. ccxt/pro/binance.py +6 -6
  182. ccxt/pro/bitfinex.py +1 -1
  183. ccxt/pro/bitfinex2.py +2 -2
  184. ccxt/pro/bitget.py +2 -2
  185. ccxt/pro/bitmart.py +1 -1
  186. ccxt/pro/bitmex.py +2 -2
  187. ccxt/pro/bitopro.py +2 -2
  188. ccxt/pro/bitpanda.py +6 -6
  189. ccxt/pro/bitrue.py +1 -1
  190. ccxt/pro/bitstamp.py +1 -1
  191. ccxt/pro/bittrex.py +2 -2
  192. ccxt/pro/bitvavo.py +1 -1
  193. ccxt/pro/blockchaincom.py +5 -5
  194. ccxt/pro/bybit.py +1 -1
  195. ccxt/pro/cex.py +4 -4
  196. ccxt/pro/coinbase.py +5 -5
  197. ccxt/pro/coinbasepro.py +1 -1
  198. ccxt/pro/coinex.py +2 -2
  199. ccxt/pro/cryptocom.py +3 -3
  200. ccxt/pro/currencycom.py +2 -2
  201. ccxt/pro/deribit.py +3 -3
  202. ccxt/pro/exmo.py +3 -3
  203. ccxt/pro/gate.py +2 -2
  204. ccxt/pro/gemini.py +1 -1
  205. ccxt/pro/hitbtc.py +1 -1
  206. ccxt/pro/hollaex.py +2 -2
  207. ccxt/pro/huobi.py +2 -2
  208. ccxt/pro/huobijp.py +1 -1
  209. ccxt/pro/idex.py +1 -1
  210. ccxt/pro/independentreserve.py +1 -1
  211. ccxt/pro/kraken.py +6 -6
  212. ccxt/pro/krakenfutures.py +5 -5
  213. ccxt/pro/kucoin.py +2 -2
  214. ccxt/pro/kucoinfutures.py +3 -2
  215. ccxt/pro/luno.py +1 -1
  216. ccxt/pro/mexc.py +6 -6
  217. ccxt/pro/ndax.py +1 -1
  218. ccxt/pro/okcoin.py +2 -2
  219. ccxt/pro/okx.py +10 -7
  220. ccxt/pro/phemex.py +2 -2
  221. ccxt/pro/poloniex.py +6 -6
  222. ccxt/pro/poloniexfutures.py +5 -5
  223. ccxt/pro/probit.py +6 -6
  224. ccxt/pro/upbit.py +1 -1
  225. ccxt/pro/wazirx.py +3 -3
  226. ccxt/pro/whitebit.py +2 -2
  227. ccxt/probit.py +2 -2
  228. ccxt/tidex.py +2 -2
  229. ccxt/timex.py +2 -2
  230. ccxt/tokocrypto.py +2 -2
  231. ccxt/upbit.py +2 -2
  232. ccxt/wavesexchange.py +3 -3
  233. ccxt/wazirx.py +2 -2
  234. ccxt/whitebit.py +4 -3
  235. ccxt/woo.py +2 -2
  236. ccxt/yobit.py +2 -2
  237. ccxt/zaif.py +2 -2
  238. ccxt/zonda.py +2 -2
  239. {ccxt-4.0.75.dist-info → ccxt-4.0.77.dist-info}/METADATA +4 -4
  240. ccxt-4.0.77.dist-info/RECORD +456 -0
  241. ccxt-4.0.75.dist-info/RECORD +0 -456
  242. {ccxt-4.0.75.dist-info → ccxt-4.0.77.dist-info}/WHEEL +0 -0
  243. {ccxt-4.0.75.dist-info → ccxt-4.0.77.dist-info}/top_level.txt +0 -0
@@ -450,7 +450,7 @@ class bitbns(Exchange, ImplicitAPI):
450
450
  """
451
451
  query for balance and get the amount of funds available for trading or funds locked in orders
452
452
  :param dict [params]: extra parameters specific to the bitbns api endpoint
453
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
453
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
454
454
  """
455
455
  await self.load_markets()
456
456
  response = await self.v1PostCurrentCoinBalanceEVERYTHING(params)
@@ -874,7 +874,7 @@ class bitbns(Exchange, ImplicitAPI):
874
874
  :param int [since]: timestamp in ms of the earliest trade to fetch
875
875
  :param int [limit]: the maximum amount of trades to fetch
876
876
  :param dict [params]: extra parameters specific to the bitbns api endpoint
877
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
877
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
878
878
  """
879
879
  if symbol is None:
880
880
  raise ArgumentsRequired(self.id + ' fetchTrades() requires a symbol argument')
@@ -678,7 +678,7 @@ class bitfinex(Exchange, ImplicitAPI):
678
678
  """
679
679
  query for balance and get the amount of funds available for trading or funds locked in orders
680
680
  :param dict [params]: extra parameters specific to the bitfinex api endpoint
681
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
681
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
682
682
  """
683
683
  await self.load_markets()
684
684
  accountsByType = self.safe_value(self.options, 'accountsByType', {})
@@ -970,7 +970,7 @@ class bitfinex(Exchange, ImplicitAPI):
970
970
  :param int [since]: timestamp in ms of the earliest trade to fetch
971
971
  :param int [limit]: the maximum amount of trades to fetch
972
972
  :param dict [params]: extra parameters specific to the bitfinex api endpoint
973
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
973
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
974
974
  """
975
975
  await self.load_markets()
976
976
  market = self.market(symbol)
@@ -791,7 +791,7 @@ class bitfinex2(Exchange, ImplicitAPI):
791
791
  """
792
792
  query for balance and get the amount of funds available for trading or funds locked in orders
793
793
  :param dict [params]: extra parameters specific to the bitfinex2 api endpoint
794
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
794
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
795
795
  """
796
796
  # self api call does not return the 'used' amount - use the v1 version instead(which also returns zero balances)
797
797
  # there is a difference between self and the v1 api, namely trading wallet is called margin in v2
@@ -1050,9 +1050,9 @@ class bitfinex2(Exchange, ImplicitAPI):
1050
1050
  'high': self.safe_string(ticker, length - 2),
1051
1051
  'low': self.safe_string(ticker, length - 1),
1052
1052
  'bid': self.safe_string(ticker, length - 10),
1053
- 'bidVolume': None,
1053
+ 'bidVolume': self.safe_string(ticker, length - 9),
1054
1054
  'ask': self.safe_string(ticker, length - 8),
1055
- 'askVolume': None,
1055
+ 'askVolume': self.safe_string(ticker, length - 7),
1056
1056
  'vwap': None,
1057
1057
  'open': None,
1058
1058
  'close': last,
@@ -1232,7 +1232,7 @@ class bitfinex2(Exchange, ImplicitAPI):
1232
1232
  :param int [since]: timestamp in ms of the earliest trade to fetch
1233
1233
  :param int [limit]: the maximum amount of trades to fetch
1234
1234
  :param dict [params]: extra parameters specific to the bitfinex2 api endpoint
1235
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
1235
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
1236
1236
  """
1237
1237
  await self.load_markets()
1238
1238
  market = self.market(symbol)
@@ -308,7 +308,7 @@ class bitflyer(Exchange, ImplicitAPI):
308
308
  """
309
309
  query for balance and get the amount of funds available for trading or funds locked in orders
310
310
  :param dict [params]: extra parameters specific to the bitflyer api endpoint
311
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
311
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
312
312
  """
313
313
  await self.load_markets()
314
314
  response = await self.privateGetGetbalance(params)
@@ -455,7 +455,7 @@ class bitflyer(Exchange, ImplicitAPI):
455
455
  :param int [since]: timestamp in ms of the earliest trade to fetch
456
456
  :param int [limit]: the maximum amount of trades to fetch
457
457
  :param dict [params]: extra parameters specific to the bitflyer api endpoint
458
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
458
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
459
459
  """
460
460
  await self.load_markets()
461
461
  market = self.market(symbol)
@@ -326,7 +326,7 @@ class bitforex(Exchange, ImplicitAPI):
326
326
  :param int [since]: timestamp in ms of the earliest trade to fetch
327
327
  :param int [limit]: the maximum amount of trades to fetch
328
328
  :param dict [params]: extra parameters specific to the bitforex api endpoint
329
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
329
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
330
330
  """
331
331
  await self.load_markets()
332
332
  request = {
@@ -426,7 +426,7 @@ class bitforex(Exchange, ImplicitAPI):
426
426
  """
427
427
  query for balance and get the amount of funds available for trading or funds locked in orders
428
428
  :param dict [params]: extra parameters specific to the bitforex api endpoint
429
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
429
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
430
430
  """
431
431
  await self.load_markets()
432
432
  response = await self.privatePostApiV1FundAllAccount(params)
@@ -2190,7 +2190,7 @@ class bitget(Exchange, ImplicitAPI):
2190
2190
  :param int [limit]: the maximum amount of trades to fetch
2191
2191
  :param dict [params]: extra parameters specific to the bitget api endpoint
2192
2192
  :param int [params.until]: the latest time in ms to fetch deposits for
2193
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
2193
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
2194
2194
  """
2195
2195
  await self.load_markets()
2196
2196
  market = self.market(symbol)
@@ -2480,7 +2480,7 @@ class bitget(Exchange, ImplicitAPI):
2480
2480
  """
2481
2481
  query for balance and get the amount of funds available for trading or funds locked in orders
2482
2482
  :param dict [params]: extra parameters specific to the bitget api endpoint
2483
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
2483
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
2484
2484
  """
2485
2485
  sandboxMode = self.safe_value(self.options, 'sandboxMode', False)
2486
2486
  await self.load_markets()
@@ -4017,9 +4017,9 @@ class bitget(Exchange, ImplicitAPI):
4017
4017
  fetches historical funding rate prices
4018
4018
  :param str symbol: unified symbol of the market to fetch the funding rate history for
4019
4019
  :param int [since]: timestamp in ms of the earliest funding rate to fetch
4020
- :param int [limit]: the maximum amount of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>` to fetch
4020
+ :param int [limit]: the maximum amount of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>` to fetch
4021
4021
  :param dict [params]: extra parameters specific to the bitget api endpoint
4022
- :returns dict[]: a list of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>`
4022
+ :returns dict[]: a list of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>`
4023
4023
  """
4024
4024
  self.check_required_symbol('fetchFundingRateHistory', symbol)
4025
4025
  await self.load_markets()
@@ -4645,7 +4645,7 @@ class bitget(Exchange, ImplicitAPI):
4645
4645
  see https://bitgetlimited.github.io/apidoc/en/spot/#get-coin-list
4646
4646
  :param str[]|None codes: list of unified currency codes
4647
4647
  :param dict [params]: extra parameters specific to the bitget api endpoint
4648
- :returns dict: a list of `fee structures <https://docs.ccxt.com/en/latest/manual.html#fee-structure>`
4648
+ :returns dict: a list of `fee structures <https://github.com/ccxt/ccxt/wiki/Manual#fee-structure>`
4649
4649
  """
4650
4650
  await self.load_markets()
4651
4651
  response = await self.publicSpotGetPublicCurrencies(params)
@@ -288,7 +288,7 @@ class bithumb(Exchange, ImplicitAPI):
288
288
  """
289
289
  query for balance and get the amount of funds available for trading or funds locked in orders
290
290
  :param dict [params]: extra parameters specific to the bithumb api endpoint
291
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
291
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
292
292
  """
293
293
  await self.load_markets()
294
294
  request = {
@@ -612,7 +612,7 @@ class bithumb(Exchange, ImplicitAPI):
612
612
  :param int [since]: timestamp in ms of the earliest trade to fetch
613
613
  :param int [limit]: the maximum amount of trades to fetch
614
614
  :param dict [params]: extra parameters specific to the bithumb api endpoint
615
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
615
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
616
616
  """
617
617
  await self.load_markets()
618
618
  market = self.market(symbol)
@@ -1308,7 +1308,7 @@ class bitmart(Exchange, ImplicitAPI):
1308
1308
  :param int [since]: timestamp in ms of the earliest trade to fetch
1309
1309
  :param int [limit]: the maximum amount of trades to fetch
1310
1310
  :param dict [params]: extra parameters specific to the bitmart api endpoint
1311
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
1311
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
1312
1312
  """
1313
1313
  await self.load_markets()
1314
1314
  market = self.market(symbol)
@@ -1647,7 +1647,7 @@ class bitmart(Exchange, ImplicitAPI):
1647
1647
  see https://developer-pro.bitmart.com/en/spot/#get-account-balance
1648
1648
  see https://developer-pro.bitmart.com/en/spot/#get-margin-account-details-isolated
1649
1649
  :param dict [params]: extra parameters specific to the bitmart api endpoint
1650
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
1650
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
1651
1651
  """
1652
1652
  await self.load_markets()
1653
1653
  marketType = None
@@ -723,7 +723,7 @@ class bitmex(Exchange, ImplicitAPI):
723
723
  """
724
724
  query for balance and get the amount of funds available for trading or funds locked in orders
725
725
  :param dict [params]: extra parameters specific to the bitmex api endpoint
726
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
726
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
727
727
  """
728
728
  await self.load_markets()
729
729
  request = {
@@ -1633,7 +1633,7 @@ class bitmex(Exchange, ImplicitAPI):
1633
1633
  :param int [since]: timestamp in ms of the earliest trade to fetch
1634
1634
  :param int [limit]: the maximum amount of trades to fetch
1635
1635
  :param dict [params]: extra parameters specific to the bitmex api endpoint
1636
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
1636
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
1637
1637
  """
1638
1638
  await self.load_markets()
1639
1639
  market = self.market(symbol)
@@ -2191,14 +2191,14 @@ class bitmex(Exchange, ImplicitAPI):
2191
2191
  Fetches the history of funding rates
2192
2192
  :param str symbol: unified symbol of the market to fetch the funding rate history for
2193
2193
  :param int [since]: timestamp in ms of the earliest funding rate to fetch
2194
- :param int [limit]: the maximum amount of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>` to fetch
2194
+ :param int [limit]: the maximum amount of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>` to fetch
2195
2195
  :param dict [params]: extra parameters specific to the bitmex api endpoint
2196
2196
  :param int [params.until]: timestamp in ms for ending date filter
2197
2197
  :param bool [params.reverse]: if True, will sort results newest first
2198
2198
  :param int [params.start]: starting point for results
2199
2199
  :param str [params.columns]: array of column names to fetch in info, if omitted, will return all columns
2200
2200
  :param str [params.filter]: generic table filter, send json key/value pairs, such as {"key": "value"}, you can key on individual fields, and do more advanced querying on timestamps, see the `timestamp docs <https://www.bitmex.com/app/restAPI#Timestamp-Filters>` for more details
2201
- :returns dict[]: a list of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>`
2201
+ :returns dict[]: a list of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>`
2202
2202
  """
2203
2203
  await self.load_markets()
2204
2204
  request = {}
@@ -2406,7 +2406,7 @@ class bitmex(Exchange, ImplicitAPI):
2406
2406
  see https://www.bitmex.com/api/explorer/#not /Wallet/Wallet_getAssetsConfig
2407
2407
  :param str[]|None codes: list of unified currency codes
2408
2408
  :param dict [params]: extra parameters specific to the bitmex api endpoint
2409
- :returns dict: a list of `fee structures <https://docs.ccxt.com/en/latest/manual.html#fee-structure>`
2409
+ :returns dict: a list of `fee structures <https://github.com/ccxt/ccxt/wiki/Manual#fee-structure>`
2410
2410
  """
2411
2411
  await self.load_markets()
2412
2412
  assets = await self.publicGetWalletAssets(params)
@@ -586,7 +586,7 @@ class bitopro(Exchange, ImplicitAPI):
586
586
  :param int [since]: timestamp in ms of the earliest trade to fetch
587
587
  :param int [limit]: the maximum amount of trades to fetch
588
588
  :param dict [params]: extra parameters specific to the bitopro api endpoint
589
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
589
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
590
590
  """
591
591
  await self.load_markets()
592
592
  market = self.market(symbol)
@@ -819,7 +819,7 @@ class bitopro(Exchange, ImplicitAPI):
819
819
  """
820
820
  query for balance and get the amount of funds available for trading or funds locked in orders
821
821
  :param dict [params]: extra parameters specific to the bitopro api endpoint
822
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
822
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
823
823
  """
824
824
  await self.load_markets()
825
825
  response = await self.privateGetAccountsBalance(params)
@@ -1530,7 +1530,7 @@ class bitopro(Exchange, ImplicitAPI):
1530
1530
  see https://github.com/bitoex/bitopro-offical-api-docs/blob/master/v3-1/rest-1/open/currencies.md
1531
1531
  :param str[]|None codes: list of unified currency codes
1532
1532
  :param dict [params]: extra parameters specific to the bitopro api endpoint
1533
- :returns dict: a list of `fee structures <https://docs.ccxt.com/en/latest/manual.html#fee-structure>`
1533
+ :returns dict: a list of `fee structures <https://github.com/ccxt/ccxt/wiki/Manual#fee-structure>`
1534
1534
  """
1535
1535
  await self.load_markets()
1536
1536
  response = await self.publicGetProvisioningCurrencies(params)
@@ -929,7 +929,7 @@ class bitpanda(Exchange, ImplicitAPI):
929
929
  :param int [since]: timestamp in ms of the earliest trade to fetch
930
930
  :param int [limit]: the maximum amount of trades to fetch
931
931
  :param dict [params]: extra parameters specific to the bitpanda api endpoint
932
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
932
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
933
933
  """
934
934
  await self.load_markets()
935
935
  market = self.market(symbol)
@@ -977,7 +977,7 @@ class bitpanda(Exchange, ImplicitAPI):
977
977
  """
978
978
  query for balance and get the amount of funds available for trading or funds locked in orders
979
979
  :param dict [params]: extra parameters specific to the bitpanda api endpoint
980
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
980
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
981
981
  """
982
982
  await self.load_markets()
983
983
  response = await self.privateGetAccountBalances(params)
@@ -734,7 +734,7 @@ class bitrue(Exchange, ImplicitAPI):
734
734
  """
735
735
  query for balance and get the amount of funds available for trading or funds locked in orders
736
736
  :param dict [params]: extra parameters specific to the bitrue api endpoint
737
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
737
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
738
738
  """
739
739
  await self.load_markets()
740
740
  response = await self.v1PrivateGetAccount(params)
@@ -1094,7 +1094,7 @@ class bitrue(Exchange, ImplicitAPI):
1094
1094
  :param int [since]: timestamp in ms of the earliest trade to fetch
1095
1095
  :param int [limit]: the maximum amount of trades to fetch
1096
1096
  :param dict [params]: extra parameters specific to the bitrue api endpoint
1097
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
1097
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
1098
1098
  """
1099
1099
  await self.load_markets()
1100
1100
  market = self.market(symbol)
@@ -1840,7 +1840,7 @@ class bitrue(Exchange, ImplicitAPI):
1840
1840
  see https://github.com/Bitrue-exchange/Spot-official-api-docs#exchangeInfo_endpoint
1841
1841
  :param str[]|None codes: list of unified currency codes
1842
1842
  :param dict [params]: extra parameters specific to the bitrue api endpoint
1843
- :returns dict: a list of `fee structures <https://docs.ccxt.com/en/latest/manual.html#fee-structure>`
1843
+ :returns dict: a list of `fee structures <https://github.com/ccxt/ccxt/wiki/Manual#fee-structure>`
1844
1844
  """
1845
1845
  await self.load_markets()
1846
1846
  response = await self.v1PublicGetExchangeInfo(params)
@@ -493,7 +493,7 @@ class bitso(Exchange, ImplicitAPI):
493
493
  """
494
494
  query for balance and get the amount of funds available for trading or funds locked in orders
495
495
  :param dict [params]: extra parameters specific to the bitso api endpoint
496
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
496
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
497
497
  """
498
498
  await self.load_markets()
499
499
  response = await self.privateGetBalance(params)
@@ -791,7 +791,7 @@ class bitso(Exchange, ImplicitAPI):
791
791
  :param int [since]: timestamp in ms of the earliest trade to fetch
792
792
  :param int [limit]: the maximum amount of trades to fetch
793
793
  :param dict [params]: extra parameters specific to the bitso api endpoint
794
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
794
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
795
795
  """
796
796
  await self.load_markets()
797
797
  market = self.market(symbol)
@@ -941,7 +941,7 @@ class bitstamp(Exchange, ImplicitAPI):
941
941
  :param int [since]: timestamp in ms of the earliest trade to fetch
942
942
  :param int [limit]: the maximum amount of trades to fetch
943
943
  :param dict [params]: extra parameters specific to the bitstamp api endpoint
944
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
944
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
945
945
  """
946
946
  await self.load_markets()
947
947
  market = self.market(symbol)
@@ -1061,7 +1061,7 @@ class bitstamp(Exchange, ImplicitAPI):
1061
1061
  """
1062
1062
  query for balance and get the amount of funds available for trading or funds locked in orders
1063
1063
  :param dict [params]: extra parameters specific to the bitstamp api endpoint
1064
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
1064
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
1065
1065
  """
1066
1066
  await self.load_markets()
1067
1067
  response = await self.privatePostBalance(params)
@@ -244,7 +244,7 @@ class bitstamp1(Exchange, ImplicitAPI):
244
244
  :param int [since]: timestamp in ms of the earliest trade to fetch
245
245
  :param int [limit]: the maximum amount of trades to fetch
246
246
  :param dict [params]: extra parameters specific to the bitstamp1 api endpoint
247
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
247
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
248
248
  """
249
249
  if symbol != 'BTC/USD':
250
250
  raise BadSymbol(self.id + ' ' + self.version + " fetchTrades doesn't support " + symbol + ', use it for BTC/USD only')
@@ -274,7 +274,7 @@ class bitstamp1(Exchange, ImplicitAPI):
274
274
  """
275
275
  query for balance and get the amount of funds available for trading or funds locked in orders
276
276
  :param dict [params]: extra parameters specific to the bitstamp1 api endpoint
277
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
277
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
278
278
  """
279
279
  response = await self.privatePostBalance(params)
280
280
  return self.parse_balance(response)
@@ -404,7 +404,7 @@ class bittrex(Exchange, ImplicitAPI):
404
404
  """
405
405
  query for balance and get the amount of funds available for trading or funds locked in orders
406
406
  :param dict [params]: extra parameters specific to the bittrex api endpoint
407
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
407
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
408
408
  """
409
409
  await self.load_markets()
410
410
  response = await self.privateGetBalances(params)
@@ -762,7 +762,7 @@ class bittrex(Exchange, ImplicitAPI):
762
762
  :param int [since]: timestamp in ms of the earliest trade to fetch
763
763
  :param int [limit]: the maximum amount of trades to fetch
764
764
  :param dict [params]: extra parameters specific to the bittrex api endpoint
765
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
765
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
766
766
  """
767
767
  await self.load_markets()
768
768
  market = self.market(symbol)
@@ -1935,7 +1935,7 @@ class bittrex(Exchange, ImplicitAPI):
1935
1935
  fetch deposit and withdraw fees
1936
1936
  :param str[]|None codes: list of unified currency codes
1937
1937
  :param dict [params]: extra parameters specific to the bittrex api endpoint
1938
- :returns dict: a list of `fee structures <https://docs.ccxt.com/en/latest/manual.html#fee-structure>`
1938
+ :returns dict: a list of `fee structures <https://github.com/ccxt/ccxt/wiki/Manual#fee-structure>`
1939
1939
  """
1940
1940
  await self.load_markets()
1941
1941
  response = await self.publicGetCurrencies(params)
@@ -623,7 +623,7 @@ class bitvavo(Exchange, ImplicitAPI):
623
623
  :param int [since]: timestamp in ms of the earliest trade to fetch
624
624
  :param int [limit]: the maximum amount of trades to fetch
625
625
  :param dict [params]: extra parameters specific to the bitvavo api endpoint
626
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
626
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
627
627
  """
628
628
  await self.load_markets()
629
629
  market = self.market(symbol)
@@ -894,7 +894,7 @@ class bitvavo(Exchange, ImplicitAPI):
894
894
  """
895
895
  query for balance and get the amount of funds available for trading or funds locked in orders
896
896
  :param dict [params]: extra parameters specific to the bitvavo api endpoint
897
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
897
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
898
898
  """
899
899
  await self.load_markets()
900
900
  response = await self.privateGetBalance(params)
@@ -1711,7 +1711,7 @@ class bitvavo(Exchange, ImplicitAPI):
1711
1711
  see https://docs.bitvavo.com/#tag/General/paths/~1assets/get
1712
1712
  :param str[]|None codes: list of unified currency codes
1713
1713
  :param dict [params]: extra parameters specific to the bitvavo api endpoint
1714
- :returns dict: a list of `fee structures <https://docs.ccxt.com/en/latest/manual.html#fee-structure>`
1714
+ :returns dict: a list of `fee structures <https://github.com/ccxt/ccxt/wiki/Manual#fee-structure>`
1715
1715
  """
1716
1716
  await self.load_markets()
1717
1717
  response = await self.publicGetAssets(params)
@@ -875,7 +875,7 @@ class bkex(Exchange, ImplicitAPI):
875
875
  :param int [since]: timestamp in ms of the earliest trade to fetch
876
876
  :param int [limit]: the maximum amount of trades to fetch
877
877
  :param dict [params]: extra parameters specific to the bkex api endpoint
878
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
878
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
879
879
  """
880
880
  await self.load_markets()
881
881
  market = self.market(symbol)
@@ -984,7 +984,7 @@ class bkex(Exchange, ImplicitAPI):
984
984
  """
985
985
  query for balance and get the amount of funds available for trading or funds locked in orders
986
986
  :param dict [params]: extra parameters specific to the bkex api endpoint
987
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
987
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
988
988
  """
989
989
  await self.load_markets()
990
990
  query = self.omit(params, 'type')
@@ -1688,9 +1688,9 @@ class bkex(Exchange, ImplicitAPI):
1688
1688
  fetches historical funding rate prices
1689
1689
  :param str symbol: unified symbol of the market to fetch the funding rate history for
1690
1690
  :param int [since]: timestamp in ms of the earliest funding rate to fetch
1691
- :param int [limit]: the maximum amount of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>` to fetch
1691
+ :param int [limit]: the maximum amount of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>` to fetch
1692
1692
  :param dict [params]: extra parameters specific to the bkex api endpoint
1693
- :returns dict[]: a list of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>`
1693
+ :returns dict[]: a list of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>`
1694
1694
  """
1695
1695
  if symbol is None:
1696
1696
  raise ArgumentsRequired(self.id + ' fetchFundingRateHistory() requires a symbol argument')
@@ -134,7 +134,7 @@ class bl3p(Exchange, ImplicitAPI):
134
134
  """
135
135
  query for balance and get the amount of funds available for trading or funds locked in orders
136
136
  :param dict [params]: extra parameters specific to the bl3p api endpoint
137
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
137
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
138
138
  """
139
139
  await self.load_markets()
140
140
  response = await self.privatePostGENMKTMoneyInfo(params)
@@ -265,7 +265,7 @@ class bl3p(Exchange, ImplicitAPI):
265
265
  :param int [since]: timestamp in ms of the earliest trade to fetch
266
266
  :param int [limit]: the maximum amount of trades to fetch
267
267
  :param dict [params]: extra parameters specific to the bl3p api endpoint
268
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
268
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
269
269
  """
270
270
  market = self.market(symbol)
271
271
  response = await self.publicGetMarketTrades(self.extend({
@@ -1006,7 +1006,7 @@ class blockchaincom(Exchange, ImplicitAPI):
1006
1006
  """
1007
1007
  query for balance and get the amount of funds available for trading or funds locked in orders
1008
1008
  :param dict [params]: extra parameters specific to the blockchaincom api endpoint
1009
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
1009
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
1010
1010
  """
1011
1011
  await self.load_markets()
1012
1012
  accountName = self.safe_string(params, 'account', 'primary')
@@ -417,7 +417,7 @@ class btcalpha(Exchange, ImplicitAPI):
417
417
  :param int [since]: timestamp in ms of the earliest trade to fetch
418
418
  :param int [limit]: the maximum amount of trades to fetch
419
419
  :param dict [params]: extra parameters specific to the btcalpha api endpoint
420
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
420
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
421
421
  """
422
422
  await self.load_markets()
423
423
  market = None
@@ -605,7 +605,7 @@ class btcalpha(Exchange, ImplicitAPI):
605
605
  """
606
606
  query for balance and get the amount of funds available for trading or funds locked in orders
607
607
  :param dict [params]: extra parameters specific to the btcalpha api endpoint
608
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
608
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
609
609
  """
610
610
  await self.load_markets()
611
611
  response = await self.privateGetWallets(params)
@@ -151,7 +151,7 @@ class btcbox(Exchange, ImplicitAPI):
151
151
  """
152
152
  query for balance and get the amount of funds available for trading or funds locked in orders
153
153
  :param dict [params]: extra parameters specific to the btcbox api endpoint
154
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
154
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
155
155
  """
156
156
  await self.load_markets()
157
157
  response = await self.privatePostBalance(params)
@@ -259,7 +259,7 @@ class btcbox(Exchange, ImplicitAPI):
259
259
  :param int [since]: timestamp in ms of the earliest trade to fetch
260
260
  :param int [limit]: the maximum amount of trades to fetch
261
261
  :param dict [params]: extra parameters specific to the btcbox api endpoint
262
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
262
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
263
263
  """
264
264
  await self.load_markets()
265
265
  market = self.market(symbol)
@@ -458,7 +458,7 @@ class btcmarkets(Exchange, ImplicitAPI):
458
458
  """
459
459
  query for balance and get the amount of funds available for trading or funds locked in orders
460
460
  :param dict [params]: extra parameters specific to the btcmarkets api endpoint
461
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
461
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
462
462
  """
463
463
  await self.load_markets()
464
464
  response = await self.privateGetAccountsMeBalances(params)
@@ -714,7 +714,7 @@ class btcmarkets(Exchange, ImplicitAPI):
714
714
  :param int [since]: timestamp in ms of the earliest trade to fetch
715
715
  :param int [limit]: the maximum amount of trades to fetch
716
716
  :param dict [params]: extra parameters specific to the btcmarkets api endpoint
717
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
717
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
718
718
  """
719
719
  await self.load_markets()
720
720
  market = self.market(symbol)
@@ -152,7 +152,7 @@ class btctradeua(Exchange, ImplicitAPI):
152
152
  """
153
153
  query for balance and get the amount of funds available for trading or funds locked in orders
154
154
  :param dict [params]: extra parameters specific to the btctradeua api endpoint
155
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
155
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
156
156
  """
157
157
  await self.load_markets()
158
158
  response = await self.privatePostBalance(params)
@@ -367,7 +367,7 @@ class btctradeua(Exchange, ImplicitAPI):
367
367
  :param int [since]: timestamp in ms of the earliest trade to fetch
368
368
  :param int [limit]: the maximum amount of trades to fetch
369
369
  :param dict [params]: extra parameters specific to the btctradeua api endpoint
370
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
370
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
371
371
  """
372
372
  await self.load_markets()
373
373
  market = self.market(symbol)
@@ -289,7 +289,7 @@ class btcturk(Exchange, ImplicitAPI):
289
289
  """
290
290
  query for balance and get the amount of funds available for trading or funds locked in orders
291
291
  :param dict [params]: extra parameters specific to the btcturk api endpoint
292
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
292
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
293
293
  """
294
294
  await self.load_markets()
295
295
  response = await self.privateGetUsersBalances(params)
@@ -480,7 +480,7 @@ class btcturk(Exchange, ImplicitAPI):
480
480
  :param int [since]: timestamp in ms of the earliest trade to fetch
481
481
  :param int [limit]: the maximum amount of trades to fetch
482
482
  :param dict [params]: extra parameters specific to the btcturk api endpoint
483
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
483
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
484
484
  """
485
485
  await self.load_markets()
486
486
  market = self.market(symbol)