ccxt 4.2.73 → 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.
- package/README.md +5 -5
- package/build.sh +1 -1
- package/dist/ccxt.browser.js +181 -100
- package/dist/ccxt.browser.min.js +2 -2
- package/dist/cjs/ccxt.js +1 -1
- package/dist/cjs/src/base/Exchange.js +1 -1
- package/dist/cjs/src/bitget.js +62 -50
- package/dist/cjs/src/bybit.js +90 -30
- package/dist/cjs/src/coinbaseinternational.js +1 -1
- package/dist/cjs/src/htx.js +16 -9
- package/dist/cjs/src/hyperliquid.js +2 -1
- package/dist/cjs/src/pro/krakenfutures.js +8 -7
- 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 +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/base/Exchange.d.ts +2 -2
- package/js/src/base/Exchange.js +1 -1
- package/js/src/bitget.js +62 -50
- package/js/src/bybit.d.ts +3 -1
- package/js/src/bybit.js +90 -30
- package/js/src/coinbaseinternational.js +1 -1
- package/js/src/htx.js +16 -9
- package/js/src/hyperliquid.js +2 -1
- package/js/src/pro/krakenfutures.js +8 -7
- package/package.json +4 -1
- package/skip-tests.json +214 -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,13 @@
|
|
|
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
|
+
"average": "same"
|
|
852
771
|
}
|
|
853
772
|
}
|
|
854
773
|
},
|
|
@@ -857,9 +776,8 @@
|
|
|
857
776
|
"fetchCurrencies": {
|
|
858
777
|
"fee": "not provided"
|
|
859
778
|
},
|
|
860
|
-
"
|
|
861
|
-
"bid":"messed bid-ask"
|
|
862
|
-
"ask":"messed bid-ask"
|
|
779
|
+
"ticker": {
|
|
780
|
+
"bid":"messed bid-ask"
|
|
863
781
|
}
|
|
864
782
|
}
|
|
865
783
|
},
|
|
@@ -888,9 +806,8 @@
|
|
|
888
806
|
"fee": "not provided",
|
|
889
807
|
"currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/268371892#L2455"
|
|
890
808
|
},
|
|
891
|
-
"
|
|
892
|
-
"bid":"messed bid-ask"
|
|
893
|
-
"ask":"messed bid-ask"
|
|
809
|
+
"ticker": {
|
|
810
|
+
"bid":"messed bid-ask"
|
|
894
811
|
},
|
|
895
812
|
"watchOrderBook": {
|
|
896
813
|
"bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/268349324#L2400"
|
|
@@ -948,30 +865,10 @@
|
|
|
948
865
|
"fetchTrades": {
|
|
949
866
|
"timestamp": "timestamp is in decimals"
|
|
950
867
|
},
|
|
951
|
-
"
|
|
868
|
+
"ticker": {
|
|
952
869
|
"bid":"messed bid-ask",
|
|
953
|
-
"ask":"messed bid-ask",
|
|
954
|
-
"quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/262963390#L3138",
|
|
955
870
|
"baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/262963390#L3138"
|
|
956
871
|
},
|
|
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
872
|
"fetchPositions": "currently returns a lot of default/non open positions",
|
|
976
873
|
"fetchLedger": {
|
|
977
874
|
"currency": "undefined",
|
|
@@ -1006,20 +903,12 @@
|
|
|
1006
903
|
"precision":"is undefined",
|
|
1007
904
|
"limits": "broken somewhere"
|
|
1008
905
|
},
|
|
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"
|
|
906
|
+
"ticker": {
|
|
907
|
+
"baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4860",
|
|
908
|
+
"bid":"messed bid-ask"
|
|
1020
909
|
},
|
|
1021
|
-
"
|
|
1022
|
-
"
|
|
910
|
+
"orderBook": {
|
|
911
|
+
"symbol": "undefined, todo fix https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L3670"
|
|
1023
912
|
}
|
|
1024
913
|
}
|
|
1025
914
|
},
|
|
@@ -1033,12 +922,7 @@
|
|
|
1033
922
|
"fee": "not defined",
|
|
1034
923
|
"networks": "missing"
|
|
1035
924
|
},
|
|
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",
|
|
925
|
+
"ticker": {
|
|
1042
926
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1043
927
|
},
|
|
1044
928
|
"fetchTrades": {
|
|
@@ -1053,12 +937,7 @@
|
|
|
1053
937
|
"fetchCurrencies": {
|
|
1054
938
|
"limits": "messed"
|
|
1055
939
|
},
|
|
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",
|
|
940
|
+
"ticker": {
|
|
1062
941
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1063
942
|
}
|
|
1064
943
|
}
|
|
@@ -1071,16 +950,8 @@
|
|
|
1071
950
|
"deposit":"not provided",
|
|
1072
951
|
"networks": "missing"
|
|
1073
952
|
},
|
|
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",
|
|
953
|
+
"ticker": {
|
|
1082
954
|
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1083
|
-
"ask":"messed bid-ask",
|
|
1084
955
|
"bid":"messed bid-ask"
|
|
1085
956
|
}
|
|
1086
957
|
}
|
|
@@ -1094,8 +965,9 @@
|
|
|
1094
965
|
"fetchTrades": {
|
|
1095
966
|
"side":"side is undefined"
|
|
1096
967
|
},
|
|
1097
|
-
"
|
|
1098
|
-
|
|
968
|
+
"orderBook": {
|
|
969
|
+
"bid": "messed sequence"
|
|
970
|
+
}
|
|
1099
971
|
}
|
|
1100
972
|
},
|
|
1101
973
|
"kuna": {
|
|
@@ -1122,11 +994,9 @@
|
|
|
1122
994
|
"loadMarkets": {
|
|
1123
995
|
"currencyIdAndCode": "messed"
|
|
1124
996
|
},
|
|
1125
|
-
"
|
|
997
|
+
"ticker": {
|
|
1126
998
|
"bid":"messed bid-ask",
|
|
1127
|
-
"
|
|
1128
|
-
"quoteVolume": "quoteVolume <= baseVolume * high https://app.travis-ci.com/github/ccxt/ccxt/builds/263304041#L2190",
|
|
1129
|
-
"baseVolume": "same"
|
|
999
|
+
"baseVolume": "quoteVolume <= baseVolume * high https://app.travis-ci.com/github/ccxt/ccxt/builds/263304041#L2190"
|
|
1130
1000
|
}
|
|
1131
1001
|
}
|
|
1132
1002
|
},
|
|
@@ -1156,36 +1026,37 @@
|
|
|
1156
1026
|
"withdraw":"not provided",
|
|
1157
1027
|
"deposit":"not provided"
|
|
1158
1028
|
},
|
|
1159
|
-
"
|
|
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
|
+
}
|
|
1160
1038
|
}
|
|
1161
1039
|
},
|
|
1162
1040
|
"luno": {
|
|
1163
1041
|
"skipWs": "temp",
|
|
1164
1042
|
"skipMethods": {
|
|
1165
|
-
"
|
|
1166
|
-
|
|
1043
|
+
"orderBook": {
|
|
1044
|
+
"bid": "messed"
|
|
1045
|
+
}
|
|
1167
1046
|
}
|
|
1168
1047
|
},
|
|
1169
1048
|
"lbank": {
|
|
1170
1049
|
"skipMethods": {
|
|
1171
1050
|
"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",
|
|
1051
|
+
"ticker": {
|
|
1178
1052
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1179
1053
|
},
|
|
1180
1054
|
"watchTrades": {
|
|
1181
1055
|
"timestamp": "ts several hours ahead in in future :)"
|
|
1182
1056
|
},
|
|
1183
|
-
"
|
|
1057
|
+
"orderBook": {
|
|
1184
1058
|
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269364330#L3612"
|
|
1185
1059
|
},
|
|
1186
|
-
"watchOrderBookForSymbols": {
|
|
1187
|
-
"spread": "same"
|
|
1188
|
-
},
|
|
1189
1060
|
"watchOHLCV": "some timestamp issues"
|
|
1190
1061
|
}
|
|
1191
1062
|
},
|
|
@@ -1197,42 +1068,38 @@
|
|
|
1197
1068
|
"fetchCurrencies": {
|
|
1198
1069
|
"fee":"not provided"
|
|
1199
1070
|
},
|
|
1200
|
-
"
|
|
1201
|
-
"bid": "bid should be greater than next bid"
|
|
1202
|
-
"ask": "similar"
|
|
1203
|
-
},
|
|
1204
|
-
"fetchL2OrderBook": {
|
|
1205
|
-
"bid": "same",
|
|
1206
|
-
"ask": "same"
|
|
1071
|
+
"orderBook": {
|
|
1072
|
+
"bid": "bid should be greater than next bid"
|
|
1207
1073
|
},
|
|
1208
|
-
"
|
|
1209
|
-
|
|
1210
|
-
"
|
|
1211
|
-
"
|
|
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"
|
|
1212
1081
|
}
|
|
1213
1082
|
}
|
|
1214
1083
|
},
|
|
1215
1084
|
"mercado": {
|
|
1216
1085
|
"skipMethods": {
|
|
1217
1086
|
"loadMarkets": "needs migration to v4, as raw info is not being used. granular can be used for skipping 'info'",
|
|
1218
|
-
"
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
"
|
|
1222
|
-
|
|
1087
|
+
"orderBook": {
|
|
1088
|
+
"spread": "bid-ask crossing"
|
|
1089
|
+
},
|
|
1090
|
+
"ticker": {
|
|
1091
|
+
"bid": "bid-ask crossing"
|
|
1092
|
+
},
|
|
1093
|
+
"fetchCurrencies": {
|
|
1094
|
+
"info":"key is missing"
|
|
1095
|
+
}
|
|
1223
1096
|
}
|
|
1224
1097
|
},
|
|
1225
1098
|
"novadax": {
|
|
1226
1099
|
"skipMethods": {
|
|
1227
|
-
"
|
|
1228
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1100
|
+
"ticker": {
|
|
1229
1101
|
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1230
|
-
"ask": "https://app.travis-ci.com/github/ccxt/ccxt/builds/266029139",
|
|
1231
1102
|
"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
1103
|
}
|
|
1237
1104
|
}
|
|
1238
1105
|
},
|
|
@@ -1251,43 +1118,22 @@
|
|
|
1251
1118
|
"currencyIdAndCode": "messed"
|
|
1252
1119
|
},
|
|
1253
1120
|
"fetchCurrencies":{
|
|
1121
|
+
"limits": "max above min",
|
|
1254
1122
|
"precision":"is undefined"
|
|
1255
1123
|
},
|
|
1256
1124
|
"fetchTrades": {
|
|
1257
1125
|
"side": "side is not buy/sell"
|
|
1258
1126
|
},
|
|
1259
|
-
"
|
|
1260
|
-
"
|
|
1261
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1127
|
+
"ticker": {
|
|
1128
|
+
"baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6610",
|
|
1262
1129
|
"spread":"https://app.travis-ci.com/github/ccxt/ccxt/builds/269273148#L3916"
|
|
1263
1130
|
},
|
|
1264
|
-
"fetchTicker": {
|
|
1265
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1266
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1267
|
-
"spread": "same as above"
|
|
1268
|
-
},
|
|
1269
1131
|
"fetchAccounts": {
|
|
1270
1132
|
"type": "type is not provided"
|
|
1271
1133
|
},
|
|
1272
1134
|
"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": {
|
|
1135
|
+
"orderBook": {
|
|
1281
1136
|
"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
1137
|
}
|
|
1292
1138
|
}
|
|
1293
1139
|
},
|
|
@@ -1318,18 +1164,14 @@
|
|
|
1318
1164
|
"taker":"is undefined",
|
|
1319
1165
|
"maker":"is undefined"
|
|
1320
1166
|
},
|
|
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",
|
|
1167
|
+
"ticker": {
|
|
1327
1168
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1328
1169
|
}
|
|
1329
1170
|
}
|
|
1330
1171
|
},
|
|
1331
1172
|
"phemex": {
|
|
1332
1173
|
"skipPhpAsync": true,
|
|
1174
|
+
"skipCSharp": true,
|
|
1333
1175
|
"skipMethods": {
|
|
1334
1176
|
"loadMarkets": {
|
|
1335
1177
|
"contractSize": "broken for some markets",
|
|
@@ -1342,16 +1184,8 @@
|
|
|
1342
1184
|
"withdraw": "not provided",
|
|
1343
1185
|
"deposit": "not provided"
|
|
1344
1186
|
},
|
|
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",
|
|
1187
|
+
"ticker": {
|
|
1353
1188
|
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1354
|
-
"ask": "messed bid-ask",
|
|
1355
1189
|
"bid": "messed bid-ask"
|
|
1356
1190
|
}
|
|
1357
1191
|
}
|
|
@@ -1359,16 +1193,9 @@
|
|
|
1359
1193
|
"okcoin": {
|
|
1360
1194
|
"skipWs": "temp",
|
|
1361
1195
|
"skipMethods": {
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1364
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1365
|
-
},
|
|
1366
|
-
"fetchTicker": {
|
|
1367
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1196
|
+
"ticker": {
|
|
1197
|
+
"symbol": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6721",
|
|
1368
1198
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1369
|
-
},
|
|
1370
|
-
"watchTicker": {
|
|
1371
|
-
"symbol": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6721"
|
|
1372
1199
|
}
|
|
1373
1200
|
}
|
|
1374
1201
|
},
|
|
@@ -1382,17 +1209,8 @@
|
|
|
1382
1209
|
"withdraw":"not provided",
|
|
1383
1210
|
"deposit":"not provided"
|
|
1384
1211
|
},
|
|
1385
|
-
"
|
|
1386
|
-
"
|
|
1387
|
-
},
|
|
1388
|
-
"fetchTicker": {
|
|
1389
|
-
"quoteVolume": "same"
|
|
1390
|
-
},
|
|
1391
|
-
"watchTickers": {
|
|
1392
|
-
"quoteVolume": "same"
|
|
1393
|
-
},
|
|
1394
|
-
"watchTicker": {
|
|
1395
|
-
"quoteVolume": "same"
|
|
1212
|
+
"ticker": {
|
|
1213
|
+
"baseVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269352042#L3690"
|
|
1396
1214
|
},
|
|
1397
1215
|
"watchOrderBook": {
|
|
1398
1216
|
"nonce": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L4807"
|
|
@@ -1413,20 +1231,11 @@
|
|
|
1413
1231
|
"fetchTrades": {
|
|
1414
1232
|
"side": "side is not buy/sell"
|
|
1415
1233
|
},
|
|
1416
|
-
"
|
|
1417
|
-
"
|
|
1418
|
-
"baseVolume": "same"
|
|
1419
|
-
},
|
|
1420
|
-
"fetchTickers": {
|
|
1421
|
-
"quoteVolume": "same",
|
|
1422
|
-
"baseVolume": "same"
|
|
1234
|
+
"ticker": {
|
|
1235
|
+
"baseVolume": "quoteVolume <= baseVolume * high | https://app.travis-ci.com/github/ccxt/ccxt/builds/263884643#L2462"
|
|
1423
1236
|
},
|
|
1424
1237
|
"watchOrderBook": {
|
|
1425
1238
|
"nonce": "missing https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L6909"
|
|
1426
|
-
},
|
|
1427
|
-
"watchTickers": {
|
|
1428
|
-
"quoteVolume": "same",
|
|
1429
|
-
"baseVolume": "same"
|
|
1430
1239
|
}
|
|
1431
1240
|
}
|
|
1432
1241
|
},
|
|
@@ -1440,14 +1249,9 @@
|
|
|
1440
1249
|
"fetchCurrencies": {
|
|
1441
1250
|
"info": "null",
|
|
1442
1251
|
"currencyIdAndCode": "temp skip"
|
|
1443
|
-
|
|
1444
|
-
},
|
|
1445
|
-
"fetchTickers": {
|
|
1446
|
-
"quoteVolume": "quoteVolume <= baseVolume * high : https://app.travis-ci.com/github/ccxt/ccxt/builds/263319874#L2132",
|
|
1447
|
-
"baseVolume": "same"
|
|
1448
1252
|
},
|
|
1449
|
-
"
|
|
1450
|
-
"
|
|
1253
|
+
"ticker": {
|
|
1254
|
+
"baseVolume": "quoteVolume <= baseVolume * high : https://app.travis-ci.com/github/ccxt/ccxt/builds/263319874#L2132"
|
|
1451
1255
|
},
|
|
1452
1256
|
"fetchBorrowRate": "some fields that we can't skip missing",
|
|
1453
1257
|
"fetchBorrowRates": "same",
|
|
@@ -1466,34 +1270,31 @@
|
|
|
1466
1270
|
"deposit": "undefined",
|
|
1467
1271
|
"currencyIdAndCode": "same as in loadMarkets"
|
|
1468
1272
|
},
|
|
1469
|
-
"
|
|
1470
|
-
"quoteVolume": "quoteVolume <= baseVolume * high is failing",
|
|
1273
|
+
"ticker": {
|
|
1471
1274
|
"baseVolume": "quoteVolume <= baseVolume * high is failing"
|
|
1472
1275
|
}
|
|
1473
1276
|
}
|
|
1474
1277
|
},
|
|
1475
1278
|
"krakenfutures": {
|
|
1476
|
-
"skip": "continious timeouts https://app.travis-ci.com/github/ccxt/ccxt/builds/265225134#L2431",
|
|
1477
1279
|
"skipMethods": {
|
|
1478
|
-
"loadMarkets":
|
|
1280
|
+
"loadMarkets" :{
|
|
1281
|
+
"active": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L4502",
|
|
1282
|
+
"currencyIdAndCode": "messed"
|
|
1283
|
+
},
|
|
1479
1284
|
"fetchCurrencies": {
|
|
1285
|
+
"currencyIdAndCode": "messed",
|
|
1480
1286
|
"withdraw": "undefined",
|
|
1481
1287
|
"deposit": "undefined"
|
|
1482
1288
|
},
|
|
1483
|
-
"
|
|
1484
|
-
|
|
1485
|
-
|
|
1289
|
+
"watchTrades": {
|
|
1290
|
+
"timestamp": "timestamp reversed: https://app.travis-ci.com/github/ccxt/ccxt/builds/269484317#L3681"
|
|
1291
|
+
}
|
|
1486
1292
|
},
|
|
1487
1293
|
"timeout": 120000
|
|
1488
1294
|
},
|
|
1489
1295
|
"upbit": {
|
|
1490
1296
|
"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",
|
|
1297
|
+
"ticker": {
|
|
1497
1298
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1498
1299
|
}
|
|
1499
1300
|
}
|
|
@@ -1517,12 +1318,7 @@
|
|
|
1517
1318
|
"skipMethods": {
|
|
1518
1319
|
"loadMarkets": "missing key",
|
|
1519
1320
|
"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",
|
|
1321
|
+
"ticker": {
|
|
1526
1322
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
1527
1323
|
}
|
|
1528
1324
|
}
|
|
@@ -1568,8 +1364,7 @@
|
|
|
1568
1364
|
"loadMarkets":{
|
|
1569
1365
|
"currencyIdAndCode": "messed"
|
|
1570
1366
|
},
|
|
1571
|
-
"fetchTickers": "all tickers request exceedes max url length"
|
|
1572
|
-
"fetchOHLCV": "does not exist"
|
|
1367
|
+
"fetchTickers": "all tickers request exceedes max url length"
|
|
1573
1368
|
}
|
|
1574
1369
|
},
|
|
1575
1370
|
"zaif": {
|
|
@@ -1600,17 +1395,15 @@
|
|
|
1600
1395
|
"fetchTrades": {
|
|
1601
1396
|
"side": "undefined"
|
|
1602
1397
|
},
|
|
1603
|
-
"
|
|
1604
|
-
|
|
1605
|
-
"quoteVolume": "not supported"
|
|
1398
|
+
"ticker": {
|
|
1399
|
+
"baseVolume": "not supported"
|
|
1606
1400
|
},
|
|
1607
1401
|
"fetchOHLCV": "spot not supported",
|
|
1608
1402
|
"fetchCurrencies": {
|
|
1609
1403
|
"deposit": "not provided",
|
|
1610
1404
|
"precision": "not provided"
|
|
1611
1405
|
},
|
|
1612
|
-
"
|
|
1613
|
-
"ask": "multiple ask prices are equal in ob https://app.travis-ci.com/github/ccxt/ccxt/builds/264706670#L2228",
|
|
1406
|
+
"orderBook": {
|
|
1614
1407
|
"bid": "multiple bid prices are equal https://app.travis-ci.com/github/ccxt/ccxt/builds/265172859#L2745"
|
|
1615
1408
|
},
|
|
1616
1409
|
"watchTrades": {
|
|
@@ -1639,19 +1432,16 @@
|
|
|
1639
1432
|
"skipMethods": {
|
|
1640
1433
|
"loadMarkets": "private",
|
|
1641
1434
|
"fetchCurrencies": "private",
|
|
1642
|
-
"
|
|
1643
|
-
"
|
|
1435
|
+
"ticker": {
|
|
1436
|
+
"bid": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269200021#L4048"
|
|
1644
1437
|
}
|
|
1645
1438
|
}
|
|
1646
1439
|
},
|
|
1647
1440
|
"coinlist": {
|
|
1648
1441
|
"skipMethods": {
|
|
1649
|
-
"
|
|
1650
|
-
"
|
|
1651
|
-
|
|
1652
|
-
"fetchTickers": {
|
|
1653
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1654
|
-
"ask": "invalid"
|
|
1442
|
+
"ticker": {
|
|
1443
|
+
"baseVolume": "quoteVolume >= baseVolume * low is failing",
|
|
1444
|
+
"bid": "invalid"
|
|
1655
1445
|
}
|
|
1656
1446
|
}
|
|
1657
1447
|
},
|