ccxt 4.2.72 → 4.2.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (379) hide show
  1. package/README.md +124 -122
  2. package/build.sh +2 -2
  3. package/dist/ccxt.browser.js +3277 -460
  4. package/dist/ccxt.browser.min.js +4 -4
  5. package/dist/cjs/ccxt.js +6 -1
  6. package/dist/cjs/src/abstract/coinbaseinternational.js +9 -0
  7. package/dist/cjs/src/base/Exchange.js +31 -7
  8. package/dist/cjs/src/bitget.js +62 -50
  9. package/dist/cjs/src/btcturk.js +3 -3
  10. package/dist/cjs/src/bybit.js +90 -30
  11. package/dist/cjs/src/coinbaseinternational.js +2019 -0
  12. package/dist/cjs/src/gate.js +1 -1
  13. package/dist/cjs/src/htx.js +16 -9
  14. package/dist/cjs/src/hyperliquid.js +9 -2
  15. package/dist/cjs/src/mexc.js +1 -1
  16. package/dist/cjs/src/okx.js +1 -1
  17. package/dist/cjs/src/pro/coinbaseinternational.js +645 -0
  18. package/dist/cjs/src/pro/krakenfutures.js +8 -7
  19. package/examples/README.md +308 -0
  20. package/examples/ccxt.pro/html/watchTicker.html +51 -0
  21. package/examples/ccxt.pro/js/binance-fetch-balance-snapshot-watch-balance-updates.js +55 -0
  22. package/examples/ccxt.pro/js/binance-https-proxy.js +48 -0
  23. package/examples/ccxt.pro/js/binance-watch-ohlcv-many-symbols-continuously.js +38 -0
  24. package/examples/ccxt.pro/js/binance-watch-ohlcv-many-symbols.js +64 -0
  25. package/examples/ccxt.pro/js/binance-watch-ticker-many-symbols.js +62 -0
  26. package/examples/ccxt.pro/js/build-ohlcv-many-symbols.js +68 -0
  27. package/examples/ccxt.pro/js/calculate-ohlcvs-from-trades-warmup.js +82 -0
  28. package/examples/ccxt.pro/js/calculate-ohlcvs-from-trades.js +59 -0
  29. package/examples/ccxt.pro/js/exchange-capabitities.js +72 -0
  30. package/examples/ccxt.pro/js/exchange-close.js +46 -0
  31. package/examples/ccxt.pro/js/gateio-swap-watch-many-orderbooks.js +30 -0
  32. package/examples/ccxt.pro/js/gateio-watch-balance.js +23 -0
  33. package/examples/ccxt.pro/js/gateio-watch-order-book.js +71 -0
  34. package/examples/ccxt.pro/js/graceful-shutdown.js +43 -0
  35. package/examples/ccxt.pro/js/many-exchanges-many-streams.js +37 -0
  36. package/examples/ccxt.pro/js/okex-create-futures-order.js +48 -0
  37. package/examples/ccxt.pro/js/okex-watch-balance-and-create-order.js +54 -0
  38. package/examples/ccxt.pro/js/okx-watch-tickers.js +31 -0
  39. package/examples/ccxt.pro/js/one-exchange-many-different-streams.js +46 -0
  40. package/examples/ccxt.pro/js/one-exchange-many-streams-2.js +26 -0
  41. package/examples/ccxt.pro/js/one-exchange-many-streams.js +28 -0
  42. package/examples/ccxt.pro/js/socks-binance-watch-orderbook.js +30 -0
  43. package/examples/ccxt.pro/js/watch-fetch-many-exchanges-many-ordersbooks.js +40 -0
  44. package/examples/ccxt.pro/js/watch-many-exchanges-many-ordersbooks.js +38 -0
  45. package/examples/ccxt.pro/js/watch-many-exchanges-many-symbols.js +40 -0
  46. package/examples/ccxt.pro/js/watch-many-orderbooks.js +27 -0
  47. package/examples/ccxt.pro/js/watch-new-trades-only.js +43 -0
  48. package/examples/ccxt.pro/js/watch-new-trades.js +42 -0
  49. package/examples/ccxt.pro/js/watch-trades-many-symbols.js +29 -0
  50. package/examples/ccxt.pro/js/watch-vs-fetch.js +29 -0
  51. package/examples/cs/Examples.sln +22 -0
  52. package/examples/cs/c#.csproj +19 -0
  53. package/examples/html/basic-cors-proxy.html +46 -0
  54. package/examples/html/basic-inheritance.html +47 -0
  55. package/examples/html/basic-poller.html +52 -0
  56. package/examples/html/basic-rate-limiting.html +49 -0
  57. package/examples/html/basic.html +43 -0
  58. package/examples/html/binance-cors-proxy.html +28 -0
  59. package/examples/html/bitmex-browser-cors-proxy.js +7 -0
  60. package/examples/html/bitmex-cors.html +46 -0
  61. package/examples/html/tradingview-charts.html +61 -0
  62. package/examples/html/webworker/index.html +97 -0
  63. package/examples/html/webworker/worker.js +43 -0
  64. package/examples/js/README.md +15 -0
  65. package/examples/js/advanced-error-handling.js +39 -0
  66. package/examples/js/aggregate-orderbook.js +54 -0
  67. package/examples/js/arbitrage-pairs.js +130 -0
  68. package/examples/js/basic-chart.js +29 -0
  69. package/examples/js/basic-orderbook-polling.js +13 -0
  70. package/examples/js/bcc-vs-bch.js +115 -0
  71. package/examples/js/binance-fetch-all-deposits.js +45 -0
  72. package/examples/js/binance-fetch-ohlcv-many-symbols-async-await.js +34 -0
  73. package/examples/js/binance-fetch-ohlcv-many-symbols-promise-then-callbacks.js +33 -0
  74. package/examples/js/binance-fetchTicker-delivery-vs-future.js +31 -0
  75. package/examples/js/binance-futures-transfer-from-sub-account-to-master.js +41 -0
  76. package/examples/js/binance-margin-stop-order.js +39 -0
  77. package/examples/js/binance-server-time.js +34 -0
  78. package/examples/js/binance-universal-transfer.js +16 -0
  79. package/examples/js/bitfinex-fetch-trades.js +35 -0
  80. package/examples/js/bitfinex2-fetch-trades.js +35 -0
  81. package/examples/js/bitmex-browser-cors-proxy.js +7 -0
  82. package/examples/js/bitpanda-fetchMyTrades-reduce.js +36 -0
  83. package/examples/js/bitrue-fetch-balance.js +28 -0
  84. package/examples/js/bitstamp-private-api.js +115 -0
  85. package/examples/js/bitstamp-public-api.js +39 -0
  86. package/examples/js/bittrex-balance.js +50 -0
  87. package/examples/js/bittrex-fetch-closed-orders-history.js +69 -0
  88. package/examples/js/blockchaincom-withdrawal.js +59 -0
  89. package/examples/js/build-ohlcv-bars.js +48 -0
  90. package/examples/js/builtin-rate-limiting-rest-poller.js +25 -0
  91. package/examples/js/bybit-trailing.js +62 -0
  92. package/examples/js/bybit-updated.cjs +154 -0
  93. package/examples/js/cli.js +405 -0
  94. package/examples/js/coinbase-fetch-all-balances.js +36 -0
  95. package/examples/js/coinex-fetch-all-deposit-addresses-using-fetchDepositAddress.js +47 -0
  96. package/examples/js/coinex-futures.js +75 -0
  97. package/examples/js/coinone-fetch-tickers.js +54 -0
  98. package/examples/js/coinone-markets.js +16 -0
  99. package/examples/js/compare-two-exchanges-capabilities.js +36 -0
  100. package/examples/js/cors-proxy.js +5 -0
  101. package/examples/js/create-order-handle-errors.js +55 -0
  102. package/examples/js/create-order-position-with-takeprofit-stoploss.js +71 -0
  103. package/examples/js/create-order-with-retry.js +65 -0
  104. package/examples/js/create-order-ws-example.js +25 -0
  105. package/examples/js/create-orders-example.js +17 -0
  106. package/examples/js/create-trailing-amount-order.js +36 -0
  107. package/examples/js/create-trailing-percent-order.js +36 -0
  108. package/examples/js/credentials.json +5 -0
  109. package/examples/js/custom-proxy-agent-for-js.js +10 -0
  110. package/examples/js/custom-proxy-url.js +23 -0
  111. package/examples/js/delta-maintenance-margin-rate-max-leverage.js +60 -0
  112. package/examples/js/env-variables.js +26 -0
  113. package/examples/js/error-handling.js +89 -0
  114. package/examples/js/exchange-capabilities.js +135 -0
  115. package/examples/js/exchanges-by-volume.js +60 -0
  116. package/examples/js/exchanges.js +40 -0
  117. package/examples/js/fetch-all-balances.js +219 -0
  118. package/examples/js/fetch-all-tickers-to-files-2.js +53 -0
  119. package/examples/js/fetch-all-tickers-to-files.js +77 -0
  120. package/examples/js/fetch-balance.js +28 -0
  121. package/examples/js/fetch-create-deposit-address.js +101 -0
  122. package/examples/js/fetch-from-many-exchanges-simultaneously.js +21 -0
  123. package/examples/js/fetch-funding-rate-history.js +25 -0
  124. package/examples/js/fetch-futures/prettier.config.js +5 -0
  125. package/examples/js/fetch-futures/src/index.js +25 -0
  126. package/examples/js/fetch-ohlcv-from-to-mark-index-premium.js +72 -0
  127. package/examples/js/fetch-ohlcv-many-exchanges-continuosly.js +39 -0
  128. package/examples/js/fetch-ohlcv.js +16 -0
  129. package/examples/js/fetch-okex-futures.js +22 -0
  130. package/examples/js/fetch-orders.js +27 -0
  131. package/examples/js/fetch-ticker-from-multiple-exchanges.js +35 -0
  132. package/examples/js/fetch-ticker-where-available.js +75 -0
  133. package/examples/js/fetch-tickers/build/index.js +19 -0
  134. package/examples/js/fetch-tickers/prettier.config.js +5 -0
  135. package/examples/js/fetch-tickers/src/index.js +17 -0
  136. package/examples/js/gateio-create-batch-order.js +43 -0
  137. package/examples/js/gateio-futures.js +49 -0
  138. package/examples/js/gateio-open-close-contract.js +49 -0
  139. package/examples/js/gateio-swaps.js +74 -0
  140. package/examples/js/gdax-fetch-trades-pagination.js +29 -0
  141. package/examples/js/hitbtc2-withdraw.js +61 -0
  142. package/examples/js/how-to-import-one-exchange-esm.js +10 -0
  143. package/examples/js/huobi-futures.js +71 -0
  144. package/examples/js/huobi-open-close-contract.js +63 -0
  145. package/examples/js/huobi-swaps.js +70 -0
  146. package/examples/js/huobipro-market-buy-sell-fetch-trading-limits.js +98 -0
  147. package/examples/js/hybridCJSExample.cjs +19 -0
  148. package/examples/js/hybridESMExample.js +19 -0
  149. package/examples/js/idex-fetch-balance.js +13 -0
  150. package/examples/js/instantiate-all-at-once.js +46 -0
  151. package/examples/js/instantiate-all-from-json.js +31 -0
  152. package/examples/js/kraken-create-and-close-position.js +54 -0
  153. package/examples/js/kraken-fetch-order-trades.js +33 -0
  154. package/examples/js/kraken-margin-trading.js +89 -0
  155. package/examples/js/kucoin-rate-limit.js +38 -0
  156. package/examples/js/latoken-example.js +108 -0
  157. package/examples/js/live-orderbook.js +106 -0
  158. package/examples/js/live-ticker.js +80 -0
  159. package/examples/js/live-tickers.js +74 -0
  160. package/examples/js/load-all-contracts.js +41 -0
  161. package/examples/js/load-all-symbols-at-once.js +69 -0
  162. package/examples/js/load-all-tickers-at-once.js +91 -0
  163. package/examples/js/load-markets-to-files.js +57 -0
  164. package/examples/js/looping-over-all-symbols-of-specific-exchanges.js +61 -0
  165. package/examples/js/looping-over-specific-symbols-of-all-exchanges.js +91 -0
  166. package/examples/js/margin-loan-borrow-buy-sell-repay.js +70 -0
  167. package/examples/js/market-status-and-currency-status.js +29 -0
  168. package/examples/js/ohlcv-console-chart.js +29 -0
  169. package/examples/js/okex-fetch-closed-orders-archive.js +31 -0
  170. package/examples/js/okex-transfer.js +51 -0
  171. package/examples/js/okx-poll-fetch-my-trades.js +37 -0
  172. package/examples/js/okx-poll-rate-limit.js +48 -0
  173. package/examples/js/order-book-extra-level-depth-param.js +20 -0
  174. package/examples/js/phemex-create-order-position-with-takeprofit-stoploss.js +49 -0
  175. package/examples/js/poll-ohlcv.js +43 -0
  176. package/examples/js/poloniex-fetch-order-books.js +35 -0
  177. package/examples/js/poloniex-limits-amount-min.js +62 -0
  178. package/examples/js/proxy-round-robin.js +98 -0
  179. package/examples/js/proxy-usage.js +32 -0
  180. package/examples/js/sample-local-proxy-server-with-cors.js +12 -0
  181. package/examples/js/search-all-exchanges.js +159 -0
  182. package/examples/js/shared-load-markets.js +80 -0
  183. package/examples/js/sort-swap-markets-by-hourly-price-change.js +55 -0
  184. package/examples/js/symbols.js +110 -0
  185. package/examples/js/theocean.js +41 -0
  186. package/examples/js/tickers.js +106 -0
  187. package/examples/js/validate-paginated-data.js +61 -0
  188. package/examples/js/watch-OHLCV-For-Symbols.js +15 -0
  189. package/examples/js/watch-OHLCV.js +12 -0
  190. package/examples/js/watch-OrderBook-For-Symbols.js +11 -0
  191. package/examples/js/watch-Trades-For-Symbols.js +11 -0
  192. package/examples/js/watch-tickers.js +11 -0
  193. package/examples/js/watchOHLCVForSymbols.js +15 -0
  194. package/examples/js/watchOrderBookForSymbols.js +11 -0
  195. package/examples/js/watchPositions-many-exchanges-continuosly.d.ts +2 -0
  196. package/examples/js/watchPositions-many-exchanges-continuosly.d.ts.map +1 -0
  197. package/examples/js/watchPositions-many-exchanges-continuosly.js +49 -0
  198. package/examples/js/watchPositions.d.ts +2 -0
  199. package/examples/js/watchPositions.d.ts.map +1 -0
  200. package/examples/js/watchPositions.js +13 -0
  201. package/examples/js/watchPositionsForSymbols.d.ts +2 -0
  202. package/examples/js/watchPositionsForSymbols.d.ts.map +1 -0
  203. package/examples/js/watchPositionsForSymbols.js +14 -0
  204. package/examples/js/watchTradesForSymbols.js +11 -0
  205. package/examples/js/withdraw-from-one-exchange-to-another.js +50 -0
  206. package/examples/php/README.md +7 -0
  207. package/examples/py/README.md +15 -0
  208. package/examples/py/playing_with_ccxt_example.ipynb +222 -0
  209. package/examples/ts/.eslintrc +111 -0
  210. package/examples/ts/build-ohlcv-bars.ts +53 -0
  211. package/examples/ts/cli.ts +397 -0
  212. package/examples/ts/compare-two-exchanges-capabilities.ts +36 -0
  213. package/examples/ts/create-order-position-with-takeprofit-stoploss.ts +89 -0
  214. package/examples/ts/create-order-ws-example.ts +33 -0
  215. package/examples/ts/create-orders-example.ts +21 -0
  216. package/examples/ts/create-trailing-amount-order.ts +37 -0
  217. package/examples/ts/create-trailing-percent-order.ts +37 -0
  218. package/examples/ts/custom-proxy-agent-for-js.ts +14 -0
  219. package/examples/ts/fetch-futures/package-lock.json +116 -0
  220. package/examples/ts/fetch-futures/package.json +34 -0
  221. package/examples/ts/fetch-futures/prettier.config.js +4 -0
  222. package/examples/ts/fetch-futures/src/index.ts +28 -0
  223. package/examples/ts/fetch-futures/tsconfig.json +28 -0
  224. package/examples/ts/fetch-ohlcv-many-exchanges-continuosly.ts +44 -0
  225. package/examples/ts/fetch-ohlcv.ts +17 -0
  226. package/examples/ts/fetch-tickers/package-lock.json +116 -0
  227. package/examples/ts/fetch-tickers/package.json +34 -0
  228. package/examples/ts/fetch-tickers/prettier.config.js +4 -0
  229. package/examples/ts/fetch-tickers/src/index.ts +21 -0
  230. package/examples/ts/fetch-tickers/tsconfig.json +28 -0
  231. package/examples/ts/how-to-import-one-exchange-esm.ts +11 -0
  232. package/examples/ts/kraken-create-and-close-position.ts +69 -0
  233. package/examples/ts/margin-loan-borrow-buy-sell-repay.ts +72 -0
  234. package/examples/ts/nextjs-page-router/.eslintrc.json +3 -0
  235. package/examples/ts/nextjs-page-router/README.md +43 -0
  236. package/examples/ts/nextjs-page-router/next.config.js +6 -0
  237. package/examples/ts/nextjs-page-router/package-lock.json +7425 -0
  238. package/examples/ts/nextjs-page-router/package.json +28 -0
  239. package/examples/ts/nextjs-page-router/postcss.config.js +6 -0
  240. package/examples/ts/nextjs-page-router/public/favicon.ico +0 -0
  241. package/examples/ts/nextjs-page-router/src/pages/_app.tsx +6 -0
  242. package/examples/ts/nextjs-page-router/src/pages/_document.tsx +13 -0
  243. package/examples/ts/nextjs-page-router/src/pages/balance.tsx +46 -0
  244. package/examples/ts/nextjs-page-router/src/pages/index.tsx +8 -0
  245. package/examples/ts/nextjs-page-router/src/pages/tickers.tsx +61 -0
  246. package/examples/ts/nextjs-page-router/src/styles/globals.css +27 -0
  247. package/examples/ts/nextjs-page-router/tailwind.config.ts +20 -0
  248. package/examples/ts/nextjs-page-router/tsconfig.json +22 -0
  249. package/examples/ts/phemex-create-order-position-with-takeprofit-stoploss.ts +62 -0
  250. package/examples/ts/proxy-usage.ts +41 -0
  251. package/examples/ts/sample-local-proxy-server-with-cors.ts +15 -0
  252. package/examples/ts/watch-OHLCV-For-Symbols.ts +17 -0
  253. package/examples/ts/watch-OHLCV.ts +14 -0
  254. package/examples/ts/watch-OrderBook-For-Symbols.ts +13 -0
  255. package/examples/ts/watch-Trades-For-Symbols.ts +13 -0
  256. package/examples/ts/watch-tickers.ts +13 -0
  257. package/examples/ts/watchPositions-many-exchanges-continuosly.ts +53 -0
  258. package/examples/ts/watchPositions.ts +15 -0
  259. package/examples/ts/watchPositionsForSymbols.ts +16 -0
  260. package/examples/tsconfig.json +27 -0
  261. package/js/ccxt.d.ts +8 -2
  262. package/js/ccxt.js +6 -2
  263. package/js/src/abstract/coinbaseinternational.d.ts +42 -0
  264. package/js/src/abstract/coinbaseinternational.js +11 -0
  265. package/js/src/ace.d.ts +2 -2
  266. package/js/src/alpaca.d.ts +2 -2
  267. package/js/src/ascendex.d.ts +3 -3
  268. package/js/src/base/Exchange.d.ts +27 -24
  269. package/js/src/base/Exchange.js +31 -7
  270. package/js/src/bigone.d.ts +2 -2
  271. package/js/src/binance.d.ts +7 -7
  272. package/js/src/bingx.d.ts +4 -4
  273. package/js/src/bit2c.d.ts +2 -2
  274. package/js/src/bitbank.d.ts +2 -2
  275. package/js/src/bitbns.d.ts +2 -2
  276. package/js/src/bitfinex.d.ts +3 -3
  277. package/js/src/bitfinex2.d.ts +4 -4
  278. package/js/src/bitflyer.d.ts +2 -2
  279. package/js/src/bitget.d.ts +4 -4
  280. package/js/src/bitget.js +62 -50
  281. package/js/src/bithumb.d.ts +2 -2
  282. package/js/src/bitmart.d.ts +4 -4
  283. package/js/src/bitmex.d.ts +3 -3
  284. package/js/src/bitopro.d.ts +2 -2
  285. package/js/src/bitrue.d.ts +2 -2
  286. package/js/src/bitso.d.ts +2 -2
  287. package/js/src/bitstamp.d.ts +2 -2
  288. package/js/src/bitteam.d.ts +2 -2
  289. package/js/src/bitvavo.d.ts +4 -4
  290. package/js/src/bl3p.d.ts +2 -2
  291. package/js/src/blockchaincom.d.ts +2 -2
  292. package/js/src/blofin.d.ts +4 -4
  293. package/js/src/btcalpha.d.ts +2 -2
  294. package/js/src/btcbox.d.ts +2 -2
  295. package/js/src/btcmarkets.d.ts +2 -2
  296. package/js/src/btcturk.d.ts +2 -2
  297. package/js/src/btcturk.js +3 -3
  298. package/js/src/bybit.d.ts +8 -6
  299. package/js/src/bybit.js +90 -30
  300. package/js/src/cex.d.ts +3 -3
  301. package/js/src/coinbase.d.ts +3 -3
  302. package/js/src/coinbaseinternational.d.ts +146 -0
  303. package/js/src/coinbaseinternational.js +2020 -0
  304. package/js/src/coinbasepro.d.ts +2 -2
  305. package/js/src/coincheck.d.ts +2 -2
  306. package/js/src/coinex.d.ts +4 -4
  307. package/js/src/coinlist.d.ts +3 -3
  308. package/js/src/coinmate.d.ts +2 -2
  309. package/js/src/coinmetro.d.ts +2 -2
  310. package/js/src/coinone.d.ts +2 -2
  311. package/js/src/coinsph.d.ts +2 -2
  312. package/js/src/coinspot.d.ts +2 -2
  313. package/js/src/cryptocom.d.ts +4 -4
  314. package/js/src/currencycom.d.ts +2 -2
  315. package/js/src/delta.d.ts +3 -3
  316. package/js/src/deribit.d.ts +3 -3
  317. package/js/src/digifinex.d.ts +3 -3
  318. package/js/src/exmo.d.ts +3 -3
  319. package/js/src/gate.d.ts +4 -4
  320. package/js/src/gate.js +1 -1
  321. package/js/src/gemini.d.ts +2 -2
  322. package/js/src/hitbtc.d.ts +4 -4
  323. package/js/src/hollaex.d.ts +2 -2
  324. package/js/src/htx.d.ts +5 -5
  325. package/js/src/htx.js +16 -9
  326. package/js/src/huobijp.d.ts +2 -2
  327. package/js/src/hyperliquid.d.ts +4 -3
  328. package/js/src/hyperliquid.js +10 -3
  329. package/js/src/idex.d.ts +2 -2
  330. package/js/src/independentreserve.d.ts +2 -2
  331. package/js/src/indodax.d.ts +2 -2
  332. package/js/src/kraken.d.ts +3 -3
  333. package/js/src/krakenfutures.d.ts +4 -4
  334. package/js/src/kucoin.d.ts +4 -4
  335. package/js/src/kucoinfutures.d.ts +3 -3
  336. package/js/src/kuna.d.ts +2 -2
  337. package/js/src/latoken.d.ts +2 -2
  338. package/js/src/lbank.d.ts +2 -2
  339. package/js/src/luno.d.ts +2 -2
  340. package/js/src/lykke.d.ts +2 -2
  341. package/js/src/mercado.d.ts +2 -2
  342. package/js/src/mexc.d.ts +2 -2
  343. package/js/src/mexc.js +1 -1
  344. package/js/src/ndax.d.ts +3 -3
  345. package/js/src/novadax.d.ts +2 -2
  346. package/js/src/oceanex.d.ts +2 -2
  347. package/js/src/okcoin.d.ts +3 -3
  348. package/js/src/okx.d.ts +4 -4
  349. package/js/src/okx.js +1 -1
  350. package/js/src/onetrading.d.ts +2 -2
  351. package/js/src/p2b.d.ts +2 -2
  352. package/js/src/paymium.d.ts +2 -2
  353. package/js/src/phemex.d.ts +3 -3
  354. package/js/src/poloniex.d.ts +3 -3
  355. package/js/src/poloniexfutures.d.ts +2 -2
  356. package/js/src/pro/binance.d.ts +3 -3
  357. package/js/src/pro/bitvavo.d.ts +3 -3
  358. package/js/src/pro/cex.d.ts +3 -3
  359. package/js/src/pro/coinbaseinternational.d.ts +28 -0
  360. package/js/src/pro/coinbaseinternational.js +646 -0
  361. package/js/src/pro/cryptocom.d.ts +2 -2
  362. package/js/src/pro/hitbtc.d.ts +2 -2
  363. package/js/src/pro/kraken.d.ts +3 -3
  364. package/js/src/pro/krakenfutures.js +8 -7
  365. package/js/src/pro/okx.d.ts +3 -3
  366. package/js/src/pro/poloniex.d.ts +2 -2
  367. package/js/src/probit.d.ts +2 -2
  368. package/js/src/timex.d.ts +3 -3
  369. package/js/src/tokocrypto.d.ts +2 -2
  370. package/js/src/upbit.d.ts +2 -2
  371. package/js/src/wavesexchange.d.ts +2 -2
  372. package/js/src/wazirx.d.ts +2 -2
  373. package/js/src/whitebit.d.ts +2 -2
  374. package/js/src/woo.d.ts +5 -5
  375. package/js/src/yobit.d.ts +2 -2
  376. package/js/src/zaif.d.ts +2 -2
  377. package/js/src/zonda.d.ts +2 -2
  378. package/package.json +4 -1
  379. package/skip-tests.json +227 -424
package/skip-tests.json CHANGED
@@ -33,12 +33,10 @@
33
33
  },
34
34
  "ticker": {
35
35
  "low":"16 Aug - happened weird negative 24hr low",
36
- "bid":"messed bid-ask",
37
- "ask":"messed bid-ask"
36
+ "bid":"messed bid-ask"
38
37
  },
39
38
  "orderBook": {
40
- "bid":"messed bid-ask",
41
- "ask":"messed bid-ask"
39
+ "bid":"messed bid-ask"
42
40
  }
43
41
  }
44
42
  },
@@ -48,8 +46,7 @@
48
46
  "currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/264802937#L2194"
49
47
  },
50
48
  "ticker": {
51
- "bid":"broken bid-ask",
52
- "ask":"broken bid-ask"
49
+ "bid":"broken bid-ask"
53
50
  },
54
51
  "orderBook": {
55
52
  "spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269129438#L3841"
@@ -68,7 +65,7 @@
68
65
  "networks": "not yet unified"
69
66
  },
70
67
  "ticker": {
71
- "quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466"
68
+ "baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466"
72
69
  }
73
70
  }
74
71
  },
@@ -88,8 +85,7 @@
88
85
  "expiryDatetime": "expiry not set for future markets"
89
86
  },
90
87
  "ticker": {
91
- "quoteVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466",
92
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
88
+ "baseVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466"
93
89
  },
94
90
  "fetchStatus": "private endpoints"
95
91
  }
@@ -102,8 +98,7 @@
102
98
  "expiryDatetime": "expiry not set for future markets"
103
99
  },
104
100
  "ticker": {
105
- "quoteVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/268171081#L2414",
106
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
101
+ "baseVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/268171081#L2414"
107
102
  },
108
103
  "watchOrderBook": "out of order update"
109
104
  }
@@ -112,8 +107,7 @@
112
107
  "httpsProxy": "http://5.75.153.75:8002",
113
108
  "skipMethods": {
114
109
  "ticker": {
115
- "quoteVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466",
116
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
110
+ "baseVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466"
117
111
  },
118
112
  "fetchPositions": "currently returns a lot of default/non open positions",
119
113
  "fetchLedger": {
@@ -139,9 +133,8 @@
139
133
  "maker": "not provided",
140
134
  "info":"null"
141
135
  },
142
- "fetchOrderBook": {
143
- "bid":"sometimes equals to zero: https://app.travis-ci.com/github/ccxt/ccxt/builds/267809189#L2540",
144
- "ask":"same"
136
+ "orderBook": {
137
+ "bid":"sometimes equals to zero: https://app.travis-ci.com/github/ccxt/ccxt/builds/267809189#L2540"
145
138
  }
146
139
  }
147
140
  },
@@ -166,7 +159,10 @@
166
159
  "active": "not provided",
167
160
  "currencyIdAndCode": "broken"
168
161
  },
169
- "fetchTickers": "unknown symbol might be returned"
162
+ "ticker": {
163
+ "symbol": "might be missing",
164
+ "spread": "ask equals to bid"
165
+ }
170
166
  }
171
167
  },
172
168
  "bitcoincom": {
@@ -175,12 +171,11 @@
175
171
  "bitfinex": {
176
172
  "skipMethods": {
177
173
  "loadMarkets": "linear and inverse values are same",
178
- "fetchTickers": {
174
+ "ticker": {
179
175
  "symbol": "something broken with symbol",
180
- "ask": "https://app.travis-ci.com/github/ccxt/ccxt/builds/262965121#L3179",
181
- "bid": "same"
176
+ "bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/262965121#L3179"
182
177
  },
183
- "watchOrderBook":{
178
+ "orderBook":{
184
179
  "symbol": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L3846"
185
180
  }
186
181
  }
@@ -194,40 +189,24 @@
194
189
  "withdraw": "not provided",
195
190
  "deposit": "not provided"
196
191
  },
197
- "fetchTicker": {
192
+ "ticker": {
198
193
  "spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3651",
199
- "ask": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269327874#L3234",
194
+ "ask": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L3783",
195
+ "bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269327874#L3234",
200
196
  "open": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269177570#L3624",
201
197
  "bidVolume": "sometimes negative",
202
198
  "askVolume": "sometimes negative"
203
199
  },
204
- "fetchTickers": {
205
- "spread": "same", "ask": "same", "open": "same", "bidVolume": "same", "askVolume": "same"
206
- },
207
- "watchTicker": {
208
- "spread": "same", "ask": "same", "open": "same", "bidVolume": "same", "askVolume": "same"
209
- },
210
- "watchTickers": {
211
- "spread": "same", "ask": "same", "open": "same", "bidVolume": "same", "askVolume": "same"
212
- },
213
- "fetchOrderBook": {
200
+ "orderBook": {
214
201
  "bid": "multiple bids might have same value"
215
202
  },
216
- "fetchL2OrderBook": {
217
- "bid": "same"
218
- },
219
- "watchOrderBook": "complete skip because of frequent checksum mismatches: https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3553 and also for this https://app.travis-ci.com/github/ccxt/ccxt/builds/269129438#L3999",
220
- "watchOrderBookForSymbols": {
221
- "bid": "same"
222
- }
203
+ "watchOrderBook": "complete skip because of frequent checksum mismatches: https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3553 and also for this https://app.travis-ci.com/github/ccxt/ccxt/builds/269129438#L3999"
223
204
  }
224
205
  },
225
206
  "bitflyer": {
226
- "skip": true,
227
- "until": "2024-02-14",
228
207
  "skipMethods": {
229
208
  "loadMarkets": "contract is true, but contractSize is undefined",
230
- "fetchTrades": {
209
+ "trade": {
231
210
  "side": "side key has an null value, but is expected to have a value"
232
211
  }
233
212
  }
@@ -245,39 +224,20 @@
245
224
  "withdraw": "not provided",
246
225
  "deposit": "not provided"
247
226
  },
248
- "fetchTickers": {
227
+ "ticker": {
249
228
  "bid":"broken bid-ask",
250
- "ask":"broken bid-ask",
251
229
  "open": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269099593#L3833",
252
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
253
230
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
254
- },
255
- "watchTrades": {
256
- "timestamp": "ts order is reverted (descending)"
257
231
  }
258
232
  }
259
233
  },
260
234
  "bithumb": {
261
235
  "skipMethods": {
262
- "fetchTickers": {
263
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
264
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
265
- },
266
- "fetchTicker": {
267
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
236
+ "ticker": {
268
237
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
269
238
  },
270
- "fetchOrderBook": {
271
- "ask": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L4074"
272
- },
273
- "fetchL2OrderBook": {
274
- "ask": "same as above"
275
- },
276
- "watchOrderBook": {
277
- "ask": "same as above"
278
- },
279
- "watchOrderBookForSymbols": {
280
- "ask": "same as above"
239
+ "orderBook": {
240
+ "bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L4074"
281
241
  }
282
242
  }
283
243
  },
@@ -294,34 +254,14 @@
294
254
  "precision":"not provided",
295
255
  "networks": "missing"
296
256
  },
297
- "fetchTickers": {
257
+ "ticker": {
298
258
  "spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269177564#L3615",
299
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
300
- "ask": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269331129#L3609"
301
- },
302
- "fetchTicker": {
303
- "spread": "same", "quoteVolume": "same", "ask": "same"
304
- },
305
- "watchTickers": {
306
- "spread": "same", "quoteVolume": "same", "ask": "same"
307
- },
308
- "watchTicker": {
309
- "spread": "same", "quoteVolume": "same", "ask": "same"
259
+ "baseVolume": "quoteVolume >= baseVolume * low is failing",
260
+ "bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269331129#L3609"
310
261
  },
311
- "fetchOrderBook": {
262
+ "orderBook": {
312
263
  "spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269177564#L3946"
313
264
  },
314
- "fetchL2OrderBook": {
315
- "spread": "same"
316
- },
317
- "watchOrderBook": {
318
- "nonce":"missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4256",
319
- "spread": "same"
320
- },
321
- "watchOrderBookForSymbols": {
322
- "nonce":"same",
323
- "spread": "same"
324
- },
325
265
  "watchTrades":{
326
266
  "side": "not set https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4312",
327
267
  "timestamp": "messed order coming from exchange"
@@ -333,9 +273,16 @@
333
273
  "loadMarkets": "some market types are out of expected market-types",
334
274
  "fetchOHLCV": "https://github.com/ccxt/ccxt/pull/21356#issuecomment-1969565862",
335
275
  "watchOHLCV": "same as above, needs key fix",
336
- "fetchTickers": "negative values",
337
- "watchTickers": {
338
- "open": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269367056#L3473"
276
+ "ticker": {
277
+ "average": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L4030",
278
+ "open": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269367056#L3473",
279
+ "close": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269454230#L3862",
280
+ "last": "same",
281
+ "low": "same",
282
+ "high": "same",
283
+ "previousClose": "same",
284
+ "vwap": "same",
285
+ "baseVolume":"temp"
339
286
  },
340
287
  "fetchPositions": {
341
288
  "stopLossPrice": "undefined",
@@ -374,8 +321,7 @@
374
321
  "currency": "undefined",
375
322
  "currencyIdAndCode": "messes codes"
376
323
  },
377
- "fetchTransactions": "skip",
378
- "watchTrades": "infrequent updates"
324
+ "fetchTransactions": "skip"
379
325
  }
380
326
  },
381
327
  "bitopro": {
@@ -389,7 +335,7 @@
389
335
  "currencyIdAndCode": "broken currencies"
390
336
  },
391
337
  "watchTicker": "datetime error: https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4373",
392
- "watchOrderBook": {
338
+ "orderBook": {
393
339
  "nonce": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4373"
394
340
  }
395
341
  }
@@ -399,11 +345,15 @@
399
345
  "until": "2024-03-28",
400
346
  "skipWs": true,
401
347
  "skipMethods": {
402
- "fetchOrderBook": "some bid might be lower than next bid",
403
- "fetchL2OrderBook": "same",
404
348
  "fetchCurrencies": {
405
349
  "withdraw": "not provided",
406
350
  "deposit": "not provided"
351
+ },
352
+ "orderBook":{
353
+ "bid": "messed bids sequence"
354
+ },
355
+ "fetchTrades": {
356
+ "emptyResponse": "sometimes response is empty"
407
357
  }
408
358
  }
409
359
  },
@@ -422,8 +372,9 @@
422
372
  "fetchTrades": {
423
373
  "side": "not set"
424
374
  },
425
- "fetchTickers": "skip",
426
- "fetchTicker": "skip"
375
+ "ticker": {
376
+ "baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269454230#L4164"
377
+ }
427
378
  }
428
379
  },
429
380
  "bitso": {
@@ -432,27 +383,24 @@
432
383
  "loadMarkets": {
433
384
  "active": "not provided"
434
385
  },
435
- "fetchOrderBook": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269129438#L4148",
386
+ "orderBook": {
387
+ "bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269129438#L4148"
388
+ },
436
389
  "fetchOHLCV": "randomly failing with 404 not found"
437
390
  }
438
391
  },
439
392
  "bitstamp": {
440
393
  "skipMethods": {
441
- "fetchOrderBook": "bid/ask might be 0",
442
- "fetchL2OrderBook": "same",
443
394
  "fetchCurrencies": {
444
395
  "withdraw": "not provided",
445
396
  "deposit": "not provided"
446
397
  },
447
- "fetchTicker": {
448
- "bid": "greater than ask https://app.travis-ci.com/github/ccxt/ccxt/builds/264241638#L3027",
449
- "baseVolume": "baseVolume * low = 8.43e-6 * 3692.59081464 = 0.03112854056 < 0.0311285405674152",
450
- "quoteVolume": "quoteVolume >= baseVolume * low <<< bitstamp fetchTickers"
398
+ "orderBook": {
399
+ "bid": "bid/ask might be 0"
451
400
  },
452
- "fetchTickers": {
453
- "bid": "same",
454
- "baseVolume": "same",
455
- "quoteVolume": "same"
401
+ "ticker": {
402
+ "bid": "greater than ask https://app.travis-ci.com/github/ccxt/ccxt/builds/264241638#L3027",
403
+ "baseVolume": "baseVolume * low = 8.43e-6 * 3692.59081464 = 0.03112854056 < 0.0311285405674152"
456
404
  },
457
405
  "watchOrderBook": "something broken https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4473 and https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4504"
458
406
  }
@@ -471,19 +419,18 @@
471
419
  },
472
420
  "bitvavo": {
473
421
  "skipMethods": {
474
- "fetchCurrencies": {
475
- "precision": "not provided",
476
- "networks": "missing"
477
- },
478
422
  "loadMarkets": {
479
423
  "currencyIdAndCode": "broken currencies",
480
424
  "taker": "is undefined",
481
425
  "maker": "is undefined"
482
426
  },
483
- "fetchTickers": {
427
+ "fetchCurrencies": {
428
+ "precision": "not provided",
429
+ "networks": "missing"
430
+ },
431
+ "ticker": {
484
432
  "bid":"broken bid-ask",
485
- "ask":"broken bid-ask",
486
- "quoteVolume": "quoteVolume >= baseVolume * low is failing https://app.travis-ci.com/github/ccxt/ccxt/builds/266144312#L2220"
433
+ "baseVolume": "quoteVolume >= baseVolume * low is failing https://app.travis-ci.com/github/ccxt/ccxt/builds/266144312#L2220"
487
434
  }
488
435
  }
489
436
  },
@@ -493,8 +440,9 @@
493
440
  "taker":"not provided",
494
441
  "maker":"not provided"
495
442
  },
496
- "fetchOrderBook": "bid should be greater than next bid",
497
- "fetchL2OrderBook": "same",
443
+ "orderBook": {
444
+ "bid": "messed bid-ask sequence"
445
+ },
498
446
  "watchOrderBook": {
499
447
  "nonce": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4517 and https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4562"
500
448
  }
@@ -507,34 +455,24 @@
507
455
  "active":"is undefined",
508
456
  "info": "null"
509
457
  },
510
- "fetchOrderBook": "bids[0][0] (3787971.0) should be < than asks[0][0] (3787971.0) <<< btcbox ",
511
- "fetchL2OrderBook": "bids[0][0] (3787971.0) should be < than asks[0][0] (3787971.0) <<< btcbox ",
512
- "fetchTickers": {
513
- "bid":"broken bid-ask",
514
- "ask":"broken bid-ask"
458
+ "orderBook": {
459
+ "bid":"bids[0][0] (3787971.0) should be < than asks[0][0] (3787971.0) <<< btcbox "
515
460
  },
516
- "fetchTicker": {
517
- "bid":"broken bid-ask",
518
- "ask":"broken bid-ask"
461
+ "ticker": {
462
+ "bid":"broken bid-ask"
519
463
  }
520
464
  }
521
465
  },
522
466
  "btcalpha": {
523
467
  "skip": true,
524
468
  "skipMethods": {
525
- "fetchOrderBook": "bids[0][0] is not < asks[0][0]",
526
- "fetchL2OrderBook": "same",
527
- "fetchTickers": {
469
+ "orderBook": {
470
+ "bid":"bids[0][0] is not < asks[0][0]"
471
+ },
472
+ "ticker": {
528
473
  "symbol": "https://app.travis-ci.com/github/ccxt/ccxt/builds/265171549#L2518",
529
474
  "percentage": "broken",
530
- "bid": "messed bid-ask",
531
- "ask": "messed bid-ask"
532
- },
533
- "fetchTicker": {
534
- "percentage": "",
535
- "symbol": "",
536
- "bid": "",
537
- "ask": ""
475
+ "bid": "messed bid-ask"
538
476
  }
539
477
  }
540
478
  },
@@ -543,8 +481,9 @@
543
481
  "loadMarkets":{
544
482
  "active":"is undefined"
545
483
  },
546
- "fetchOrderBook": "bid should be greater than next bid",
547
- "fetchL2OrderBook": "same"
484
+ "orderBook": {
485
+ "bid": "messed bid-ask sequence"
486
+ }
548
487
  }
549
488
  },
550
489
  "btcturk": {
@@ -556,18 +495,14 @@
556
495
  "httpsProxy": "http://5.75.153.75:8002",
557
496
  "wsProxy": "http://5.75.153.75:8002",
558
497
  "skipMethods": {
559
- "fetchTickers": {
560
- "symbol" :"returned symbol is not same as requested symbol. i.e. BTC/USDT:USDT vs BTC/USDT"
561
- },
562
- "fetchTicker": {
563
- "symbol" :"same"
498
+ "loadMarkets": {
499
+ "currencyIdAndCode": "temp skip"
564
500
  },
565
- "fetchTrades": "endpoint return Internal System Error",
566
501
  "fetchCurrencies": {
567
502
  "currencyIdAndCode": "temp skip"
568
503
  },
569
- "loadMarkets": {
570
- "currencyIdAndCode": "temp skip"
504
+ "ticker": {
505
+ "symbol" :"returned symbol is not same as requested symbol. i.e. BTC/USDT:USDT vs BTC/USDT"
571
506
  },
572
507
  "fetchPositions": "currently returns a lot of default/non open positions",
573
508
  "fetchLedger": {
@@ -579,29 +514,25 @@
579
514
  "openInterestAmount": "openInterestAmount is not provided"
580
515
  },
581
516
  "fetchBorrowRate": "does not work with unified account",
582
- "watchOrderBook": {
517
+ "orderBook": {
583
518
  "spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269352042#L3669"
584
- },
585
- "watchOrderBookForSymbols": {
586
- "spread": "same"
587
519
  }
588
520
  }
589
521
  },
590
522
  "bigone": {
591
523
  "skipMethods": {
524
+ "loadMarkets": {
525
+ "taker": "key is there when run locally, but not on travis",
526
+ "maker": "key is there when run locally, but not on travis",
527
+ "currencyIdAndCode": true
528
+ },
592
529
  "fetchCurrencies": {
593
530
  "withdraw": "not provided",
594
531
  "deposit": "not provided"
595
532
  },
596
- "fetchTickers": {
533
+ "ticker": {
597
534
  "bid": "broken bid-ask",
598
- "ask": "broken bid-ask",
599
535
  "baseVolume": "negative value"
600
- },
601
- "loadMarkets": {
602
- "taker": "key is there when run locally, but not on travis",
603
- "maker": "key is there when run locally, but not on travis",
604
- "currencyIdAndCode": true
605
536
  }
606
537
  }
607
538
  },
@@ -618,8 +549,8 @@
618
549
  }
619
550
  },
620
551
  "coinbase": {
621
- "skipWs": "needs auth",
622
552
  "skip": "private endpoints",
553
+ "skipWs": "needs auth",
623
554
  "skipMethods": {
624
555
  "fetchCurrencies": {
625
556
  "precision": "not provided"
@@ -637,6 +568,19 @@
637
568
  }
638
569
  }
639
570
  },
571
+ "coinbaseinternational": {
572
+ "skipMethods": {
573
+ "loadMarkets": {
574
+ "currencyIdAndCode": "i.e. coinbase does not have currency code TIA"
575
+ },
576
+ "fetchCurrencies": {
577
+ "precision": "not provided",
578
+ "networks": "not provided",
579
+ "withdraw": "not provided",
580
+ "deposit": "not provided"
581
+ }
582
+ }
583
+ },
640
584
  "coinmetro": {
641
585
  "skipMethods": {
642
586
  "fetchTrades": {
@@ -650,39 +594,32 @@
650
594
  "loadMarkets": {
651
595
  "active":"is undefined"
652
596
  },
653
- "fetchTicker": {
654
- "quoteVolume": "quote scale isn't right"
655
- },
656
- "fetchTickers": {
657
- "quoteVolume": "quote scale isn't right"
597
+ "ticker": {
598
+ "baseVolume": "quote scale isn't right"
658
599
  }
659
600
  }
660
601
  },
661
602
  "coinspot": {
662
603
  "skip":"temp",
663
604
  "skipMethods": {
664
- "loadMarkets": "precision key has an null value, but is expected to have a value| taker key missing from structure (markets are created from constructor .options, so needs to fill with default values in base)",
665
- "fetchTickers": {
666
- "ask": "broken bid-ask",
605
+ "loadMarkets": {
606
+ "precision":"not provided",
607
+ "taker":"is undefined",
608
+ "makert":"is undefined"
609
+ },
610
+ "ticker": {
667
611
  "bid": "broken bid-ask",
668
- "quoteVolume": "quoteVolume >= baseVolume * low is failing"
612
+ "baseVolume": "quoteVolume >= baseVolume * low is failing"
669
613
  }
670
614
  }
671
615
  },
672
616
  "coinsph": {
673
- "skip": true,
674
- "until": "2024-02-20",
675
617
  "skipMethods": {
676
618
  "loadMarkets": {
677
619
  "taker":"messed",
678
620
  "maker":"messed"
679
621
  },
680
- "fetchTickers": {
681
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
682
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
683
- },
684
- "fetchTicker": {
685
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
622
+ "ticker": {
686
623
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
687
624
  }
688
625
  }
@@ -695,13 +632,14 @@
695
632
  "active":"is undefined",
696
633
  "currencyIdAndCode": "messes codes"
697
634
  },
698
- "fetchOHLCV": "unexpected issue",
699
635
  "fetchCurrencies": {
636
+ "currencyIdAndCode": "messes codes",
700
637
  "limits": "min is negative",
701
638
  "withdraw": "not provided",
702
639
  "deposit": "not provided",
703
640
  "networks": "missing"
704
- }
641
+ },
642
+ "fetchOHLCV": "unexpected issue"
705
643
  }
706
644
  },
707
645
  "coinex": {
@@ -719,8 +657,9 @@
719
657
  "loadMarkets": {
720
658
  "active":"is undefined"
721
659
  },
722
- "fetchOrderBook": "ask should be less than next ask",
723
- "fetchL2OrderBook": "same"
660
+ "orderBook": {
661
+ "bid":"ask should be less than next ask"
662
+ }
724
663
  }
725
664
  },
726
665
  "cryptocom": {
@@ -731,14 +670,9 @@
731
670
  "active":"is undefined",
732
671
  "currencyIdAndCode": "from travis location (USA) these webapi endpoints cant be loaded"
733
672
  },
734
- "fetchTickers": {
735
- "timestamp": "timestamp might be of 1970-01-01T00:00:00.000Z",
736
- "quoteVolume": "can't be infered"
737
- },
738
- "fetchTicker": {
673
+ "ticker": {
739
674
  "timestamp": "timestamp might be of 1970-01-01T00:00:00.000Z",
740
- "quoteVolume": "can't be infered"
741
-
675
+ "baseVolume": "can't be infered"
742
676
  },
743
677
  "fetchPositions": {
744
678
  "entryPrice": "entryPrice is not provided",
@@ -775,14 +709,8 @@
775
709
  "settle": "not defined when contract",
776
710
  "settleId": "not defined when contract"
777
711
  },
778
- "fetchTickers": {
779
- "ask": "not above bid https://app.travis-ci.com/github/ccxt/ccxt/builds/263871244#L2163",
780
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
781
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
782
- },
783
- "fetchTicker": {
784
- "ask": "not above bid https://app.travis-ci.com/github/ccxt/ccxt/builds/263871244#L2163",
785
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
712
+ "ticker": {
713
+ "bid": "not above bid https://app.travis-ci.com/github/ccxt/ccxt/builds/263871244#L2163",
786
714
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
787
715
  },
788
716
  "watchTrades": {
@@ -792,29 +720,26 @@
792
720
  },
793
721
  "delta": {
794
722
  "skip": "frequent timeouts https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L4301",
795
- "until": "2024-03-15",
723
+ "until": "2024-03-19",
796
724
  "skipMethods": {
797
725
  "loadMarkets": "expiryDatetime must be equal to expiry in iso8601 format",
798
- "fetchOrderBook": "ask crossing bids test failing",
799
- "fetchTickers": {
800
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
801
- "baseVolume": "quoteVolume >= baseVolume * low is failing",
802
- "ask": "failing the test",
803
- "bid": "failing the test"
726
+ "orderBook": {
727
+ "bid": "bid more than ask"
804
728
  },
805
- "fetchTicker": {
806
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
729
+ "ticker": {
807
730
  "baseVolume": "quoteVolume >= baseVolume * low is failing",
808
- "ask": "failing the test",
809
731
  "bid": "failing the test"
810
732
  }
811
733
  }
812
734
  },
813
735
  "deribit": {
814
736
  "skipMethods": {
815
- "fetchCurrencies": "deposit/withdraw not provided",
737
+ "fetchCurrencies": {
738
+ "networks": "not provided",
739
+ "withdraw": "not provided",
740
+ "deposit": "not provided"
741
+ },
816
742
  "loadMarkets": "strike is set when option is not true",
817
- "fetchTickers": "something wrong",
818
743
  "fetchBalance": "does not add up",
819
744
  "fetchPositions": {
820
745
  "percentage": "undefined",
@@ -836,6 +761,13 @@
836
761
  "tagTo": "undefined",
837
762
  "tagFrom": "undefined",
838
763
  "fee": "undefined"
764
+ },
765
+ "ticker": {
766
+ "close": "might be negative https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L4371",
767
+ "open": "same",
768
+ "low": "same",
769
+ "high": "same",
770
+ "average": "same"
839
771
  }
840
772
  }
841
773
  },
@@ -844,9 +776,8 @@
844
776
  "fetchCurrencies": {
845
777
  "fee": "not provided"
846
778
  },
847
- "fetchTickers": {
848
- "bid":"messed bid-ask",
849
- "ask":"messed bid-ask"
779
+ "ticker": {
780
+ "bid":"messed bid-ask"
850
781
  }
851
782
  }
852
783
  },
@@ -875,9 +806,8 @@
875
806
  "fee": "not provided",
876
807
  "currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/268371892#L2455"
877
808
  },
878
- "fetchTickers": {
879
- "bid":"messed bid-ask",
880
- "ask":"messed bid-ask"
809
+ "ticker": {
810
+ "bid":"messed bid-ask"
881
811
  },
882
812
  "watchOrderBook": {
883
813
  "bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/268349324#L2400"
@@ -935,30 +865,10 @@
935
865
  "fetchTrades": {
936
866
  "timestamp": "timestamp is in decimals"
937
867
  },
938
- "fetchTickers": {
868
+ "ticker": {
939
869
  "bid":"messed bid-ask",
940
- "ask":"messed bid-ask",
941
- "quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/262963390#L3138",
942
870
  "baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/262963390#L3138"
943
871
  },
944
- "fetchTicker": {
945
- "bid":"same",
946
- "ask":"same",
947
- "quoteVolume": "same",
948
- "baseVolume": "same"
949
- },
950
- "watchTicker": {
951
- "bid":"same",
952
- "ask":"same",
953
- "quoteVolume": "same",
954
- "baseVolume": "same"
955
- },
956
- "watchTickers": {
957
- "bid":"same",
958
- "ask":"same",
959
- "quoteVolume": "same",
960
- "baseVolume": "same"
961
- },
962
872
  "fetchPositions": "currently returns a lot of default/non open positions",
963
873
  "fetchLedger": {
964
874
  "currency": "undefined",
@@ -993,20 +903,12 @@
993
903
  "precision":"is undefined",
994
904
  "limits": "broken somewhere"
995
905
  },
996
- "fetchTickers": {
997
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
998
- "baseVolume": "quoteVolume >= baseVolume * low is failing",
999
- "bid":"messed bid-ask",
1000
- "ask":"messed bid-ask"
1001
- },
1002
- "fetchTicker": {
1003
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1004
- "baseVolume": "quoteVolume >= baseVolume * low is failing",
1005
- "bid":"messed bid-ask",
1006
- "ask":"messed bid-ask"
906
+ "ticker": {
907
+ "baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4860",
908
+ "bid":"messed bid-ask"
1007
909
  },
1008
- "watchTicker": {
1009
- "quoteVolume":"https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4860"
910
+ "orderBook": {
911
+ "symbol": "undefined, todo fix https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L3670"
1010
912
  }
1011
913
  }
1012
914
  },
@@ -1020,12 +922,7 @@
1020
922
  "fee": "not defined",
1021
923
  "networks": "missing"
1022
924
  },
1023
- "fetchTickers": {
1024
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1025
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
1026
- },
1027
- "fetchTicker": {
1028
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
925
+ "ticker": {
1029
926
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
1030
927
  },
1031
928
  "fetchTrades": {
@@ -1040,12 +937,7 @@
1040
937
  "fetchCurrencies": {
1041
938
  "limits": "messed"
1042
939
  },
1043
- "fetchTickers": {
1044
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1045
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
1046
- },
1047
- "fetchTicker": {
1048
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
940
+ "ticker": {
1049
941
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
1050
942
  }
1051
943
  }
@@ -1058,16 +950,8 @@
1058
950
  "deposit":"not provided",
1059
951
  "networks": "missing"
1060
952
  },
1061
- "fetchTickers": {
1062
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1063
- "baseVolume": "quoteVolume >= baseVolume * low is failing",
1064
- "ask":"messed bid-ask",
1065
- "bid":"messed bid-ask"
1066
- },
1067
- "fetchTicker": {
1068
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
953
+ "ticker": {
1069
954
  "baseVolume": "quoteVolume >= baseVolume * low is failing",
1070
- "ask":"messed bid-ask",
1071
955
  "bid":"messed bid-ask"
1072
956
  }
1073
957
  }
@@ -1081,8 +965,9 @@
1081
965
  "fetchTrades": {
1082
966
  "side":"side is undefined"
1083
967
  },
1084
- "fetchOrderBook": "bid should be greater than next bid",
1085
- "fetchL2OrderBook": "same"
968
+ "orderBook": {
969
+ "bid": "messed sequence"
970
+ }
1086
971
  }
1087
972
  },
1088
973
  "kuna": {
@@ -1109,11 +994,9 @@
1109
994
  "loadMarkets": {
1110
995
  "currencyIdAndCode": "messed"
1111
996
  },
1112
- "fetchTickers": {
997
+ "ticker": {
1113
998
  "bid":"messed bid-ask",
1114
- "ask":"messed bid-ask",
1115
- "quoteVolume": "quoteVolume <= baseVolume * high https://app.travis-ci.com/github/ccxt/ccxt/builds/263304041#L2190",
1116
- "baseVolume": "same"
999
+ "baseVolume": "quoteVolume <= baseVolume * high https://app.travis-ci.com/github/ccxt/ccxt/builds/263304041#L2190"
1117
1000
  }
1118
1001
  }
1119
1002
  },
@@ -1143,36 +1026,37 @@
1143
1026
  "withdraw":"not provided",
1144
1027
  "deposit":"not provided"
1145
1028
  },
1146
- "fetchTickers": "negative values"
1029
+ "ticker":{
1030
+ "open": "negative values",
1031
+ "high": "negative values",
1032
+ "low": "negative values",
1033
+ "close": "negative values",
1034
+ "bid": "negative values",
1035
+ "ask": "negative values",
1036
+ "average": "negative values"
1037
+ }
1147
1038
  }
1148
1039
  },
1149
1040
  "luno": {
1150
1041
  "skipWs": "temp",
1151
1042
  "skipMethods": {
1152
- "fetchOrderBook": "bid should be greater than next bid",
1153
- "fetchL2OrderBook": "same"
1043
+ "orderBook": {
1044
+ "bid": "messed"
1045
+ }
1154
1046
  }
1155
1047
  },
1156
1048
  "lbank": {
1157
1049
  "skipMethods": {
1158
1050
  "loadMarkets": "settle must be defined when contract is true",
1159
- "fetchTickers": {
1160
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1161
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
1162
- },
1163
- "fetchTicker": {
1164
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1051
+ "ticker": {
1165
1052
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
1166
1053
  },
1167
1054
  "watchTrades": {
1168
1055
  "timestamp": "ts several hours ahead in in future :)"
1169
1056
  },
1170
- "watchOrderBook": {
1057
+ "orderBook": {
1171
1058
  "spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269364330#L3612"
1172
1059
  },
1173
- "watchOrderBookForSymbols": {
1174
- "spread": "same"
1175
- },
1176
1060
  "watchOHLCV": "some timestamp issues"
1177
1061
  }
1178
1062
  },
@@ -1184,42 +1068,38 @@
1184
1068
  "fetchCurrencies": {
1185
1069
  "fee":"not provided"
1186
1070
  },
1187
- "fetchOrderBook": {
1188
- "bid": "bid should be greater than next bid",
1189
- "ask": "similar"
1190
- },
1191
- "fetchL2OrderBook": {
1192
- "bid": "same",
1193
- "ask": "same"
1071
+ "orderBook": {
1072
+ "bid": "bid should be greater than next bid"
1194
1073
  },
1195
- "fetchTickers": "negative values",
1196
- "fetchTicker": {
1197
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1198
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
1074
+ "ticker": {
1075
+ "baseVolume": "quoteVolume >= baseVolume * low is failing",
1076
+ "close": "might be negative https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L4657",
1077
+ "open": "same",
1078
+ "low": "same",
1079
+ "high": "same",
1080
+ "average": "same"
1199
1081
  }
1200
1082
  }
1201
1083
  },
1202
1084
  "mercado": {
1203
1085
  "skipMethods": {
1204
1086
  "loadMarkets": "needs migration to v4, as raw info is not being used. granular can be used for skipping 'info'",
1205
- "fetchOrderBook": "bid > ask",
1206
- "fetchL2OrderBook": "bid > ask",
1207
- "fetchTickers": "bid > ask",
1208
- "fetchTicker": "bid > ask",
1209
- "fetchCurrencies": "info key is missing"
1087
+ "orderBook": {
1088
+ "spread": "bid-ask crossing"
1089
+ },
1090
+ "ticker": {
1091
+ "bid": "bid-ask crossing"
1092
+ },
1093
+ "fetchCurrencies": {
1094
+ "info":"key is missing"
1095
+ }
1210
1096
  }
1211
1097
  },
1212
1098
  "novadax": {
1213
1099
  "skipMethods": {
1214
- "fetchTickers": {
1215
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1100
+ "ticker": {
1216
1101
  "baseVolume": "quoteVolume >= baseVolume * low is failing",
1217
- "ask": "https://app.travis-ci.com/github/ccxt/ccxt/builds/266029139",
1218
1102
  "bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/266029139"
1219
- },
1220
- "fetchTicker": {
1221
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1222
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
1223
1103
  }
1224
1104
  }
1225
1105
  },
@@ -1238,43 +1118,22 @@
1238
1118
  "currencyIdAndCode": "messed"
1239
1119
  },
1240
1120
  "fetchCurrencies":{
1121
+ "limits": "max above min",
1241
1122
  "precision":"is undefined"
1242
1123
  },
1243
1124
  "fetchTrades": {
1244
1125
  "side": "side is not buy/sell"
1245
1126
  },
1246
- "fetchTickers": {
1247
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1248
- "baseVolume": "quoteVolume >= baseVolume * low is failing",
1127
+ "ticker": {
1128
+ "baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6610",
1249
1129
  "spread":"https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3916"
1250
1130
  },
1251
- "fetchTicker": {
1252
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1253
- "baseVolume": "quoteVolume >= baseVolume * low is failing",
1254
- "spread": "same as above"
1255
- },
1256
1131
  "fetchAccounts": {
1257
1132
  "type": "type is not provided"
1258
1133
  },
1259
1134
  "fetchLeverageTiers": "swap only supported",
1260
- "watchTicker": {
1261
- "quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6610",
1262
- "spread": "same as above"
1263
- },
1264
- "watchTickers": {
1265
- "spread": "same as above"
1266
- },
1267
- "fetchOrderBook": {
1135
+ "orderBook": {
1268
1136
  "spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3916"
1269
- },
1270
- "fetchL2OrderBook": {
1271
- "spread": "same as above"
1272
- },
1273
- "watchOrderBook": {
1274
- "spread": "same as above"
1275
- },
1276
- "watchOrderBookForSymbols": {
1277
- "spread": "same as above"
1278
1137
  }
1279
1138
  }
1280
1139
  },
@@ -1305,18 +1164,14 @@
1305
1164
  "taker":"is undefined",
1306
1165
  "maker":"is undefined"
1307
1166
  },
1308
- "fetchTickers": {
1309
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1310
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
1311
- },
1312
- "fetchTicker": {
1313
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1167
+ "ticker": {
1314
1168
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
1315
1169
  }
1316
1170
  }
1317
1171
  },
1318
1172
  "phemex": {
1319
1173
  "skipPhpAsync": true,
1174
+ "skipCSharp": true,
1320
1175
  "skipMethods": {
1321
1176
  "loadMarkets": {
1322
1177
  "contractSize": "broken for some markets",
@@ -1329,16 +1184,8 @@
1329
1184
  "withdraw": "not provided",
1330
1185
  "deposit": "not provided"
1331
1186
  },
1332
- "fetchTickers": {
1333
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1334
- "baseVolume": "quoteVolume >= baseVolume * low is failing",
1335
- "ask": "messed bid-ask",
1336
- "bid": "messed bid-ask"
1337
- },
1338
- "fetchTicker": {
1339
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1187
+ "ticker": {
1340
1188
  "baseVolume": "quoteVolume >= baseVolume * low is failing",
1341
- "ask": "messed bid-ask",
1342
1189
  "bid": "messed bid-ask"
1343
1190
  }
1344
1191
  }
@@ -1346,16 +1193,9 @@
1346
1193
  "okcoin": {
1347
1194
  "skipWs": "temp",
1348
1195
  "skipMethods": {
1349
- "fetchTickers": {
1350
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1351
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
1352
- },
1353
- "fetchTicker": {
1354
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1196
+ "ticker": {
1197
+ "symbol": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6721",
1355
1198
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
1356
- },
1357
- "watchTicker": {
1358
- "symbol": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6721"
1359
1199
  }
1360
1200
  }
1361
1201
  },
@@ -1369,17 +1209,8 @@
1369
1209
  "withdraw":"not provided",
1370
1210
  "deposit":"not provided"
1371
1211
  },
1372
- "fetchTickers": {
1373
- "quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269352042#L3690"
1374
- },
1375
- "fetchTicker": {
1376
- "quoteVolume": "same"
1377
- },
1378
- "watchTickers": {
1379
- "quoteVolume": "same"
1380
- },
1381
- "watchTicker": {
1382
- "quoteVolume": "same"
1212
+ "ticker": {
1213
+ "baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269352042#L3690"
1383
1214
  },
1384
1215
  "watchOrderBook": {
1385
1216
  "nonce": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4807"
@@ -1400,20 +1231,11 @@
1400
1231
  "fetchTrades": {
1401
1232
  "side": "side is not buy/sell"
1402
1233
  },
1403
- "fetchTicker": {
1404
- "quoteVolume": "quoteVolume <= baseVolume * high | https://app.travis-ci.com/github/ccxt/ccxt/builds/263884643#L2462",
1405
- "baseVolume": "same"
1406
- },
1407
- "fetchTickers": {
1408
- "quoteVolume": "same",
1409
- "baseVolume": "same"
1234
+ "ticker": {
1235
+ "baseVolume": "quoteVolume <= baseVolume * high | https://app.travis-ci.com/github/ccxt/ccxt/builds/263884643#L2462"
1410
1236
  },
1411
1237
  "watchOrderBook": {
1412
1238
  "nonce": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6909"
1413
- },
1414
- "watchTickers": {
1415
- "quoteVolume": "same",
1416
- "baseVolume": "same"
1417
1239
  }
1418
1240
  }
1419
1241
  },
@@ -1427,14 +1249,9 @@
1427
1249
  "fetchCurrencies": {
1428
1250
  "info": "null",
1429
1251
  "currencyIdAndCode": "temp skip"
1430
-
1431
1252
  },
1432
- "fetchTickers": {
1433
- "quoteVolume": "quoteVolume <= baseVolume * high : https://app.travis-ci.com/github/ccxt/ccxt/builds/263319874#L2132",
1434
- "baseVolume": "same"
1435
- },
1436
- "fetchTicker": {
1437
- "quoteVolume": "quoteVolume <= baseVolume * high <<< okx fetchTicker"
1253
+ "ticker": {
1254
+ "baseVolume": "quoteVolume <= baseVolume * high : https://app.travis-ci.com/github/ccxt/ccxt/builds/263319874#L2132"
1438
1255
  },
1439
1256
  "fetchBorrowRate": "some fields that we can't skip missing",
1440
1257
  "fetchBorrowRates": "same",
@@ -1453,34 +1270,31 @@
1453
1270
  "deposit": "undefined",
1454
1271
  "currencyIdAndCode": "same as in loadMarkets"
1455
1272
  },
1456
- "fetchTickers": {
1457
- "quoteVolume": "quoteVolume <= baseVolume * high is failing",
1273
+ "ticker": {
1458
1274
  "baseVolume": "quoteVolume <= baseVolume * high is failing"
1459
1275
  }
1460
1276
  }
1461
1277
  },
1462
1278
  "krakenfutures": {
1463
- "skip": "continious timeouts https://app.travis-ci.com/github/ccxt/ccxt/builds/265225134#L2431",
1464
1279
  "skipMethods": {
1465
- "loadMarkets": "skip loadMarkets",
1280
+ "loadMarkets" :{
1281
+ "active": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L4502",
1282
+ "currencyIdAndCode": "messed"
1283
+ },
1466
1284
  "fetchCurrencies": {
1285
+ "currencyIdAndCode": "messed",
1467
1286
  "withdraw": "undefined",
1468
1287
  "deposit": "undefined"
1469
1288
  },
1470
- "fetchTickers": "timeouts this call specifically",
1471
- "fetchTicker": "timeouts this call specifically",
1472
- "watchTrades": "reverse timestamps"
1289
+ "watchTrades": {
1290
+ "timestamp": "timestamp reversed: https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L3681"
1291
+ }
1473
1292
  },
1474
1293
  "timeout": 120000
1475
1294
  },
1476
1295
  "upbit": {
1477
1296
  "skipMethods": {
1478
- "fetchTickers": {
1479
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1480
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
1481
- },
1482
- "fetchTicker": {
1483
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1297
+ "ticker": {
1484
1298
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
1485
1299
  }
1486
1300
  }
@@ -1504,12 +1318,7 @@
1504
1318
  "skipMethods": {
1505
1319
  "loadMarkets": "missing key",
1506
1320
  "fetchOHLCV": "index 1 (open price) is undefined",
1507
- "fetchTickers": {
1508
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1509
- "baseVolume": "quoteVolume >= baseVolume * low is failing"
1510
- },
1511
- "fetchTicker": {
1512
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1321
+ "ticker": {
1513
1322
  "baseVolume": "quoteVolume >= baseVolume * low is failing"
1514
1323
  }
1515
1324
  }
@@ -1555,8 +1364,7 @@
1555
1364
  "loadMarkets":{
1556
1365
  "currencyIdAndCode": "messed"
1557
1366
  },
1558
- "fetchTickers": "all tickers request exceedes max url length",
1559
- "fetchOHLCV": "does not exist"
1367
+ "fetchTickers": "all tickers request exceedes max url length"
1560
1368
  }
1561
1369
  },
1562
1370
  "zaif": {
@@ -1587,17 +1395,15 @@
1587
1395
  "fetchTrades": {
1588
1396
  "side": "undefined"
1589
1397
  },
1590
- "fetchTicker": "spot not supported",
1591
- "fetchTickers": {
1592
- "quoteVolume": "not supported"
1398
+ "ticker": {
1399
+ "baseVolume": "not supported"
1593
1400
  },
1594
1401
  "fetchOHLCV": "spot not supported",
1595
1402
  "fetchCurrencies": {
1596
1403
  "deposit": "not provided",
1597
1404
  "precision": "not provided"
1598
1405
  },
1599
- "fetchOrderBook": {
1600
- "ask": "multiple ask prices are equal in ob https://app.travis-ci.com/github/ccxt/ccxt/builds/264706670#L2228",
1406
+ "orderBook": {
1601
1407
  "bid": "multiple bid prices are equal https://app.travis-ci.com/github/ccxt/ccxt/builds/265172859#L2745"
1602
1408
  },
1603
1409
  "watchTrades": {
@@ -1626,19 +1432,16 @@
1626
1432
  "skipMethods": {
1627
1433
  "loadMarkets": "private",
1628
1434
  "fetchCurrencies": "private",
1629
- "fetchTickers": {
1630
- "ask": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269200021#L4048"
1435
+ "ticker": {
1436
+ "bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269200021#L4048"
1631
1437
  }
1632
1438
  }
1633
1439
  },
1634
1440
  "coinlist": {
1635
1441
  "skipMethods": {
1636
- "fetchTicker": {
1637
- "quoteVolume": "quoteVolume >= baseVolume * low is failing"
1638
- },
1639
- "fetchTickers": {
1640
- "quoteVolume": "quoteVolume >= baseVolume * low is failing",
1641
- "ask": "invalid"
1442
+ "ticker": {
1443
+ "baseVolume": "quoteVolume >= baseVolume * low is failing",
1444
+ "bid": "invalid"
1642
1445
  }
1643
1446
  }
1644
1447
  },