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
ccxt/bitpanda.py CHANGED
@@ -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
  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
  self.load_markets()
983
983
  response = self.privateGetAccountBalances(params)
ccxt/bitrue.py CHANGED
@@ -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
  self.load_markets()
740
740
  response = 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
  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
  self.load_markets()
1846
1846
  response = self.v1PublicGetExchangeInfo(params)
ccxt/bitso.py CHANGED
@@ -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
  self.load_markets()
499
499
  response = 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
  self.load_markets()
797
797
  market = self.market(symbol)
ccxt/bitstamp.py CHANGED
@@ -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
  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
  self.load_markets()
1067
1067
  response = self.privatePostBalance(params)
ccxt/bitstamp1.py CHANGED
@@ -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 = self.privatePostBalance(params)
280
280
  return self.parse_balance(response)
ccxt/bittrex.py CHANGED
@@ -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
  self.load_markets()
410
410
  response = 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
  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
  self.load_markets()
1941
1941
  response = self.publicGetCurrencies(params)
ccxt/bitvavo.py CHANGED
@@ -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
  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
  self.load_markets()
900
900
  response = 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
  self.load_markets()
1717
1717
  response = self.publicGetAssets(params)
ccxt/bkex.py CHANGED
@@ -874,7 +874,7 @@ class bkex(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 bkex 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
  self.load_markets()
880
880
  market = self.market(symbol)
@@ -983,7 +983,7 @@ class bkex(Exchange, ImplicitAPI):
983
983
  """
984
984
  query for balance and get the amount of funds available for trading or funds locked in orders
985
985
  :param dict [params]: extra parameters specific to the bkex api endpoint
986
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
986
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
987
987
  """
988
988
  self.load_markets()
989
989
  query = self.omit(params, 'type')
@@ -1687,9 +1687,9 @@ class bkex(Exchange, ImplicitAPI):
1687
1687
  fetches historical funding rate prices
1688
1688
  :param str symbol: unified symbol of the market to fetch the funding rate history for
1689
1689
  :param int [since]: timestamp in ms of the earliest funding rate to fetch
1690
- :param int [limit]: the maximum amount of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>` to fetch
1690
+ :param int [limit]: the maximum amount of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>` to fetch
1691
1691
  :param dict [params]: extra parameters specific to the bkex api endpoint
1692
- :returns dict[]: a list of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>`
1692
+ :returns dict[]: a list of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>`
1693
1693
  """
1694
1694
  if symbol is None:
1695
1695
  raise ArgumentsRequired(self.id + ' fetchFundingRateHistory() requires a symbol argument')
ccxt/bl3p.py CHANGED
@@ -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
  self.load_markets()
140
140
  response = 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 = self.publicGetMarketTrades(self.extend({
ccxt/blockchaincom.py CHANGED
@@ -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
  self.load_markets()
1012
1012
  accountName = self.safe_string(params, 'account', 'primary')
ccxt/btcalpha.py CHANGED
@@ -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
  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
  self.load_markets()
611
611
  response = self.privateGetWallets(params)
ccxt/btcbox.py CHANGED
@@ -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
  self.load_markets()
157
157
  response = 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
  self.load_markets()
265
265
  market = self.market(symbol)
ccxt/btcmarkets.py CHANGED
@@ -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
  self.load_markets()
464
464
  response = 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
  self.load_markets()
720
720
  market = self.market(symbol)
ccxt/btctradeua.py CHANGED
@@ -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
  self.load_markets()
158
158
  response = 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
  self.load_markets()
373
373
  market = self.market(symbol)
ccxt/btcturk.py CHANGED
@@ -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
  self.load_markets()
295
295
  response = 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
  self.load_markets()
486
486
  market = self.market(symbol)
ccxt/bybit.py CHANGED
@@ -57,7 +57,7 @@ class bybit(Exchange, ImplicitAPI):
57
57
  'createStopOrder': True,
58
58
  'editOrder': True,
59
59
  'fetchBalance': True,
60
- 'fetchBorrowInterest': False, # temporarily disabled, does not work
60
+ 'fetchBorrowInterest': False, # temporarily disabled, doesn't work
61
61
  'fetchBorrowRate': True,
62
62
  'fetchBorrowRateHistories': False,
63
63
  'fetchBorrowRateHistory': False,
@@ -2521,10 +2521,10 @@ class bybit(Exchange, ImplicitAPI):
2521
2521
  see https://bybit-exchange.github.io/docs/v5/market/history-fund-rate
2522
2522
  :param str symbol: unified symbol of the market to fetch the funding rate history for
2523
2523
  :param int [since]: timestamp in ms of the earliest funding rate to fetch
2524
- :param int [limit]: the maximum amount of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>` to fetch
2524
+ :param int [limit]: the maximum amount of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>` to fetch
2525
2525
  :param dict [params]: extra parameters specific to the bybit api endpoint
2526
2526
  :param int [params.until]: timestamp in ms of the latest funding rate
2527
- :returns dict[]: a list of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>`
2527
+ :returns dict[]: a list of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>`
2528
2528
  """
2529
2529
  self.check_required_symbol('fetchFundingRateHistory', symbol)
2530
2530
  self.load_markets()
@@ -2827,7 +2827,7 @@ class bybit(Exchange, ImplicitAPI):
2827
2827
  :param int [since]: timestamp in ms of the earliest trade to fetch
2828
2828
  :param int [limit]: the maximum amount of trades to fetch
2829
2829
  :param dict [params]: extra parameters specific to the bybit api endpoint
2830
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
2830
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
2831
2831
  """
2832
2832
  self.check_required_symbol('fetchTrades', symbol)
2833
2833
  self.load_markets()
@@ -3212,7 +3212,7 @@ class bybit(Exchange, ImplicitAPI):
3212
3212
  """
3213
3213
  query for balance and get the amount of funds available for trading or funds locked in orders
3214
3214
  :param dict [params]: extra parameters specific to the bybit api endpoint
3215
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
3215
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
3216
3216
  """
3217
3217
  self.load_markets()
3218
3218
  request = {}
@@ -8250,7 +8250,7 @@ class bybit(Exchange, ImplicitAPI):
8250
8250
  see https://bybit-exchange.github.io/docs/v5/asset/coin-info
8251
8251
  :param str[]|None codes: list of unified currency codes
8252
8252
  :param dict [params]: extra parameters specific to the bybit api endpoint
8253
- :returns dict: a list of `fee structures <https://docs.ccxt.com/en/latest/manual.html#fee-structure>`
8253
+ :returns dict: a list of `fee structures <https://github.com/ccxt/ccxt/wiki/Manual#fee-structure>`
8254
8254
  """
8255
8255
  self.check_required_credentials()
8256
8256
  self.load_markets()
ccxt/cex.py CHANGED
@@ -467,7 +467,7 @@ class cex(Exchange, ImplicitAPI):
467
467
  """
468
468
  query for balance and get the amount of funds available for trading or funds locked in orders
469
469
  :param dict [params]: extra parameters specific to the cex api endpoint
470
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
470
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
471
471
  """
472
472
  self.load_markets()
473
473
  response = self.privatePostBalance(params)
@@ -663,7 +663,7 @@ class cex(Exchange, ImplicitAPI):
663
663
  :param int [since]: timestamp in ms of the earliest trade to fetch
664
664
  :param int [limit]: the maximum amount of trades to fetch
665
665
  :param dict [params]: extra parameters specific to the cex api endpoint
666
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
666
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
667
667
  """
668
668
  self.load_markets()
669
669
  market = self.market(symbol)
ccxt/coinbase.py CHANGED
@@ -1462,7 +1462,7 @@ class coinbase(Exchange, ImplicitAPI):
1462
1462
  """
1463
1463
  query for balance and get the amount of funds available for trading or funds locked in orders
1464
1464
  :param dict [params]: extra parameters specific to the coinbase api endpoint
1465
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
1465
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
1466
1466
  """
1467
1467
  self.load_markets()
1468
1468
  request = {
@@ -2531,7 +2531,7 @@ class coinbase(Exchange, ImplicitAPI):
2531
2531
  :param int [since]: not used by coinbase fetchTrades
2532
2532
  :param int [limit]: the maximum number of trade structures to fetch
2533
2533
  :param dict [params]: extra parameters specific to the coinbase api endpoint
2534
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
2534
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
2535
2535
  """
2536
2536
  self.load_markets()
2537
2537
  market = self.market(symbol)
@@ -2656,7 +2656,7 @@ class coinbase(Exchange, ImplicitAPI):
2656
2656
  see https://docs.cloud.coinbase.com/advanced-trade-api/reference/retailbrokerageapi_getbestbidask
2657
2657
  :param str[] [symbols]: unified symbols of the markets to fetch the bids and asks for, all markets are returned if not assigned
2658
2658
  :param dict [params]: extra parameters specific to the coinbase api endpoint
2659
- :returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/en/latest/manual.html#ticker-structure>`
2659
+ :returns dict: a dictionary of `ticker structures <https://github.com/ccxt/ccxt/wiki/Manual#ticker-structure>`
2660
2660
  """
2661
2661
  self.load_markets()
2662
2662
  symbols = self.market_symbols(symbols)
ccxt/coinbasepro.py CHANGED
@@ -488,7 +488,7 @@ class coinbasepro(Exchange, ImplicitAPI):
488
488
  """
489
489
  query for balance and get the amount of funds available for trading or funds locked in orders
490
490
  :param dict [params]: extra parameters specific to the coinbasepro api endpoint
491
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
491
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
492
492
  """
493
493
  self.load_markets()
494
494
  response = self.privateGetAccounts(params)
@@ -789,7 +789,7 @@ class coinbasepro(Exchange, ImplicitAPI):
789
789
  :param int [since]: timestamp in ms of the earliest trade to fetch
790
790
  :param int [limit]: the maximum amount of trades to fetch
791
791
  :param dict [params]: extra parameters specific to the coinbasepro api endpoint
792
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
792
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
793
793
  """
794
794
  self.load_markets()
795
795
  market = self.market(symbol)
ccxt/coincheck.py CHANGED
@@ -187,7 +187,7 @@ class coincheck(Exchange, ImplicitAPI):
187
187
  """
188
188
  query for balance and get the amount of funds available for trading or funds locked in orders
189
189
  :param dict [params]: extra parameters specific to the coincheck api endpoint
190
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
190
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
191
191
  """
192
192
  self.load_markets()
193
193
  response = self.privateGetAccountsBalance(params)
@@ -471,7 +471,7 @@ class coincheck(Exchange, ImplicitAPI):
471
471
  :param int [since]: timestamp in ms of the earliest trade to fetch
472
472
  :param int [limit]: the maximum amount of trades to fetch
473
473
  :param dict [params]: extra parameters specific to the coincheck api endpoint
474
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
474
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
475
475
  """
476
476
  self.load_markets()
477
477
  market = self.market(symbol)
ccxt/coinex.py CHANGED
@@ -689,9 +689,9 @@ class coinex(Exchange, ImplicitAPI):
689
689
  'high': self.safe_string(ticker, 'high'),
690
690
  'low': self.safe_string(ticker, 'low'),
691
691
  'bid': self.safe_string(ticker, 'buy'),
692
- 'bidVolume': None,
692
+ 'bidVolume': self.safe_string(ticker, 'buy_amount'),
693
693
  'ask': self.safe_string(ticker, 'sell'),
694
- 'askVolume': None,
694
+ 'askVolume': self.safe_string(ticker, 'sell_amount'),
695
695
  'vwap': None,
696
696
  'open': self.safe_string(ticker, 'open'),
697
697
  'close': last,
@@ -1077,7 +1077,7 @@ class coinex(Exchange, ImplicitAPI):
1077
1077
  :param int [since]: timestamp in ms of the earliest trade to fetch
1078
1078
  :param int [limit]: the maximum amount of trades to fetch
1079
1079
  :param dict [params]: extra parameters specific to the coinex api endpoint
1080
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
1080
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
1081
1081
  """
1082
1082
  self.load_markets()
1083
1083
  market = self.market(symbol)
@@ -1452,7 +1452,7 @@ class coinex(Exchange, ImplicitAPI):
1452
1452
  see https://viabtc.github.io/coinex_api_en_doc/futures/#docsfutures001_http016_asset_query # swap
1453
1453
  :param dict [params]: extra parameters specific to the coinex api endpoint
1454
1454
  :param str [params.type]: 'margin', 'swap', 'financial', or 'spot'
1455
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
1455
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
1456
1456
  """
1457
1457
  marketType = None
1458
1458
  marketType, params = self.handle_market_type_and_params('fetchBalance', None, params)
@@ -3636,9 +3636,9 @@ class coinex(Exchange, ImplicitAPI):
3636
3636
  fetches historical funding rate prices
3637
3637
  :param str symbol: unified symbol of the market to fetch the funding rate history for
3638
3638
  :param int [since]: timestamp in ms of the earliest funding rate to fetch
3639
- :param int [limit]: the maximum amount of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>` to fetch
3639
+ :param int [limit]: the maximum amount of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>` to fetch
3640
3640
  :param dict [params]: extra parameters specific to the coinex api endpoint
3641
- :returns dict[]: a list of `funding rate structures <https://docs.ccxt.com/en/latest/manual.html?#funding-rate-history-structure>`
3641
+ :returns dict[]: a list of `funding rate structures <https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure>`
3642
3642
  """
3643
3643
  if symbol is None:
3644
3644
  raise ArgumentsRequired(self.id + ' fetchFundingRateHistory() requires a symbol argument')
ccxt/coinfalcon.py CHANGED
@@ -438,7 +438,7 @@ class coinfalcon(Exchange, ImplicitAPI):
438
438
  :param int [since]: timestamp in ms of the earliest trade to fetch
439
439
  :param int [limit]: the maximum amount of trades to fetch
440
440
  :param dict [params]: extra parameters specific to the coinfalcon api endpoint
441
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
441
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
442
442
  """
443
443
  self.load_markets()
444
444
  market = self.market(symbol)
@@ -517,7 +517,7 @@ class coinfalcon(Exchange, ImplicitAPI):
517
517
  """
518
518
  query for balance and get the amount of funds available for trading or funds locked in orders
519
519
  :param dict [params]: extra parameters specific to the coinfalcon api endpoint
520
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
520
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
521
521
  """
522
522
  self.load_markets()
523
523
  response = self.privateGetUserAccounts(params)
ccxt/coinmate.py CHANGED
@@ -318,7 +318,7 @@ class coinmate(Exchange, ImplicitAPI):
318
318
  """
319
319
  query for balance and get the amount of funds available for trading or funds locked in orders
320
320
  :param dict [params]: extra parameters specific to the coinmate api endpoint
321
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
321
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
322
322
  """
323
323
  self.load_markets()
324
324
  response = self.privatePostBalances(params)
@@ -629,7 +629,7 @@ class coinmate(Exchange, ImplicitAPI):
629
629
  :param int [since]: timestamp in ms of the earliest trade to fetch
630
630
  :param int [limit]: the maximum amount of trades to fetch
631
631
  :param dict [params]: extra parameters specific to the coinmate api endpoint
632
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
632
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
633
633
  """
634
634
  self.load_markets()
635
635
  market = self.market(symbol)
ccxt/coinone.py CHANGED
@@ -261,7 +261,7 @@ class coinone(Exchange, ImplicitAPI):
261
261
  """
262
262
  query for balance and get the amount of funds available for trading or funds locked in orders
263
263
  :param dict [params]: extra parameters specific to the coinone api endpoint
264
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
264
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
265
265
  """
266
266
  self.load_markets()
267
267
  response = self.privatePostAccountBalance(params)
@@ -446,7 +446,7 @@ class coinone(Exchange, ImplicitAPI):
446
446
  :param int [since]: timestamp in ms of the earliest trade to fetch
447
447
  :param int [limit]: the maximum amount of trades to fetch
448
448
  :param dict [params]: extra parameters specific to the coinone api endpoint
449
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
449
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
450
450
  """
451
451
  self.load_markets()
452
452
  market = self.market(symbol)
ccxt/coinsph.py CHANGED
@@ -223,6 +223,11 @@ class coinsph(Exchange, ImplicitAPI):
223
223
  'openapi/convert/v1/get-supported-trading-pairs': 1,
224
224
  'openapi/convert/v1/get-quote': 1,
225
225
  'openapi/convert/v1/accpet-quote': 1,
226
+ 'openapi/fiat/v1/support-channel': 1,
227
+ 'openapi/fiat/v1/cash-out': 1,
228
+ 'openapi/fiat/v1/history': 1,
229
+ 'openapi/migration/v4/sellorder': 1,
230
+ 'openapi/migration/v4/validate-field': 1,
226
231
  'openapi/transfer/v3/transfers': 1,
227
232
  },
228
233
  'delete': {
@@ -817,7 +822,7 @@ class coinsph(Exchange, ImplicitAPI):
817
822
  :param int [since]: timestamp in ms of the earliest trade to fetch
818
823
  :param int [limit]: the maximum amount of trades to fetch(default 500, max 1000)
819
824
  :param dict [params]: extra parameters specific to the coinsph api endpoint
820
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
825
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
821
826
  """
822
827
  self.load_markets()
823
828
  market = self.market(symbol)
@@ -974,7 +979,7 @@ class coinsph(Exchange, ImplicitAPI):
974
979
  """
975
980
  query for balance and get the amount of funds available for trading or funds locked in orders
976
981
  :param dict [params]: extra parameters specific to the coinsph api endpoint
977
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
982
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
978
983
  """
979
984
  self.load_markets()
980
985
  response = self.privateGetOpenapiV1Account(params)
ccxt/coinspot.py CHANGED
@@ -169,7 +169,7 @@ class coinspot(Exchange, ImplicitAPI):
169
169
  """
170
170
  query for balance and get the amount of funds available for trading or funds locked in orders
171
171
  :param dict [params]: extra parameters specific to the coinspot api endpoint
172
- :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
172
+ :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
173
173
  """
174
174
  self.load_markets()
175
175
  method = self.safe_string(self.options, 'fetchBalance', 'private_post_my_balances')
@@ -317,7 +317,7 @@ class coinspot(Exchange, ImplicitAPI):
317
317
  :param int [since]: timestamp in ms of the earliest trade to fetch
318
318
  :param int [limit]: the maximum amount of trades to fetch
319
319
  :param dict [params]: extra parameters specific to the coinspot api endpoint
320
- :returns Trade[]: a list of `trade structures <https://docs.ccxt.com/en/latest/manual.html?#public-trades>`
320
+ :returns Trade[]: a list of `trade structures <https://github.com/ccxt/ccxt/wiki/Manual#public-trades>`
321
321
  """
322
322
  self.load_markets()
323
323
  market = self.market(symbol)