ccxt 4.2.73 → 4.2.75
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.
- package/CHANGELOG.md +206 -10
- package/README.md +10 -9
- package/build.sh +1 -1
- package/dist/ccxt.browser.js +1042 -297
- package/dist/ccxt.browser.min.js +3 -3
- package/dist/cjs/ccxt.js +4 -1
- package/dist/cjs/src/abstract/tradeogre.js +9 -0
- package/dist/cjs/src/ascendex.js +3 -2
- package/dist/cjs/src/base/Exchange.js +1 -1
- package/dist/cjs/src/bitget.js +62 -50
- package/dist/cjs/src/bitmart.js +1 -0
- package/dist/cjs/src/bybit.js +90 -30
- package/dist/cjs/src/coinbaseinternational.js +1 -1
- package/dist/cjs/src/coinex.js +4 -3
- package/dist/cjs/src/gate.js +1 -0
- package/dist/cjs/src/htx.js +16 -9
- package/dist/cjs/src/hyperliquid.js +2 -1
- package/dist/cjs/src/kraken.js +3 -3
- package/dist/cjs/src/kucoin.js +1 -1
- package/dist/cjs/src/pro/krakenfutures.js +8 -7
- package/dist/cjs/src/tradeogre.js +632 -0
- package/examples/README.md +308 -0
- package/examples/ccxt.pro/html/watchTicker.html +51 -0
- package/examples/ccxt.pro/js/binance-fetch-balance-snapshot-watch-balance-updates.js +55 -0
- package/examples/ccxt.pro/js/binance-https-proxy.js +48 -0
- package/examples/ccxt.pro/js/binance-watch-ohlcv-many-symbols-continuously.js +38 -0
- package/examples/ccxt.pro/js/binance-watch-ohlcv-many-symbols.js +64 -0
- package/examples/ccxt.pro/js/binance-watch-ticker-many-symbols.js +62 -0
- package/examples/ccxt.pro/js/build-ohlcv-many-symbols.js +68 -0
- package/examples/ccxt.pro/js/calculate-ohlcvs-from-trades-warmup.js +82 -0
- package/examples/ccxt.pro/js/calculate-ohlcvs-from-trades.js +59 -0
- package/examples/ccxt.pro/js/exchange-capabitities.js +72 -0
- package/examples/ccxt.pro/js/exchange-close.js +46 -0
- package/examples/ccxt.pro/js/gateio-swap-watch-many-orderbooks.js +30 -0
- package/examples/ccxt.pro/js/gateio-watch-balance.js +23 -0
- package/examples/ccxt.pro/js/gateio-watch-order-book.js +71 -0
- package/examples/ccxt.pro/js/graceful-shutdown.js +43 -0
- package/examples/ccxt.pro/js/many-exchanges-many-streams.js +37 -0
- package/examples/ccxt.pro/js/okex-create-futures-order.js +48 -0
- package/examples/ccxt.pro/js/okex-watch-balance-and-create-order.js +54 -0
- package/examples/ccxt.pro/js/okx-watch-tickers.js +31 -0
- package/examples/ccxt.pro/js/one-exchange-many-different-streams.js +46 -0
- package/examples/ccxt.pro/js/one-exchange-many-streams-2.js +26 -0
- package/examples/ccxt.pro/js/one-exchange-many-streams.js +28 -0
- package/examples/ccxt.pro/js/socks-binance-watch-orderbook.js +30 -0
- package/examples/ccxt.pro/js/watch-fetch-many-exchanges-many-ordersbooks.js +40 -0
- package/examples/ccxt.pro/js/watch-many-exchanges-many-ordersbooks.js +38 -0
- package/examples/ccxt.pro/js/watch-many-exchanges-many-symbols.js +40 -0
- package/examples/ccxt.pro/js/watch-many-orderbooks.js +27 -0
- package/examples/ccxt.pro/js/watch-new-trades-only.js +43 -0
- package/examples/ccxt.pro/js/watch-new-trades.js +42 -0
- package/examples/ccxt.pro/js/watch-trades-many-symbols.js +29 -0
- package/examples/ccxt.pro/js/watch-vs-fetch.js +29 -0
- package/examples/cs/Examples.sln +22 -0
- package/examples/cs/c#.csproj +19 -0
- package/examples/html/basic-cors-proxy.html +46 -0
- package/examples/html/basic-inheritance.html +47 -0
- package/examples/html/basic-poller.html +52 -0
- package/examples/html/basic-rate-limiting.html +49 -0
- package/examples/html/basic.html +43 -0
- package/examples/html/binance-cors-proxy.html +28 -0
- package/examples/html/bitmex-browser-cors-proxy.js +7 -0
- package/examples/html/bitmex-cors.html +46 -0
- package/examples/html/tradingview-charts.html +61 -0
- package/examples/html/webworker/index.html +97 -0
- package/examples/html/webworker/worker.js +43 -0
- package/examples/js/README.md +15 -0
- package/examples/js/advanced-error-handling.js +39 -0
- package/examples/js/aggregate-orderbook.js +54 -0
- package/examples/js/arbitrage-pairs.js +130 -0
- package/examples/js/basic-chart.js +29 -0
- package/examples/js/basic-orderbook-polling.js +13 -0
- package/examples/js/bcc-vs-bch.js +115 -0
- package/examples/js/binance-fetch-all-deposits.js +45 -0
- package/examples/js/binance-fetch-ohlcv-many-symbols-async-await.js +34 -0
- package/examples/js/binance-fetch-ohlcv-many-symbols-promise-then-callbacks.js +33 -0
- package/examples/js/binance-fetchTicker-delivery-vs-future.js +31 -0
- package/examples/js/binance-futures-transfer-from-sub-account-to-master.js +41 -0
- package/examples/js/binance-margin-stop-order.js +39 -0
- package/examples/js/binance-server-time.js +34 -0
- package/examples/js/binance-universal-transfer.js +16 -0
- package/examples/js/bitfinex-fetch-trades.js +35 -0
- package/examples/js/bitfinex2-fetch-trades.js +35 -0
- package/examples/js/bitmex-browser-cors-proxy.js +7 -0
- package/examples/js/bitpanda-fetchMyTrades-reduce.js +36 -0
- package/examples/js/bitrue-fetch-balance.js +28 -0
- package/examples/js/bitstamp-private-api.js +115 -0
- package/examples/js/bitstamp-public-api.js +39 -0
- package/examples/js/bittrex-balance.js +50 -0
- package/examples/js/bittrex-fetch-closed-orders-history.js +69 -0
- package/examples/js/blockchaincom-withdrawal.js +59 -0
- package/examples/js/build-ohlcv-bars.js +48 -0
- package/examples/js/builtin-rate-limiting-rest-poller.js +25 -0
- package/examples/js/bybit-trailing.js +62 -0
- package/examples/js/bybit-updated.cjs +154 -0
- package/examples/js/cli.js +405 -0
- package/examples/js/coinbase-fetch-all-balances.js +36 -0
- package/examples/js/coinex-fetch-all-deposit-addresses-using-fetchDepositAddress.js +47 -0
- package/examples/js/coinex-futures.js +75 -0
- package/examples/js/coinone-fetch-tickers.js +54 -0
- package/examples/js/coinone-markets.js +16 -0
- package/examples/js/compare-two-exchanges-capabilities.js +36 -0
- package/examples/js/cors-proxy.js +5 -0
- package/examples/js/create-order-handle-errors.js +55 -0
- package/examples/js/create-order-position-with-takeprofit-stoploss.js +71 -0
- package/examples/js/create-order-with-retry.js +65 -0
- package/examples/js/create-order-ws-example.js +25 -0
- package/examples/js/create-orders-example.js +17 -0
- package/examples/js/create-trailing-amount-order.js +36 -0
- package/examples/js/create-trailing-percent-order.js +36 -0
- package/examples/js/credentials.json +5 -0
- package/examples/js/custom-proxy-agent-for-js.js +10 -0
- package/examples/js/custom-proxy-url.js +23 -0
- package/examples/js/delta-maintenance-margin-rate-max-leverage.js +60 -0
- package/examples/js/env-variables.js +26 -0
- package/examples/js/error-handling.js +89 -0
- package/examples/js/exchange-capabilities.js +135 -0
- package/examples/js/exchanges-by-volume.js +60 -0
- package/examples/js/exchanges.js +40 -0
- package/examples/js/fetch-all-balances.js +219 -0
- package/examples/js/fetch-all-tickers-to-files-2.js +53 -0
- package/examples/js/fetch-all-tickers-to-files.js +77 -0
- package/examples/js/fetch-balance.js +28 -0
- package/examples/js/fetch-create-deposit-address.js +101 -0
- package/examples/js/fetch-from-many-exchanges-simultaneously.js +21 -0
- package/examples/js/fetch-funding-rate-history.js +25 -0
- package/examples/js/fetch-futures/prettier.config.js +5 -0
- package/examples/js/fetch-futures/src/index.js +25 -0
- package/examples/js/fetch-ohlcv-from-to-mark-index-premium.js +72 -0
- package/examples/js/fetch-ohlcv-many-exchanges-continuosly.js +39 -0
- package/examples/js/fetch-ohlcv.js +16 -0
- package/examples/js/fetch-okex-futures.js +22 -0
- package/examples/js/fetch-orders.js +27 -0
- package/examples/js/fetch-ticker-from-multiple-exchanges.js +35 -0
- package/examples/js/fetch-ticker-where-available.js +75 -0
- package/examples/js/fetch-tickers/build/index.js +19 -0
- package/examples/js/fetch-tickers/prettier.config.js +5 -0
- package/examples/js/fetch-tickers/src/index.js +17 -0
- package/examples/js/gateio-create-batch-order.js +43 -0
- package/examples/js/gateio-futures.js +49 -0
- package/examples/js/gateio-open-close-contract.js +49 -0
- package/examples/js/gateio-swaps.js +74 -0
- package/examples/js/gdax-fetch-trades-pagination.js +29 -0
- package/examples/js/hitbtc2-withdraw.js +61 -0
- package/examples/js/how-to-import-one-exchange-esm.js +10 -0
- package/examples/js/huobi-futures.js +71 -0
- package/examples/js/huobi-open-close-contract.js +63 -0
- package/examples/js/huobi-swaps.js +70 -0
- package/examples/js/huobipro-market-buy-sell-fetch-trading-limits.js +98 -0
- package/examples/js/hybridCJSExample.cjs +19 -0
- package/examples/js/hybridESMExample.js +19 -0
- package/examples/js/idex-fetch-balance.js +13 -0
- package/examples/js/instantiate-all-at-once.js +46 -0
- package/examples/js/instantiate-all-from-json.js +31 -0
- package/examples/js/kraken-create-and-close-position.js +54 -0
- package/examples/js/kraken-fetch-order-trades.js +33 -0
- package/examples/js/kraken-margin-trading.js +89 -0
- package/examples/js/kucoin-rate-limit.js +38 -0
- package/examples/js/latoken-example.js +108 -0
- package/examples/js/live-orderbook.js +106 -0
- package/examples/js/live-ticker.js +80 -0
- package/examples/js/live-tickers.js +74 -0
- package/examples/js/load-all-contracts.js +41 -0
- package/examples/js/load-all-symbols-at-once.js +69 -0
- package/examples/js/load-all-tickers-at-once.js +91 -0
- package/examples/js/load-markets-to-files.js +57 -0
- package/examples/js/looping-over-all-symbols-of-specific-exchanges.js +61 -0
- package/examples/js/looping-over-specific-symbols-of-all-exchanges.js +91 -0
- package/examples/js/margin-loan-borrow-buy-sell-repay.js +70 -0
- package/examples/js/market-status-and-currency-status.js +29 -0
- package/examples/js/ohlcv-console-chart.js +29 -0
- package/examples/js/okex-fetch-closed-orders-archive.js +31 -0
- package/examples/js/okex-transfer.js +51 -0
- package/examples/js/okx-poll-fetch-my-trades.js +37 -0
- package/examples/js/okx-poll-rate-limit.js +48 -0
- package/examples/js/order-book-extra-level-depth-param.js +20 -0
- package/examples/js/phemex-create-order-position-with-takeprofit-stoploss.js +49 -0
- package/examples/js/poll-ohlcv.js +43 -0
- package/examples/js/poloniex-fetch-order-books.js +35 -0
- package/examples/js/poloniex-limits-amount-min.js +62 -0
- package/examples/js/proxy-round-robin.js +98 -0
- package/examples/js/proxy-usage.js +32 -0
- package/examples/js/sample-local-proxy-server-with-cors.js +12 -0
- package/examples/js/search-all-exchanges.js +159 -0
- package/examples/js/shared-load-markets.js +80 -0
- package/examples/js/sort-swap-markets-by-hourly-price-change.js +55 -0
- package/examples/js/symbols.js +110 -0
- package/examples/js/theocean.js +41 -0
- package/examples/js/tickers.js +106 -0
- package/examples/js/validate-paginated-data.js +61 -0
- package/examples/js/watch-OHLCV-For-Symbols.js +15 -0
- package/examples/js/watch-OHLCV.js +12 -0
- package/examples/js/watch-OrderBook-For-Symbols.js +11 -0
- package/examples/js/watch-Trades-For-Symbols.js +11 -0
- package/examples/js/watch-tickers.js +11 -0
- package/examples/js/watchOHLCVForSymbols.js +15 -0
- package/examples/js/watchOrderBookForSymbols.js +11 -0
- package/examples/js/watchPositions-many-exchanges-continuosly.d.ts +2 -0
- package/examples/js/watchPositions-many-exchanges-continuosly.d.ts.map +1 -0
- package/examples/js/watchPositions-many-exchanges-continuosly.js +49 -0
- package/examples/js/watchPositions.d.ts +2 -0
- package/examples/js/watchPositions.d.ts.map +1 -0
- package/examples/js/watchPositions.js +13 -0
- package/examples/js/watchPositionsForSymbols.d.ts +2 -0
- package/examples/js/watchPositionsForSymbols.d.ts.map +1 -0
- package/examples/js/watchPositionsForSymbols.js +14 -0
- package/examples/js/watchTradesForSymbols.js +11 -0
- package/examples/js/withdraw-from-one-exchange-to-another.js +50 -0
- package/examples/php/README.md +7 -0
- package/examples/py/README.md +15 -0
- package/examples/py/playing_with_ccxt_example.ipynb +222 -0
- package/examples/ts/.eslintrc +111 -0
- package/examples/ts/build-ohlcv-bars.ts +53 -0
- package/examples/ts/cli.ts +397 -0
- package/examples/ts/compare-two-exchanges-capabilities.ts +36 -0
- package/examples/ts/create-order-position-with-takeprofit-stoploss.ts +89 -0
- package/examples/ts/create-order-ws-example.ts +33 -0
- package/examples/ts/create-orders-example.ts +21 -0
- package/examples/ts/create-trailing-amount-order.ts +37 -0
- package/examples/ts/create-trailing-percent-order.ts +37 -0
- package/examples/ts/custom-proxy-agent-for-js.ts +14 -0
- package/examples/ts/fetch-futures/package-lock.json +116 -0
- package/examples/ts/fetch-futures/package.json +34 -0
- package/examples/ts/fetch-futures/prettier.config.js +4 -0
- package/examples/ts/fetch-futures/src/index.ts +28 -0
- package/examples/ts/fetch-futures/tsconfig.json +28 -0
- package/examples/ts/fetch-ohlcv-many-exchanges-continuosly.ts +44 -0
- package/examples/ts/fetch-ohlcv.ts +17 -0
- package/examples/ts/fetch-tickers/package-lock.json +116 -0
- package/examples/ts/fetch-tickers/package.json +34 -0
- package/examples/ts/fetch-tickers/prettier.config.js +4 -0
- package/examples/ts/fetch-tickers/src/index.ts +21 -0
- package/examples/ts/fetch-tickers/tsconfig.json +28 -0
- package/examples/ts/how-to-import-one-exchange-esm.ts +11 -0
- package/examples/ts/kraken-create-and-close-position.ts +69 -0
- package/examples/ts/margin-loan-borrow-buy-sell-repay.ts +72 -0
- package/examples/ts/nextjs-page-router/.eslintrc.json +3 -0
- package/examples/ts/nextjs-page-router/README.md +43 -0
- package/examples/ts/nextjs-page-router/next.config.js +6 -0
- package/examples/ts/nextjs-page-router/package-lock.json +7425 -0
- package/examples/ts/nextjs-page-router/package.json +28 -0
- package/examples/ts/nextjs-page-router/postcss.config.js +6 -0
- package/examples/ts/nextjs-page-router/public/favicon.ico +0 -0
- package/examples/ts/nextjs-page-router/src/pages/_app.tsx +6 -0
- package/examples/ts/nextjs-page-router/src/pages/_document.tsx +13 -0
- package/examples/ts/nextjs-page-router/src/pages/balance.tsx +46 -0
- package/examples/ts/nextjs-page-router/src/pages/index.tsx +8 -0
- package/examples/ts/nextjs-page-router/src/pages/tickers.tsx +61 -0
- package/examples/ts/nextjs-page-router/src/styles/globals.css +27 -0
- package/examples/ts/nextjs-page-router/tailwind.config.ts +20 -0
- package/examples/ts/nextjs-page-router/tsconfig.json +22 -0
- package/examples/ts/phemex-create-order-position-with-takeprofit-stoploss.ts +62 -0
- package/examples/ts/proxy-usage.ts +41 -0
- package/examples/ts/sample-local-proxy-server-with-cors.ts +15 -0
- package/examples/ts/watch-OHLCV-For-Symbols.ts +17 -0
- package/examples/ts/watch-OHLCV.ts +14 -0
- package/examples/ts/watch-OrderBook-For-Symbols.ts +13 -0
- package/examples/ts/watch-Trades-For-Symbols.ts +13 -0
- package/examples/ts/watch-tickers.ts +13 -0
- package/examples/ts/watchPositions-many-exchanges-continuosly.ts +53 -0
- package/examples/ts/watchPositions.ts +15 -0
- package/examples/ts/watchPositionsForSymbols.ts +16 -0
- package/examples/tsconfig.json +27 -0
- package/js/ccxt.d.ts +5 -2
- package/js/ccxt.js +4 -2
- package/js/src/abstract/tradeogre.d.ts +19 -0
- package/js/src/abstract/tradeogre.js +11 -0
- package/js/src/ascendex.d.ts +2 -7
- package/js/src/ascendex.js +3 -2
- package/js/src/base/Exchange.d.ts +7 -7
- package/js/src/base/Exchange.js +1 -1
- package/js/src/base/types.d.ts +7 -1
- package/js/src/binance.d.ts +1 -1
- package/js/src/bitget.js +62 -50
- package/js/src/bitmart.d.ts +1 -1
- package/js/src/bitmart.js +2 -1
- package/js/src/bybit.d.ts +3 -1
- package/js/src/bybit.js +90 -30
- package/js/src/coinbase.d.ts +4 -4
- package/js/src/coinbaseinternational.d.ts +1 -1
- package/js/src/coinbaseinternational.js +1 -1
- package/js/src/coinbasepro.d.ts +2 -2
- package/js/src/coinex.js +4 -3
- package/js/src/coinlist.d.ts +2 -2
- package/js/src/cryptocom.d.ts +2 -2
- package/js/src/currencycom.d.ts +2 -2
- package/js/src/deribit.d.ts +2 -2
- package/js/src/gate.d.ts +1 -1
- package/js/src/gate.js +1 -0
- package/js/src/htx.d.ts +2 -2
- package/js/src/htx.js +16 -9
- package/js/src/huobijp.d.ts +2 -2
- package/js/src/hyperliquid.js +2 -1
- package/js/src/kraken.d.ts +1 -1
- package/js/src/kraken.js +3 -3
- package/js/src/kucoin.d.ts +3 -3
- package/js/src/kucoin.js +1 -1
- package/js/src/luno.d.ts +2 -2
- package/js/src/mexc.d.ts +3 -3
- package/js/src/ndax.d.ts +2 -2
- package/js/src/novadax.d.ts +2 -2
- package/js/src/okx.d.ts +2 -2
- package/js/src/pro/bitfinex2.d.ts +1 -1
- package/js/src/pro/krakenfutures.js +8 -7
- package/js/src/tradeogre.d.ts +32 -0
- package/js/src/tradeogre.js +633 -0
- package/js/src/woo.d.ts +2 -2
- package/package.json +4 -1
- package/skip-tests.json +219 -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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
174
|
+
"ticker": {
|
|
179
175
|
"symbol": "something broken with symbol",
|
|
180
|
-
"
|
|
181
|
-
"bid": "same"
|
|
176
|
+
"bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/262965121#L3179"
|
|
182
177
|
},
|
|
183
|
-
"
|
|
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
|
-
"
|
|
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/
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
271
|
-
"
|
|
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
|
-
"
|
|
257
|
+
"ticker": {
|
|
298
258
|
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269177564#L3615",
|
|
299
|
-
"
|
|
300
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
337
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
426
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
448
|
-
"bid": "
|
|
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
|
-
"
|
|
453
|
-
"bid": "
|
|
454
|
-
"baseVolume": "
|
|
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
|
-
"
|
|
427
|
+
"fetchCurrencies": {
|
|
428
|
+
"precision": "not provided",
|
|
429
|
+
"networks": "missing"
|
|
430
|
+
},
|
|
431
|
+
"ticker": {
|
|
484
432
|
"bid":"broken bid-ask",
|
|
485
|
-
"
|
|
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
|
-
"
|
|
497
|
-
|
|
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
|
-
"
|
|
511
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
526
|
-
|
|
527
|
-
|
|
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
|
-
"
|
|
547
|
-
|
|
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
|
-
"
|
|
560
|
-
"
|
|
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
|
-
"
|
|
570
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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"
|
|
@@ -663,39 +594,32 @@
|
|
|
663
594
|
"loadMarkets": {
|
|
664
595
|
"active":"is undefined"
|
|
665
596
|
},
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
},
|
|
669
|
-
"fetchTickers": {
|
|
670
|
-
"quoteVolume": "quote scale isn't right"
|
|
597
|
+
"ticker": {
|
|
598
|
+
"baseVolume": "quote scale isn't right"
|
|
671
599
|
}
|
|
672
600
|
}
|
|
673
601
|
},
|
|
674
602
|
"coinspot": {
|
|
675
603
|
"skip":"temp",
|
|
676
604
|
"skipMethods": {
|
|
677
|
-
"loadMarkets":
|
|
678
|
-
|
|
679
|
-
"
|
|
605
|
+
"loadMarkets": {
|
|
606
|
+
"precision":"not provided",
|
|
607
|
+
"taker":"is undefined",
|
|
608
|
+
"makert":"is undefined"
|
|
609
|
+
},
|
|
610
|
+
"ticker": {
|
|
680
611
|
"bid": "broken bid-ask",
|
|
681
|
-
"
|
|
612
|
+
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
682
613
|
}
|
|
683
614
|
}
|
|
684
615
|
},
|
|
685
616
|
"coinsph": {
|
|
686
|
-
"skip": true,
|
|
687
|
-
"until": "2024-02-20",
|
|
688
617
|
"skipMethods": {
|
|
689
618
|
"loadMarkets": {
|
|
690
619
|
"taker":"messed",
|
|
691
620
|
"maker":"messed"
|
|
692
621
|
},
|
|
693
|
-
"
|
|
694
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
695
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
696
|
-
},
|
|
697
|
-
"fetchTicker": {
|
|
698
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
622
|
+
"ticker": {
|
|
699
623
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
700
624
|
}
|
|
701
625
|
}
|
|
@@ -708,13 +632,14 @@
|
|
|
708
632
|
"active":"is undefined",
|
|
709
633
|
"currencyIdAndCode": "messes codes"
|
|
710
634
|
},
|
|
711
|
-
"fetchOHLCV": "unexpected issue",
|
|
712
635
|
"fetchCurrencies": {
|
|
636
|
+
"currencyIdAndCode": "messes codes",
|
|
713
637
|
"limits": "min is negative",
|
|
714
638
|
"withdraw": "not provided",
|
|
715
639
|
"deposit": "not provided",
|
|
716
640
|
"networks": "missing"
|
|
717
|
-
}
|
|
641
|
+
},
|
|
642
|
+
"fetchOHLCV": "unexpected issue"
|
|
718
643
|
}
|
|
719
644
|
},
|
|
720
645
|
"coinex": {
|
|
@@ -732,8 +657,9 @@
|
|
|
732
657
|
"loadMarkets": {
|
|
733
658
|
"active":"is undefined"
|
|
734
659
|
},
|
|
735
|
-
"
|
|
736
|
-
|
|
660
|
+
"orderBook": {
|
|
661
|
+
"bid":"ask should be less than next ask"
|
|
662
|
+
}
|
|
737
663
|
}
|
|
738
664
|
},
|
|
739
665
|
"cryptocom": {
|
|
@@ -744,14 +670,9 @@
|
|
|
744
670
|
"active":"is undefined",
|
|
745
671
|
"currencyIdAndCode": "from travis location (USA) these webapi endpoints cant be loaded"
|
|
746
672
|
},
|
|
747
|
-
"
|
|
748
|
-
"timestamp": "timestamp might be of 1970-01-01T00:00:00.000Z",
|
|
749
|
-
"quoteVolume": "can't be infered"
|
|
750
|
-
},
|
|
751
|
-
"fetchTicker": {
|
|
673
|
+
"ticker": {
|
|
752
674
|
"timestamp": "timestamp might be of 1970-01-01T00:00:00.000Z",
|
|
753
|
-
"
|
|
754
|
-
|
|
675
|
+
"baseVolume": "can't be infered"
|
|
755
676
|
},
|
|
756
677
|
"fetchPositions": {
|
|
757
678
|
"entryPrice": "entryPrice is not provided",
|
|
@@ -788,14 +709,8 @@
|
|
|
788
709
|
"settle": "not defined when contract",
|
|
789
710
|
"settleId": "not defined when contract"
|
|
790
711
|
},
|
|
791
|
-
"
|
|
792
|
-
"
|
|
793
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
794
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
795
|
-
},
|
|
796
|
-
"fetchTicker": {
|
|
797
|
-
"ask": "not above bid https://app.travis-ci.com/github/ccxt/ccxt/builds/263871244#L2163",
|
|
798
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
712
|
+
"ticker": {
|
|
713
|
+
"bid": "not above bid https://app.travis-ci.com/github/ccxt/ccxt/builds/263871244#L2163",
|
|
799
714
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
800
715
|
},
|
|
801
716
|
"watchTrades": {
|
|
@@ -805,29 +720,26 @@
|
|
|
805
720
|
},
|
|
806
721
|
"delta": {
|
|
807
722
|
"skip": "frequent timeouts https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L4301",
|
|
808
|
-
"until": "2024-03-
|
|
723
|
+
"until": "2024-03-19",
|
|
809
724
|
"skipMethods": {
|
|
810
725
|
"loadMarkets": "expiryDatetime must be equal to expiry in iso8601 format",
|
|
811
|
-
"
|
|
812
|
-
|
|
813
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
814
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
815
|
-
"ask": "failing the test",
|
|
816
|
-
"bid": "failing the test"
|
|
726
|
+
"orderBook": {
|
|
727
|
+
"bid": "bid more than ask"
|
|
817
728
|
},
|
|
818
|
-
"
|
|
819
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
729
|
+
"ticker": {
|
|
820
730
|
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
821
|
-
"ask": "failing the test",
|
|
822
731
|
"bid": "failing the test"
|
|
823
732
|
}
|
|
824
733
|
}
|
|
825
734
|
},
|
|
826
735
|
"deribit": {
|
|
827
736
|
"skipMethods": {
|
|
828
|
-
"fetchCurrencies":
|
|
737
|
+
"fetchCurrencies": {
|
|
738
|
+
"networks": "not provided",
|
|
739
|
+
"withdraw": "not provided",
|
|
740
|
+
"deposit": "not provided"
|
|
741
|
+
},
|
|
829
742
|
"loadMarkets": "strike is set when option is not true",
|
|
830
|
-
"fetchTickers": "something wrong",
|
|
831
743
|
"fetchBalance": "does not add up",
|
|
832
744
|
"fetchPositions": {
|
|
833
745
|
"percentage": "undefined",
|
|
@@ -849,6 +761,15 @@
|
|
|
849
761
|
"tagTo": "undefined",
|
|
850
762
|
"tagFrom": "undefined",
|
|
851
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
|
+
"bid": "same",
|
|
771
|
+
"ask": "same",
|
|
772
|
+
"average": "same"
|
|
852
773
|
}
|
|
853
774
|
}
|
|
854
775
|
},
|
|
@@ -857,9 +778,8 @@
|
|
|
857
778
|
"fetchCurrencies": {
|
|
858
779
|
"fee": "not provided"
|
|
859
780
|
},
|
|
860
|
-
"
|
|
861
|
-
"bid":"messed bid-ask"
|
|
862
|
-
"ask":"messed bid-ask"
|
|
781
|
+
"ticker": {
|
|
782
|
+
"bid":"messed bid-ask"
|
|
863
783
|
}
|
|
864
784
|
}
|
|
865
785
|
},
|
|
@@ -888,9 +808,8 @@
|
|
|
888
808
|
"fee": "not provided",
|
|
889
809
|
"currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/268371892#L2455"
|
|
890
810
|
},
|
|
891
|
-
"
|
|
892
|
-
"bid":"messed bid-ask"
|
|
893
|
-
"ask":"messed bid-ask"
|
|
811
|
+
"ticker": {
|
|
812
|
+
"bid":"messed bid-ask"
|
|
894
813
|
},
|
|
895
814
|
"watchOrderBook": {
|
|
896
815
|
"bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/268349324#L2400"
|
|
@@ -948,30 +867,10 @@
|
|
|
948
867
|
"fetchTrades": {
|
|
949
868
|
"timestamp": "timestamp is in decimals"
|
|
950
869
|
},
|
|
951
|
-
"
|
|
870
|
+
"ticker": {
|
|
952
871
|
"bid":"messed bid-ask",
|
|
953
|
-
"ask":"messed bid-ask",
|
|
954
|
-
"quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/262963390#L3138",
|
|
955
872
|
"baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/262963390#L3138"
|
|
956
873
|
},
|
|
957
|
-
"fetchTicker": {
|
|
958
|
-
"bid":"same",
|
|
959
|
-
"ask":"same",
|
|
960
|
-
"quoteVolume": "same",
|
|
961
|
-
"baseVolume": "same"
|
|
962
|
-
},
|
|
963
|
-
"watchTicker": {
|
|
964
|
-
"bid":"same",
|
|
965
|
-
"ask":"same",
|
|
966
|
-
"quoteVolume": "same",
|
|
967
|
-
"baseVolume": "same"
|
|
968
|
-
},
|
|
969
|
-
"watchTickers": {
|
|
970
|
-
"bid":"same",
|
|
971
|
-
"ask":"same",
|
|
972
|
-
"quoteVolume": "same",
|
|
973
|
-
"baseVolume": "same"
|
|
974
|
-
},
|
|
975
874
|
"fetchPositions": "currently returns a lot of default/non open positions",
|
|
976
875
|
"fetchLedger": {
|
|
977
876
|
"currency": "undefined",
|
|
@@ -1006,20 +905,12 @@
|
|
|
1006
905
|
"precision":"is undefined",
|
|
1007
906
|
"limits": "broken somewhere"
|
|
1008
907
|
},
|
|
1009
|
-
"
|
|
1010
|
-
"
|
|
1011
|
-
"
|
|
1012
|
-
"bid":"messed bid-ask",
|
|
1013
|
-
"ask":"messed bid-ask"
|
|
1014
|
-
},
|
|
1015
|
-
"fetchTicker": {
|
|
1016
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1017
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1018
|
-
"bid":"messed bid-ask",
|
|
1019
|
-
"ask":"messed bid-ask"
|
|
908
|
+
"ticker": {
|
|
909
|
+
"baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4860",
|
|
910
|
+
"bid":"messed bid-ask"
|
|
1020
911
|
},
|
|
1021
|
-
"
|
|
1022
|
-
"
|
|
912
|
+
"orderBook": {
|
|
913
|
+
"symbol": "undefined, todo fix https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L3670"
|
|
1023
914
|
}
|
|
1024
915
|
}
|
|
1025
916
|
},
|
|
@@ -1033,12 +924,7 @@
|
|
|
1033
924
|
"fee": "not defined",
|
|
1034
925
|
"networks": "missing"
|
|
1035
926
|
},
|
|
1036
|
-
"
|
|
1037
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1038
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1039
|
-
},
|
|
1040
|
-
"fetchTicker": {
|
|
1041
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
927
|
+
"ticker": {
|
|
1042
928
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1043
929
|
},
|
|
1044
930
|
"fetchTrades": {
|
|
@@ -1053,12 +939,7 @@
|
|
|
1053
939
|
"fetchCurrencies": {
|
|
1054
940
|
"limits": "messed"
|
|
1055
941
|
},
|
|
1056
|
-
"
|
|
1057
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1058
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1059
|
-
},
|
|
1060
|
-
"fetchTicker": {
|
|
1061
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
942
|
+
"ticker": {
|
|
1062
943
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1063
944
|
}
|
|
1064
945
|
}
|
|
@@ -1071,16 +952,8 @@
|
|
|
1071
952
|
"deposit":"not provided",
|
|
1072
953
|
"networks": "missing"
|
|
1073
954
|
},
|
|
1074
|
-
"
|
|
1075
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1076
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1077
|
-
"ask":"messed bid-ask",
|
|
1078
|
-
"bid":"messed bid-ask"
|
|
1079
|
-
},
|
|
1080
|
-
"fetchTicker": {
|
|
1081
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
955
|
+
"ticker": {
|
|
1082
956
|
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1083
|
-
"ask":"messed bid-ask",
|
|
1084
957
|
"bid":"messed bid-ask"
|
|
1085
958
|
}
|
|
1086
959
|
}
|
|
@@ -1094,8 +967,9 @@
|
|
|
1094
967
|
"fetchTrades": {
|
|
1095
968
|
"side":"side is undefined"
|
|
1096
969
|
},
|
|
1097
|
-
"
|
|
1098
|
-
|
|
970
|
+
"orderBook": {
|
|
971
|
+
"bid": "messed sequence"
|
|
972
|
+
}
|
|
1099
973
|
}
|
|
1100
974
|
},
|
|
1101
975
|
"kuna": {
|
|
@@ -1122,11 +996,9 @@
|
|
|
1122
996
|
"loadMarkets": {
|
|
1123
997
|
"currencyIdAndCode": "messed"
|
|
1124
998
|
},
|
|
1125
|
-
"
|
|
999
|
+
"ticker": {
|
|
1126
1000
|
"bid":"messed bid-ask",
|
|
1127
|
-
"
|
|
1128
|
-
"quoteVolume": "quoteVolume <= baseVolume * high https://app.travis-ci.com/github/ccxt/ccxt/builds/263304041#L2190",
|
|
1129
|
-
"baseVolume": "same"
|
|
1001
|
+
"baseVolume": "quoteVolume <= baseVolume * high https://app.travis-ci.com/github/ccxt/ccxt/builds/263304041#L2190"
|
|
1130
1002
|
}
|
|
1131
1003
|
}
|
|
1132
1004
|
},
|
|
@@ -1156,36 +1028,37 @@
|
|
|
1156
1028
|
"withdraw":"not provided",
|
|
1157
1029
|
"deposit":"not provided"
|
|
1158
1030
|
},
|
|
1159
|
-
"
|
|
1031
|
+
"ticker":{
|
|
1032
|
+
"open": "negative values",
|
|
1033
|
+
"high": "negative values",
|
|
1034
|
+
"low": "negative values",
|
|
1035
|
+
"close": "negative values",
|
|
1036
|
+
"bid": "negative values",
|
|
1037
|
+
"ask": "negative values",
|
|
1038
|
+
"average": "negative values"
|
|
1039
|
+
}
|
|
1160
1040
|
}
|
|
1161
1041
|
},
|
|
1162
1042
|
"luno": {
|
|
1163
1043
|
"skipWs": "temp",
|
|
1164
1044
|
"skipMethods": {
|
|
1165
|
-
"
|
|
1166
|
-
|
|
1045
|
+
"orderBook": {
|
|
1046
|
+
"bid": "messed"
|
|
1047
|
+
}
|
|
1167
1048
|
}
|
|
1168
1049
|
},
|
|
1169
1050
|
"lbank": {
|
|
1170
1051
|
"skipMethods": {
|
|
1171
1052
|
"loadMarkets": "settle must be defined when contract is true",
|
|
1172
|
-
"
|
|
1173
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1174
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1175
|
-
},
|
|
1176
|
-
"fetchTicker": {
|
|
1177
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1053
|
+
"ticker": {
|
|
1178
1054
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1179
1055
|
},
|
|
1180
1056
|
"watchTrades": {
|
|
1181
1057
|
"timestamp": "ts several hours ahead in in future :)"
|
|
1182
1058
|
},
|
|
1183
|
-
"
|
|
1059
|
+
"orderBook": {
|
|
1184
1060
|
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269364330#L3612"
|
|
1185
1061
|
},
|
|
1186
|
-
"watchOrderBookForSymbols": {
|
|
1187
|
-
"spread": "same"
|
|
1188
|
-
},
|
|
1189
1062
|
"watchOHLCV": "some timestamp issues"
|
|
1190
1063
|
}
|
|
1191
1064
|
},
|
|
@@ -1197,42 +1070,38 @@
|
|
|
1197
1070
|
"fetchCurrencies": {
|
|
1198
1071
|
"fee":"not provided"
|
|
1199
1072
|
},
|
|
1200
|
-
"
|
|
1201
|
-
"bid": "bid should be greater than next bid"
|
|
1202
|
-
"ask": "similar"
|
|
1203
|
-
},
|
|
1204
|
-
"fetchL2OrderBook": {
|
|
1205
|
-
"bid": "same",
|
|
1206
|
-
"ask": "same"
|
|
1073
|
+
"orderBook": {
|
|
1074
|
+
"bid": "bid should be greater than next bid"
|
|
1207
1075
|
},
|
|
1208
|
-
"
|
|
1209
|
-
|
|
1210
|
-
"
|
|
1211
|
-
"
|
|
1076
|
+
"ticker": {
|
|
1077
|
+
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1078
|
+
"close": "might be negative https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L4657",
|
|
1079
|
+
"open": "same",
|
|
1080
|
+
"low": "same",
|
|
1081
|
+
"high": "same",
|
|
1082
|
+
"average": "same"
|
|
1212
1083
|
}
|
|
1213
1084
|
}
|
|
1214
1085
|
},
|
|
1215
1086
|
"mercado": {
|
|
1216
1087
|
"skipMethods": {
|
|
1217
1088
|
"loadMarkets": "needs migration to v4, as raw info is not being used. granular can be used for skipping 'info'",
|
|
1218
|
-
"
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
"
|
|
1222
|
-
|
|
1089
|
+
"orderBook": {
|
|
1090
|
+
"spread": "bid-ask crossing"
|
|
1091
|
+
},
|
|
1092
|
+
"ticker": {
|
|
1093
|
+
"bid": "bid-ask crossing"
|
|
1094
|
+
},
|
|
1095
|
+
"fetchCurrencies": {
|
|
1096
|
+
"info":"key is missing"
|
|
1097
|
+
}
|
|
1223
1098
|
}
|
|
1224
1099
|
},
|
|
1225
1100
|
"novadax": {
|
|
1226
1101
|
"skipMethods": {
|
|
1227
|
-
"
|
|
1228
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1102
|
+
"ticker": {
|
|
1229
1103
|
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1230
|
-
"ask": "https://app.travis-ci.com/github/ccxt/ccxt/builds/266029139",
|
|
1231
1104
|
"bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/266029139"
|
|
1232
|
-
},
|
|
1233
|
-
"fetchTicker": {
|
|
1234
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1235
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1236
1105
|
}
|
|
1237
1106
|
}
|
|
1238
1107
|
},
|
|
@@ -1251,43 +1120,22 @@
|
|
|
1251
1120
|
"currencyIdAndCode": "messed"
|
|
1252
1121
|
},
|
|
1253
1122
|
"fetchCurrencies":{
|
|
1123
|
+
"limits": "max above min",
|
|
1254
1124
|
"precision":"is undefined"
|
|
1255
1125
|
},
|
|
1256
1126
|
"fetchTrades": {
|
|
1257
1127
|
"side": "side is not buy/sell"
|
|
1258
1128
|
},
|
|
1259
|
-
"
|
|
1260
|
-
"
|
|
1261
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1129
|
+
"ticker": {
|
|
1130
|
+
"baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6610",
|
|
1262
1131
|
"spread":"https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3916"
|
|
1263
1132
|
},
|
|
1264
|
-
"fetchTicker": {
|
|
1265
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1266
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1267
|
-
"spread": "same as above"
|
|
1268
|
-
},
|
|
1269
1133
|
"fetchAccounts": {
|
|
1270
1134
|
"type": "type is not provided"
|
|
1271
1135
|
},
|
|
1272
1136
|
"fetchLeverageTiers": "swap only supported",
|
|
1273
|
-
"
|
|
1274
|
-
"quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6610",
|
|
1275
|
-
"spread": "same as above"
|
|
1276
|
-
},
|
|
1277
|
-
"watchTickers": {
|
|
1278
|
-
"spread": "same as above"
|
|
1279
|
-
},
|
|
1280
|
-
"fetchOrderBook": {
|
|
1137
|
+
"orderBook": {
|
|
1281
1138
|
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3916"
|
|
1282
|
-
},
|
|
1283
|
-
"fetchL2OrderBook": {
|
|
1284
|
-
"spread": "same as above"
|
|
1285
|
-
},
|
|
1286
|
-
"watchOrderBook": {
|
|
1287
|
-
"spread": "same as above"
|
|
1288
|
-
},
|
|
1289
|
-
"watchOrderBookForSymbols": {
|
|
1290
|
-
"spread": "same as above"
|
|
1291
1139
|
}
|
|
1292
1140
|
}
|
|
1293
1141
|
},
|
|
@@ -1318,18 +1166,14 @@
|
|
|
1318
1166
|
"taker":"is undefined",
|
|
1319
1167
|
"maker":"is undefined"
|
|
1320
1168
|
},
|
|
1321
|
-
"
|
|
1322
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1323
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1324
|
-
},
|
|
1325
|
-
"fetchTicker": {
|
|
1326
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1169
|
+
"ticker": {
|
|
1327
1170
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1328
1171
|
}
|
|
1329
1172
|
}
|
|
1330
1173
|
},
|
|
1331
1174
|
"phemex": {
|
|
1332
1175
|
"skipPhpAsync": true,
|
|
1176
|
+
"skipCSharp": true,
|
|
1333
1177
|
"skipMethods": {
|
|
1334
1178
|
"loadMarkets": {
|
|
1335
1179
|
"contractSize": "broken for some markets",
|
|
@@ -1342,16 +1186,8 @@
|
|
|
1342
1186
|
"withdraw": "not provided",
|
|
1343
1187
|
"deposit": "not provided"
|
|
1344
1188
|
},
|
|
1345
|
-
"
|
|
1346
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1347
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1348
|
-
"ask": "messed bid-ask",
|
|
1349
|
-
"bid": "messed bid-ask"
|
|
1350
|
-
},
|
|
1351
|
-
"fetchTicker": {
|
|
1352
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1189
|
+
"ticker": {
|
|
1353
1190
|
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1354
|
-
"ask": "messed bid-ask",
|
|
1355
1191
|
"bid": "messed bid-ask"
|
|
1356
1192
|
}
|
|
1357
1193
|
}
|
|
@@ -1359,16 +1195,9 @@
|
|
|
1359
1195
|
"okcoin": {
|
|
1360
1196
|
"skipWs": "temp",
|
|
1361
1197
|
"skipMethods": {
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1364
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1365
|
-
},
|
|
1366
|
-
"fetchTicker": {
|
|
1367
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1198
|
+
"ticker": {
|
|
1199
|
+
"symbol": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6721",
|
|
1368
1200
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1369
|
-
},
|
|
1370
|
-
"watchTicker": {
|
|
1371
|
-
"symbol": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6721"
|
|
1372
1201
|
}
|
|
1373
1202
|
}
|
|
1374
1203
|
},
|
|
@@ -1382,17 +1211,8 @@
|
|
|
1382
1211
|
"withdraw":"not provided",
|
|
1383
1212
|
"deposit":"not provided"
|
|
1384
1213
|
},
|
|
1385
|
-
"
|
|
1386
|
-
"
|
|
1387
|
-
},
|
|
1388
|
-
"fetchTicker": {
|
|
1389
|
-
"quoteVolume": "same"
|
|
1390
|
-
},
|
|
1391
|
-
"watchTickers": {
|
|
1392
|
-
"quoteVolume": "same"
|
|
1393
|
-
},
|
|
1394
|
-
"watchTicker": {
|
|
1395
|
-
"quoteVolume": "same"
|
|
1214
|
+
"ticker": {
|
|
1215
|
+
"baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269352042#L3690"
|
|
1396
1216
|
},
|
|
1397
1217
|
"watchOrderBook": {
|
|
1398
1218
|
"nonce": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4807"
|
|
@@ -1413,20 +1233,11 @@
|
|
|
1413
1233
|
"fetchTrades": {
|
|
1414
1234
|
"side": "side is not buy/sell"
|
|
1415
1235
|
},
|
|
1416
|
-
"
|
|
1417
|
-
"
|
|
1418
|
-
"baseVolume": "same"
|
|
1419
|
-
},
|
|
1420
|
-
"fetchTickers": {
|
|
1421
|
-
"quoteVolume": "same",
|
|
1422
|
-
"baseVolume": "same"
|
|
1236
|
+
"ticker": {
|
|
1237
|
+
"baseVolume": "quoteVolume <= baseVolume * high | https://app.travis-ci.com/github/ccxt/ccxt/builds/263884643#L2462"
|
|
1423
1238
|
},
|
|
1424
1239
|
"watchOrderBook": {
|
|
1425
1240
|
"nonce": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6909"
|
|
1426
|
-
},
|
|
1427
|
-
"watchTickers": {
|
|
1428
|
-
"quoteVolume": "same",
|
|
1429
|
-
"baseVolume": "same"
|
|
1430
1241
|
}
|
|
1431
1242
|
}
|
|
1432
1243
|
},
|
|
@@ -1440,14 +1251,9 @@
|
|
|
1440
1251
|
"fetchCurrencies": {
|
|
1441
1252
|
"info": "null",
|
|
1442
1253
|
"currencyIdAndCode": "temp skip"
|
|
1443
|
-
|
|
1444
1254
|
},
|
|
1445
|
-
"
|
|
1446
|
-
"
|
|
1447
|
-
"baseVolume": "same"
|
|
1448
|
-
},
|
|
1449
|
-
"fetchTicker": {
|
|
1450
|
-
"quoteVolume": "quoteVolume <= baseVolume * high <<< okx fetchTicker"
|
|
1255
|
+
"ticker": {
|
|
1256
|
+
"baseVolume": "quoteVolume <= baseVolume * high : https://app.travis-ci.com/github/ccxt/ccxt/builds/263319874#L2132"
|
|
1451
1257
|
},
|
|
1452
1258
|
"fetchBorrowRate": "some fields that we can't skip missing",
|
|
1453
1259
|
"fetchBorrowRates": "same",
|
|
@@ -1466,34 +1272,31 @@
|
|
|
1466
1272
|
"deposit": "undefined",
|
|
1467
1273
|
"currencyIdAndCode": "same as in loadMarkets"
|
|
1468
1274
|
},
|
|
1469
|
-
"
|
|
1470
|
-
"quoteVolume": "quoteVolume <= baseVolume * high is failing",
|
|
1275
|
+
"ticker": {
|
|
1471
1276
|
"baseVolume": "quoteVolume <= baseVolume * high is failing"
|
|
1472
1277
|
}
|
|
1473
1278
|
}
|
|
1474
1279
|
},
|
|
1475
1280
|
"krakenfutures": {
|
|
1476
|
-
"skip": "continious timeouts https://app.travis-ci.com/github/ccxt/ccxt/builds/265225134#L2431",
|
|
1477
1281
|
"skipMethods": {
|
|
1478
|
-
"loadMarkets":
|
|
1282
|
+
"loadMarkets" :{
|
|
1283
|
+
"active": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L4502",
|
|
1284
|
+
"currencyIdAndCode": "messed"
|
|
1285
|
+
},
|
|
1479
1286
|
"fetchCurrencies": {
|
|
1287
|
+
"currencyIdAndCode": "messed",
|
|
1480
1288
|
"withdraw": "undefined",
|
|
1481
1289
|
"deposit": "undefined"
|
|
1482
1290
|
},
|
|
1483
|
-
"
|
|
1484
|
-
|
|
1485
|
-
|
|
1291
|
+
"watchTrades": {
|
|
1292
|
+
"timestamp": "timestamp reversed: https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L3681"
|
|
1293
|
+
}
|
|
1486
1294
|
},
|
|
1487
1295
|
"timeout": 120000
|
|
1488
1296
|
},
|
|
1489
1297
|
"upbit": {
|
|
1490
1298
|
"skipMethods": {
|
|
1491
|
-
"
|
|
1492
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1493
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1494
|
-
},
|
|
1495
|
-
"fetchTicker": {
|
|
1496
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1299
|
+
"ticker": {
|
|
1497
1300
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1498
1301
|
}
|
|
1499
1302
|
}
|
|
@@ -1517,12 +1320,7 @@
|
|
|
1517
1320
|
"skipMethods": {
|
|
1518
1321
|
"loadMarkets": "missing key",
|
|
1519
1322
|
"fetchOHLCV": "index 1 (open price) is undefined",
|
|
1520
|
-
"
|
|
1521
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1522
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1523
|
-
},
|
|
1524
|
-
"fetchTicker": {
|
|
1525
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1323
|
+
"ticker": {
|
|
1526
1324
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1527
1325
|
}
|
|
1528
1326
|
}
|
|
@@ -1568,8 +1366,7 @@
|
|
|
1568
1366
|
"loadMarkets":{
|
|
1569
1367
|
"currencyIdAndCode": "messed"
|
|
1570
1368
|
},
|
|
1571
|
-
"fetchTickers": "all tickers request exceedes max url length"
|
|
1572
|
-
"fetchOHLCV": "does not exist"
|
|
1369
|
+
"fetchTickers": "all tickers request exceedes max url length"
|
|
1573
1370
|
}
|
|
1574
1371
|
},
|
|
1575
1372
|
"zaif": {
|
|
@@ -1600,17 +1397,15 @@
|
|
|
1600
1397
|
"fetchTrades": {
|
|
1601
1398
|
"side": "undefined"
|
|
1602
1399
|
},
|
|
1603
|
-
"
|
|
1604
|
-
|
|
1605
|
-
"quoteVolume": "not supported"
|
|
1400
|
+
"ticker": {
|
|
1401
|
+
"baseVolume": "not supported"
|
|
1606
1402
|
},
|
|
1607
1403
|
"fetchOHLCV": "spot not supported",
|
|
1608
1404
|
"fetchCurrencies": {
|
|
1609
1405
|
"deposit": "not provided",
|
|
1610
1406
|
"precision": "not provided"
|
|
1611
1407
|
},
|
|
1612
|
-
"
|
|
1613
|
-
"ask": "multiple ask prices are equal in ob https://app.travis-ci.com/github/ccxt/ccxt/builds/264706670#L2228",
|
|
1408
|
+
"orderBook": {
|
|
1614
1409
|
"bid": "multiple bid prices are equal https://app.travis-ci.com/github/ccxt/ccxt/builds/265172859#L2745"
|
|
1615
1410
|
},
|
|
1616
1411
|
"watchTrades": {
|
|
@@ -1639,19 +1434,16 @@
|
|
|
1639
1434
|
"skipMethods": {
|
|
1640
1435
|
"loadMarkets": "private",
|
|
1641
1436
|
"fetchCurrencies": "private",
|
|
1642
|
-
"
|
|
1643
|
-
"
|
|
1437
|
+
"ticker": {
|
|
1438
|
+
"bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269200021#L4048"
|
|
1644
1439
|
}
|
|
1645
1440
|
}
|
|
1646
1441
|
},
|
|
1647
1442
|
"coinlist": {
|
|
1648
1443
|
"skipMethods": {
|
|
1649
|
-
"
|
|
1650
|
-
"
|
|
1651
|
-
|
|
1652
|
-
"fetchTickers": {
|
|
1653
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1654
|
-
"ask": "invalid"
|
|
1444
|
+
"ticker": {
|
|
1445
|
+
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1446
|
+
"bid": "invalid"
|
|
1655
1447
|
}
|
|
1656
1448
|
}
|
|
1657
1449
|
},
|
|
@@ -1687,5 +1479,8 @@
|
|
|
1687
1479
|
"currency": "not provided"
|
|
1688
1480
|
}
|
|
1689
1481
|
}
|
|
1482
|
+
},
|
|
1483
|
+
"tradeogre": {
|
|
1484
|
+
"skip": "flaky"
|
|
1690
1485
|
}
|
|
1691
1486
|
}
|