ccxt 4.1.6 → 4.1.7
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 +3 -3
- package/dist/ccxt.browser.js +84 -84
- package/dist/ccxt.browser.min.js +1 -1
- package/dist/cjs/ccxt.js +1 -1
- package/dist/cjs/src/binance.js +11 -11
- package/dist/cjs/src/bingx.js +2 -2
- package/dist/cjs/src/bitfinex2.js +5 -5
- package/dist/cjs/src/bitget.js +6 -6
- package/dist/cjs/src/bitmex.js +4 -4
- package/dist/cjs/src/bybit.js +7 -7
- package/dist/cjs/src/coinbase.js +5 -5
- package/dist/cjs/src/coinbasepro.js +3 -3
- package/dist/cjs/src/cryptocom.js +5 -5
- package/dist/cjs/src/gate.js +6 -6
- package/dist/cjs/src/huobi.js +4 -4
- package/dist/cjs/src/kraken.js +1 -1
- package/dist/cjs/src/krakenfutures.js +2 -2
- package/dist/cjs/src/kucoin.js +7 -7
- package/dist/cjs/src/kucoinfutures.js +5 -5
- package/dist/cjs/src/okx.js +8 -8
- package/dist/cjs/src/poloniex.js +2 -2
- package/js/ccxt.d.ts +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/binance.js +11 -11
- package/js/src/bingx.js +2 -2
- package/js/src/bitfinex2.js +5 -5
- package/js/src/bitget.js +6 -6
- package/js/src/bitmex.js +4 -4
- package/js/src/bybit.js +7 -7
- package/js/src/coinbase.js +5 -5
- package/js/src/coinbasepro.js +3 -3
- package/js/src/cryptocom.js +5 -5
- package/js/src/gate.js +6 -6
- package/js/src/huobi.js +4 -4
- package/js/src/kraken.js +1 -1
- package/js/src/krakenfutures.js +2 -2
- package/js/src/kucoin.js +7 -7
- package/js/src/kucoinfutures.js +5 -5
- package/js/src/okx.js +8 -8
- package/js/src/poloniex.js +2 -2
- package/package.json +1 -1
package/dist/ccxt.browser.js
CHANGED
|
@@ -19219,7 +19219,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
19219
19219
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
19220
19220
|
* @param {string} [params.price] "mark" or "index" for mark price and index price candles
|
|
19221
19221
|
* @param {int} [params.until] timestamp in ms of the latest candle to fetch
|
|
19222
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
19222
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
19223
19223
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
19224
19224
|
*/
|
|
19225
19225
|
await this.loadMarkets();
|
|
@@ -19562,7 +19562,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
19562
19562
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
19563
19563
|
* @param {int} [params.until] only used when fetchTradesMethod is 'publicGetAggTrades', 'fapiPublicGetAggTrades', or 'dapiPublicGetAggTrades'
|
|
19564
19564
|
* @param {int} [params.fetchTradesMethod] 'publicGetAggTrades' (spot default), 'fapiPublicGetAggTrades' (swap default), 'dapiPublicGetAggTrades' (future default), 'eapiPublicGetTrades' (option default), 'publicGetTrades', 'fapiPublicGetTrades', 'dapiPublicGetTrades', 'publicGetHistoricalTrades', 'fapiPublicGetHistoricalTrades', 'dapiPublicGetHistoricalTrades', 'eapiPublicGetHistoricalTrades'
|
|
19565
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
19565
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
19566
19566
|
*
|
|
19567
19567
|
* EXCHANGE SPECIFIC PARAMETERS
|
|
19568
19568
|
* @param {int} [params.fromId] trade id to fetch from, default gets most recent trades, not used when fetchTradesMethod is 'publicGetTrades', 'fapiPublicGetTrades', 'dapiPublicGetTrades', or 'eapiPublicGetTrades'
|
|
@@ -20606,7 +20606,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
20606
20606
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
20607
20607
|
* @param {string} [params.marginMode] 'cross' or 'isolated', for spot margin trading
|
|
20608
20608
|
* @param {int} [params.until] the latest time in ms to fetch orders for
|
|
20609
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
20609
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
20610
20610
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
20611
20611
|
*/
|
|
20612
20612
|
this.checkRequiredSymbol('fetchOrders', symbol);
|
|
@@ -20817,7 +20817,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
20817
20817
|
* @param {int} [since] the earliest time in ms to fetch orders for
|
|
20818
20818
|
* @param {int} [limit] the maximum number of order structures to retrieve
|
|
20819
20819
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
20820
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
20820
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
20821
20821
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
20822
20822
|
*/
|
|
20823
20823
|
const orders = await this.fetchOrders(symbol, since, limit, params);
|
|
@@ -20835,7 +20835,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
20835
20835
|
* @param {int} [since] the earliest time in ms to fetch orders for
|
|
20836
20836
|
* @param {int} [limit] the maximum number of order structures to retrieve
|
|
20837
20837
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
20838
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
20838
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
20839
20839
|
* @returns {object[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
20840
20840
|
*/
|
|
20841
20841
|
this.checkRequiredSymbol('fetchCanceledOrders', symbol);
|
|
@@ -21069,7 +21069,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
21069
21069
|
* @param {int} [since] the earliest time in ms to fetch trades for
|
|
21070
21070
|
* @param {int} [limit] the maximum number of trades structures to retrieve
|
|
21071
21071
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
21072
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
21072
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
21073
21073
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
21074
21074
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
21075
21075
|
*/
|
|
@@ -21359,7 +21359,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
21359
21359
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
21360
21360
|
* @param {bool} [params.fiat] if true, only fiat deposits will be returned
|
|
21361
21361
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
21362
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
21362
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
21363
21363
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
21364
21364
|
*/
|
|
21365
21365
|
await this.loadMarkets();
|
|
@@ -21474,7 +21474,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
21474
21474
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
21475
21475
|
* @param {bool} [params.fiat] if true, only fiat withdrawals will be returned
|
|
21476
21476
|
* @param {int} [params.until] the latest time in ms to fetch withdrawals for
|
|
21477
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
21477
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
21478
21478
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
21479
21479
|
*/
|
|
21480
21480
|
await this.loadMarkets();
|
|
@@ -21951,7 +21951,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
21951
21951
|
* @param {int} [limit] the maximum number of transfers structures to retrieve
|
|
21952
21952
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
21953
21953
|
* @param {int} [params.until] the latest time in ms to fetch transfers for
|
|
21954
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
21954
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
21955
21955
|
* @returns {object[]} a list of [transfer structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transfer-structure}
|
|
21956
21956
|
*/
|
|
21957
21957
|
await this.loadMarkets();
|
|
@@ -22681,7 +22681,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
22681
22681
|
* @param {int} [limit] the maximum amount of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure} to fetch
|
|
22682
22682
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
22683
22683
|
* @param {int} [params.until] timestamp in ms of the latest funding rate
|
|
22684
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
22684
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
22685
22685
|
* @returns {object[]} a list of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure}
|
|
22686
22686
|
*/
|
|
22687
22687
|
await this.loadMarkets();
|
|
@@ -24096,7 +24096,7 @@ class binance extends _abstract_binance_js__WEBPACK_IMPORTED_MODULE_0__/* ["defa
|
|
|
24096
24096
|
* @param {int} [limit] max number of ledger entrys to return
|
|
24097
24097
|
* @param {object} [params] extra parameters specific to the binance api endpoint
|
|
24098
24098
|
* @param {int} [params.until] timestamp in ms of the latest ledger entry
|
|
24099
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
24099
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
24100
24100
|
* @returns {object} a [ledger structure]{@link https://github.com/ccxt/ccxt/wiki/Manual#ledger-structure}
|
|
24101
24101
|
*/
|
|
24102
24102
|
await this.loadMarkets();
|
|
@@ -25880,7 +25880,7 @@ class bingx extends _abstract_bingx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
25880
25880
|
* @param {object} [params] extra parameters specific to the bingx api endpoint
|
|
25881
25881
|
* @param {string} [params.price] "mark" or "index" for mark price and index price candles
|
|
25882
25882
|
* @param {int} [params.until] timestamp in ms of the latest candle to fetch
|
|
25883
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
25883
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
25884
25884
|
* @returns {[[int]]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
25885
25885
|
*/
|
|
25886
25886
|
await this.loadMarkets();
|
|
@@ -26288,7 +26288,7 @@ class bingx extends _abstract_bingx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
26288
26288
|
* @param {int} [limit] the maximum amount of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure} to fetch
|
|
26289
26289
|
* @param {object} [params] extra parameters specific to the bingx api endpoint
|
|
26290
26290
|
* @param {int} [params.until] timestamp in ms of the latest funding rate to fetch
|
|
26291
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
26291
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
26292
26292
|
* @returns {[object]} a list of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure}
|
|
26293
26293
|
*/
|
|
26294
26294
|
this.checkRequiredSymbol('fetchFundingRateHistory', symbol);
|
|
@@ -34461,7 +34461,7 @@ class bitfinex2 extends _abstract_bitfinex2_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
34461
34461
|
* @param {int} [since] timestamp in ms of the earliest trade to fetch
|
|
34462
34462
|
* @param {int} [limit] the maximum amount of trades to fetch
|
|
34463
34463
|
* @param {object} [params] extra parameters specific to the bitfinex2 api endpoint
|
|
34464
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
34464
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
34465
34465
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
34466
34466
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#public-trades}
|
|
34467
34467
|
*/
|
|
@@ -34512,7 +34512,7 @@ class bitfinex2 extends _abstract_bitfinex2_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
34512
34512
|
* @param {object} [params] extra parameters specific to the bitfinex2 api endpoint
|
|
34513
34513
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
34514
34514
|
* @param {int} [params.until] timestamp in ms of the latest candle to fetch
|
|
34515
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
34515
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
34516
34516
|
*/
|
|
34517
34517
|
await this.loadMarkets();
|
|
34518
34518
|
let paginate = false;
|
|
@@ -35006,7 +35006,7 @@ class bitfinex2 extends _abstract_bitfinex2_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
35006
35006
|
* @param {int} [limit] the maximum number of orde structures to retrieve
|
|
35007
35007
|
* @param {object} [params] extra parameters specific to the bitfinex2 api endpoint
|
|
35008
35008
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
35009
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
35009
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
35010
35010
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
35011
35011
|
*/
|
|
35012
35012
|
// returns the most recent closed or canceled orders up to circa two weeks ago
|
|
@@ -35896,7 +35896,7 @@ class bitfinex2 extends _abstract_bitfinex2_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
35896
35896
|
* @param {int} [limit] max number of ledger entrys to return, default is undefined
|
|
35897
35897
|
* @param {object} [params] extra parameters specific to the bitfinex2 api endpoint
|
|
35898
35898
|
* @param {int} [params.until] timestamp in ms of the latest ledger entry
|
|
35899
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
35899
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
35900
35900
|
* @returns {object} a [ledger structure]{@link https://github.com/ccxt/ccxt/wiki/Manual#ledger-structure}
|
|
35901
35901
|
*/
|
|
35902
35902
|
await this.loadMarkets();
|
|
@@ -36013,7 +36013,7 @@ class bitfinex2 extends _abstract_bitfinex2_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
36013
36013
|
* @param {string} symbol unified market symbol
|
|
36014
36014
|
* @param {object} [params] extra parameters specific to the bingx api endpoint
|
|
36015
36015
|
* @param {int} [params.until] timestamp in ms of the latest funding rate
|
|
36016
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
36016
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
36017
36017
|
* @returns {object} a [funding rate structure]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-structure}
|
|
36018
36018
|
*/
|
|
36019
36019
|
await this.loadMarkets();
|
|
@@ -39631,7 +39631,7 @@ class bitget extends _abstract_bitget_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
39631
39631
|
* @param {string} [params.pageNo] pageNo default 1
|
|
39632
39632
|
* @param {string} [params.pageSize] pageSize default 20. Max 100
|
|
39633
39633
|
* @param {int} [params.until] end tim in ms
|
|
39634
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
39634
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
39635
39635
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
39636
39636
|
*/
|
|
39637
39637
|
await this.loadMarkets();
|
|
@@ -39769,7 +39769,7 @@ class bitget extends _abstract_bitget_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
39769
39769
|
* @param {string} [params.pageNo] pageNo default 1
|
|
39770
39770
|
* @param {string} [params.pageSize] pageSize default 20. Max 100
|
|
39771
39771
|
* @param {int} [params.until] end time in ms
|
|
39772
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
39772
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
39773
39773
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
39774
39774
|
*/
|
|
39775
39775
|
await this.loadMarkets();
|
|
@@ -40584,7 +40584,7 @@ class bitget extends _abstract_bitget_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
40584
40584
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
40585
40585
|
* @param {object} [params] extra parameters specific to the bitget api endpoint
|
|
40586
40586
|
* @param {int} [params.until] timestamp in ms of the latest candle to fetch
|
|
40587
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
40587
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
40588
40588
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
40589
40589
|
*/
|
|
40590
40590
|
await this.loadMarkets();
|
|
@@ -41974,7 +41974,7 @@ class bitget extends _abstract_bitget_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
41974
41974
|
* @param {int} [limit] max number of ledger entrys to return, default is undefined
|
|
41975
41975
|
* @param {object} [params] extra parameters specific to the bitget api endpoint
|
|
41976
41976
|
* @param {int} [params.until] end tim in ms
|
|
41977
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
41977
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
41978
41978
|
* @returns {object} a [ledger structure]{@link https://github.com/ccxt/ccxt/wiki/Manual#ledger-structure}
|
|
41979
41979
|
*/
|
|
41980
41980
|
await this.loadMarkets();
|
|
@@ -42075,7 +42075,7 @@ class bitget extends _abstract_bitget_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
42075
42075
|
* @param {int} [limit] the maximum number of trades structures to retrieve
|
|
42076
42076
|
* @param {object} [params] extra parameters specific to the bitget api endpoint
|
|
42077
42077
|
* @param {int} [params.until] *swap only* the latest time in ms to fetch entries for
|
|
42078
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
42078
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
42079
42079
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
42080
42080
|
*/
|
|
42081
42081
|
this.checkRequiredSymbol('fetchMyTrades', symbol);
|
|
@@ -42981,7 +42981,7 @@ class bitget extends _abstract_bitget_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
42981
42981
|
* @param {int} [limit] the maximum number of transfers structures to retrieve
|
|
42982
42982
|
* @param {object} [params] extra parameters specific to the bitget api endpoint
|
|
42983
42983
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
42984
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
42984
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
42985
42985
|
* @returns {object[]} a list of [transfer structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transfer-structure}
|
|
42986
42986
|
*/
|
|
42987
42987
|
await this.loadMarkets();
|
|
@@ -49326,7 +49326,7 @@ class bitmex extends _abstract_bitmex_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
49326
49326
|
* @param {int} [limit] the maximum number of orde structures to retrieve
|
|
49327
49327
|
* @param {object} [params] extra parameters specific to the bitmex api endpoint
|
|
49328
49328
|
* @param {int} [params.until] the earliest time in ms to fetch orders for
|
|
49329
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
49329
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
49330
49330
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
49331
49331
|
*/
|
|
49332
49332
|
await this.loadMarkets();
|
|
@@ -49405,7 +49405,7 @@ class bitmex extends _abstract_bitmex_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
49405
49405
|
* @param {int} [since] the earliest time in ms to fetch trades for
|
|
49406
49406
|
* @param {int} [limit] the maximum number of trades structures to retrieve
|
|
49407
49407
|
* @param {object} [params] extra parameters specific to the bitmex api endpoint
|
|
49408
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
49408
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
49409
49409
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
49410
49410
|
*/
|
|
49411
49411
|
await this.loadMarkets();
|
|
@@ -49886,7 +49886,7 @@ class bitmex extends _abstract_bitmex_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
49886
49886
|
* @param {int} [since] timestamp in ms of the earliest candle to fetch
|
|
49887
49887
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
49888
49888
|
* @param {object} [params] extra parameters specific to the bitmex api endpoint
|
|
49889
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
49889
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
49890
49890
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
49891
49891
|
*/
|
|
49892
49892
|
await this.loadMarkets();
|
|
@@ -50209,7 +50209,7 @@ class bitmex extends _abstract_bitmex_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
50209
50209
|
* @param {int} [since] timestamp in ms of the earliest trade to fetch
|
|
50210
50210
|
* @param {int} [limit] the maximum amount of trades to fetch
|
|
50211
50211
|
* @param {object} [params] extra parameters specific to the bitmex api endpoint
|
|
50212
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
50212
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
50213
50213
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#public-trades}
|
|
50214
50214
|
*/
|
|
50215
50215
|
await this.loadMarkets();
|
|
@@ -73837,7 +73837,7 @@ class bybit extends _abstract_bybit_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
73837
73837
|
* @param {int} [since] timestamp in ms of the earliest candle to fetch
|
|
73838
73838
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
73839
73839
|
* @param {object} [params] extra parameters specific to the bybit api endpoint
|
|
73840
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
73840
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
73841
73841
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
73842
73842
|
*/
|
|
73843
73843
|
this.checkRequiredSymbol('fetchOHLCV', symbol);
|
|
@@ -74081,7 +74081,7 @@ class bybit extends _abstract_bybit_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
74081
74081
|
* @param {int} [limit] the maximum amount of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure} to fetch
|
|
74082
74082
|
* @param {object} [params] extra parameters specific to the bybit api endpoint
|
|
74083
74083
|
* @param {int} [params.until] timestamp in ms of the latest funding rate
|
|
74084
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
74084
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
74085
74085
|
* @returns {object[]} a list of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure}
|
|
74086
74086
|
*/
|
|
74087
74087
|
this.checkRequiredSymbol('fetchFundingRateHistory', symbol);
|
|
@@ -75914,7 +75914,7 @@ class bybit extends _abstract_bybit_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
75914
75914
|
* @param {string} [params.subType] market subType, ['linear', 'inverse']
|
|
75915
75915
|
* @param {string} [params.orderFilter] 'Order' or 'StopOrder' or 'tpslOrder'
|
|
75916
75916
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
75917
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
75917
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
75918
75918
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
75919
75919
|
*/
|
|
75920
75920
|
await this.loadMarkets();
|
|
@@ -76294,7 +76294,7 @@ class bybit extends _abstract_bybit_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
76294
76294
|
* @param {boolean} [params.stop] true if stop order
|
|
76295
76295
|
* @param {string} [params.type] market type, ['swap', 'option', 'spot']
|
|
76296
76296
|
* @param {string} [params.subType] market subType, ['linear', 'inverse']
|
|
76297
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
76297
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
76298
76298
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
76299
76299
|
*/
|
|
76300
76300
|
await this.loadMarkets();
|
|
@@ -76516,7 +76516,7 @@ class bybit extends _abstract_bybit_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
76516
76516
|
* @param {int} [params.until] the latest time in ms to fetch deposits for, default = 30 days after since
|
|
76517
76517
|
*
|
|
76518
76518
|
* EXCHANGE SPECIFIC PARAMETERS
|
|
76519
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
76519
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
76520
76520
|
* @param {string} [params.cursor] used for pagination
|
|
76521
76521
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
76522
76522
|
*/
|
|
@@ -76585,7 +76585,7 @@ class bybit extends _abstract_bybit_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
76585
76585
|
* @param {int} [limit] the maximum number of withdrawals structures to retrieve
|
|
76586
76586
|
* @param {object} [params] extra parameters specific to the bybit api endpoint
|
|
76587
76587
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
76588
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
76588
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
76589
76589
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
76590
76590
|
*/
|
|
76591
76591
|
await this.loadMarkets();
|
|
@@ -78097,7 +78097,7 @@ class bybit extends _abstract_bybit_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
78097
78097
|
* @param {int} [limit] the maximum number of transfers structures to retrieve
|
|
78098
78098
|
* @param {object} [params] extra parameters specific to the bybit api endpoint
|
|
78099
78099
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
78100
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
78100
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
78101
78101
|
* @returns {object[]} a list of [transfer structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transfer-structure}
|
|
78102
78102
|
*/
|
|
78103
78103
|
await this.loadMarkets();
|
|
@@ -83025,7 +83025,7 @@ class coinbase extends _abstract_coinbase_js__WEBPACK_IMPORTED_MODULE_0__/* ["de
|
|
|
83025
83025
|
* @param {int} [limit] the maximum number of order structures to retrieve
|
|
83026
83026
|
* @param {object} [params] extra parameters specific to the coinbase api endpoint
|
|
83027
83027
|
* @param {int} [params.until] the latest time in ms to fetch trades for
|
|
83028
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
83028
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
83029
83029
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
83030
83030
|
*/
|
|
83031
83031
|
await this.loadMarkets();
|
|
@@ -83191,7 +83191,7 @@ class coinbase extends _abstract_coinbase_js__WEBPACK_IMPORTED_MODULE_0__/* ["de
|
|
|
83191
83191
|
* @param {int} [since] timestamp in ms of the earliest order, default is undefined
|
|
83192
83192
|
* @param {int} [limit] the maximum number of open order structures to retrieve
|
|
83193
83193
|
* @param {object} [params] extra parameters specific to the coinbase api endpoint
|
|
83194
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
83194
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
83195
83195
|
* @param {int} [params.until] the latest time in ms to fetch trades for
|
|
83196
83196
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
83197
83197
|
*/
|
|
@@ -83213,7 +83213,7 @@ class coinbase extends _abstract_coinbase_js__WEBPACK_IMPORTED_MODULE_0__/* ["de
|
|
|
83213
83213
|
* @param {int} [since] timestamp in ms of the earliest order, default is undefined
|
|
83214
83214
|
* @param {int} [limit] the maximum number of closed order structures to retrieve
|
|
83215
83215
|
* @param {object} [params] extra parameters specific to the coinbase api endpoint
|
|
83216
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
83216
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
83217
83217
|
* @param {int} [params.until] the latest time in ms to fetch trades for
|
|
83218
83218
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
83219
83219
|
*/
|
|
@@ -83251,7 +83251,7 @@ class coinbase extends _abstract_coinbase_js__WEBPACK_IMPORTED_MODULE_0__/* ["de
|
|
|
83251
83251
|
* @param {int} [limit] the maximum amount of candles to fetch, not used by coinbase
|
|
83252
83252
|
* @param {object} [params] extra parameters specific to the coinbase api endpoint
|
|
83253
83253
|
* @param {int} [params.until] the latest time in ms to fetch trades for
|
|
83254
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
83254
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
83255
83255
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
83256
83256
|
*/
|
|
83257
83257
|
await this.loadMarkets();
|
|
@@ -83375,7 +83375,7 @@ class coinbase extends _abstract_coinbase_js__WEBPACK_IMPORTED_MODULE_0__/* ["de
|
|
|
83375
83375
|
* @param {int} [limit] the maximum number of trade structures to fetch
|
|
83376
83376
|
* @param {object} [params] extra parameters specific to the coinbase api endpoint
|
|
83377
83377
|
* @param {int} [params.until] the latest time in ms to fetch trades for
|
|
83378
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
83378
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
83379
83379
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
83380
83380
|
*/
|
|
83381
83381
|
await this.loadMarkets();
|
|
@@ -84458,7 +84458,7 @@ class coinbasepro extends _abstract_coinbasepro_js__WEBPACK_IMPORTED_MODULE_0__/
|
|
|
84458
84458
|
* @param {int} [limit] the maximum number of trades structures to retrieve
|
|
84459
84459
|
* @param {object} [params] extra parameters specific to the coinbasepro api endpoint
|
|
84460
84460
|
* @param {int} [params.until] the latest time in ms to fetch trades for
|
|
84461
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
84461
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
84462
84462
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
84463
84463
|
*/
|
|
84464
84464
|
this.checkRequiredSymbol('fetchMyTrades', symbol);
|
|
@@ -84585,7 +84585,7 @@ class coinbasepro extends _abstract_coinbasepro_js__WEBPACK_IMPORTED_MODULE_0__/
|
|
|
84585
84585
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
84586
84586
|
* @param {object} [params] extra parameters specific to the coinbasepro api endpoint
|
|
84587
84587
|
* @param {int} [params.until] the latest time in ms to fetch trades for
|
|
84588
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
84588
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
84589
84589
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
84590
84590
|
*/
|
|
84591
84591
|
await this.loadMarkets();
|
|
@@ -84820,7 +84820,7 @@ class coinbasepro extends _abstract_coinbasepro_js__WEBPACK_IMPORTED_MODULE_0__/
|
|
|
84820
84820
|
* @param {int} [limit] the maximum number of open orders structures to retrieve
|
|
84821
84821
|
* @param {object} [params] extra parameters specific to the coinbasepro api endpoint
|
|
84822
84822
|
* @param {int} [params.until] the latest time in ms to fetch open orders for
|
|
84823
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
84823
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
84824
84824
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
84825
84825
|
*/
|
|
84826
84826
|
await this.loadMarkets();
|
|
@@ -97281,7 +97281,7 @@ class cryptocom extends _abstract_cryptocom_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
97281
97281
|
* @param {int} [limit] the maximum number of order structures to retrieve, default 100 max 100
|
|
97282
97282
|
* @param {object} [params] extra parameters specific to the cryptocom api endpoint
|
|
97283
97283
|
* @param {int} [params.until] timestamp in ms for the ending date filter, default is the current time
|
|
97284
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
97284
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
97285
97285
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
97286
97286
|
*/
|
|
97287
97287
|
await this.loadMarkets();
|
|
@@ -97362,7 +97362,7 @@ class cryptocom extends _abstract_cryptocom_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
97362
97362
|
* @param {int} [limit] the maximum number of trades to fetch
|
|
97363
97363
|
* @param {object} [params] extra parameters specific to the cryptocom api endpoint
|
|
97364
97364
|
* @param {int} [params.until] timestamp in ms for the ending date filter, default is the current time
|
|
97365
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
97365
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
97366
97366
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#public-trades}
|
|
97367
97367
|
*/
|
|
97368
97368
|
await this.loadMarkets();
|
|
@@ -97422,7 +97422,7 @@ class cryptocom extends _abstract_cryptocom_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
97422
97422
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
97423
97423
|
* @param {object} [params] extra parameters specific to the cryptocom api endpoint
|
|
97424
97424
|
* @param {int} [params.until] timestamp in ms for the ending date filter, default is the current time
|
|
97425
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
97425
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
97426
97426
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
97427
97427
|
*/
|
|
97428
97428
|
await this.loadMarkets();
|
|
@@ -97920,7 +97920,7 @@ class cryptocom extends _abstract_cryptocom_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
97920
97920
|
* @param {int} [limit] the maximum number of trade structures to retrieve
|
|
97921
97921
|
* @param {object} [params] extra parameters specific to the cryptocom api endpoint
|
|
97922
97922
|
* @param {int} [params.until] timestamp in ms for the ending date filter, default is the current time
|
|
97923
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
97923
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
97924
97924
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
97925
97925
|
*/
|
|
97926
97926
|
await this.loadMarkets();
|
|
@@ -99415,7 +99415,7 @@ class cryptocom extends _abstract_cryptocom_js__WEBPACK_IMPORTED_MODULE_0__/* ["
|
|
|
99415
99415
|
* @param {int} [limit] the maximum amount of [funding rate structures] to fetch
|
|
99416
99416
|
* @param {object} [params] extra parameters specific to the cryptocom api endpoint
|
|
99417
99417
|
* @param {int} [params.until] timestamp in ms for the ending date filter, default is the current time
|
|
99418
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
99418
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
99419
99419
|
* @returns {object[]} a list of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure}
|
|
99420
99420
|
*/
|
|
99421
99421
|
this.checkRequiredSymbol('fetchFundingRateHistory', symbol);
|
|
@@ -117187,7 +117187,7 @@ class gate extends _abstract_gate_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"]
|
|
|
117187
117187
|
* @param {object} [params] extra parameters specific to the gateio api endpoint
|
|
117188
117188
|
* @param {string} [params.price] "mark" or "index" for mark price and index price candles
|
|
117189
117189
|
* @param {int} [params.until] timestamp in ms of the latest candle to fetch
|
|
117190
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
117190
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
117191
117191
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume (units in quote currency)
|
|
117192
117192
|
*/
|
|
117193
117193
|
await this.loadMarkets();
|
|
@@ -117363,7 +117363,7 @@ class gate extends _abstract_gate_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"]
|
|
|
117363
117363
|
* @param {int} [limit] the maximum amount of trades to fetch
|
|
117364
117364
|
* @param {object} [params] extra parameters specific to the gate api endpoint
|
|
117365
117365
|
* @param {int} [params.until] timestamp in ms of the latest trade to fetch
|
|
117366
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
117366
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
117367
117367
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#public-trades}
|
|
117368
117368
|
*/
|
|
117369
117369
|
await this.loadMarkets();
|
|
@@ -117514,7 +117514,7 @@ class gate extends _abstract_gate_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"]
|
|
|
117514
117514
|
* @param {int} [params.offset] *contract only* list offset, starting from 0
|
|
117515
117515
|
* @param {string} [params.last_id] *contract only* specify list staring point using the id of last record in previous list-query results
|
|
117516
117516
|
* @param {int} [params.count_total] *contract only* whether to return total number matched, default to 0(no return)
|
|
117517
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
117517
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
117518
117518
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
117519
117519
|
*/
|
|
117520
117520
|
await this.loadMarkets();
|
|
@@ -117783,7 +117783,7 @@ class gate extends _abstract_gate_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"]
|
|
|
117783
117783
|
* @param {int} [limit] the maximum number of deposits structures to retrieve
|
|
117784
117784
|
* @param {int} [params.until] end time in ms
|
|
117785
117785
|
* @param {object} [params] extra parameters specific to the gate api endpoint
|
|
117786
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
117786
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
117787
117787
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
117788
117788
|
*/
|
|
117789
117789
|
await this.loadMarkets();
|
|
@@ -117820,7 +117820,7 @@ class gate extends _abstract_gate_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"]
|
|
|
117820
117820
|
* @param {int} [limit] the maximum number of withdrawals structures to retrieve
|
|
117821
117821
|
* @param {object} [params] extra parameters specific to the gate api endpoint
|
|
117822
117822
|
* @param {int} [params.until] end time in ms
|
|
117823
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
117823
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
117824
117824
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
117825
117825
|
*/
|
|
117826
117826
|
await this.loadMarkets();
|
|
@@ -120396,7 +120396,7 @@ class gate extends _abstract_gate_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"]
|
|
|
120396
120396
|
* @param {int} [limit] max number of ledger entries to return
|
|
120397
120397
|
* @param {object} [params] extra parameters specific to the gate api endpoint
|
|
120398
120398
|
* @param {int} [params.until] end time in ms
|
|
120399
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
120399
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
120400
120400
|
* @returns {object} a [ledger structure]{@link https://github.com/ccxt/ccxt/wiki/Manual#ledger-structure}
|
|
120401
120401
|
*/
|
|
120402
120402
|
await this.loadMarkets();
|
|
@@ -129929,7 +129929,7 @@ class huobi extends _abstract_huobi_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
129929
129929
|
* @param {int} [limit] the maximum number of trades structures to retrieve
|
|
129930
129930
|
* @param {object} [params] extra parameters specific to the huobi api endpoint
|
|
129931
129931
|
* @param {int} [params.until] the latest time in ms to fetch trades for
|
|
129932
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
129932
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
129933
129933
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
129934
129934
|
*/
|
|
129935
129935
|
await this.loadMarkets();
|
|
@@ -130206,7 +130206,7 @@ class huobi extends _abstract_huobi_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
130206
130206
|
* @param {int} [since] timestamp in ms of the earliest candle to fetch
|
|
130207
130207
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
130208
130208
|
* @param {object} [params] extra parameters specific to the huobi api endpoint
|
|
130209
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
130209
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
130210
130210
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
130211
130211
|
*/
|
|
130212
130212
|
await this.loadMarkets();
|
|
@@ -131488,7 +131488,7 @@ class huobi extends _abstract_huobi_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
131488
131488
|
* @param {int} [limit] the maximum number of orde structures to retrieve
|
|
131489
131489
|
* @param {object} [params] extra parameters specific to the huobi api endpoint
|
|
131490
131490
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
131491
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
131491
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
131492
131492
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
131493
131493
|
*/
|
|
131494
131494
|
await this.loadMarkets();
|
|
@@ -134856,7 +134856,7 @@ class huobi extends _abstract_huobi_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"
|
|
|
134856
134856
|
* @param {int} [limit] max number of ledger entrys to return, default is undefined
|
|
134857
134857
|
* @param {object} [params] extra parameters specific to the huobi api endpoint
|
|
134858
134858
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
134859
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
134859
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
134860
134860
|
* @returns {object} a [ledger structure]{@link https://github.com/ccxt/ccxt/wiki/Manual#ledger-structure}
|
|
134861
134861
|
*/
|
|
134862
134862
|
await this.loadMarkets();
|
|
@@ -142199,7 +142199,7 @@ class kraken extends _abstract_kraken_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
142199
142199
|
* @param {int} [since] timestamp in ms of the earliest candle to fetch
|
|
142200
142200
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
142201
142201
|
* @param {object} [params] extra parameters specific to the kraken api endpoint
|
|
142202
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
142202
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
142203
142203
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
142204
142204
|
*/
|
|
142205
142205
|
await this.loadMarkets();
|
|
@@ -144599,7 +144599,7 @@ class krakenfutures extends _abstract_krakenfutures_js__WEBPACK_IMPORTED_MODULE_
|
|
|
144599
144599
|
* @param {int} [since] timestamp in ms of the earliest candle to fetch
|
|
144600
144600
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
144601
144601
|
* @param {object} [params] extra parameters specific to the kraken api endpoint
|
|
144602
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
144602
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
144603
144603
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
144604
144604
|
*/
|
|
144605
144605
|
await this.loadMarkets();
|
|
@@ -144685,7 +144685,7 @@ class krakenfutures extends _abstract_krakenfutures_js__WEBPACK_IMPORTED_MODULE_
|
|
|
144685
144685
|
* @param {int} [limit] Total number of trades, cannot exceed 100
|
|
144686
144686
|
* @param {object} [params] Exchange specific params
|
|
144687
144687
|
* @param {int} [params.until] Timestamp in ms of latest trade
|
|
144688
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
144688
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
144689
144689
|
* @returns An array of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
144690
144690
|
*/
|
|
144691
144691
|
await this.loadMarkets();
|
|
@@ -147769,7 +147769,7 @@ class kucoin extends _abstract_kucoin_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
147769
147769
|
* @param {int} [since] timestamp in ms of the earliest candle to fetch
|
|
147770
147770
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
147771
147771
|
* @param {object} [params] extra parameters specific to the kucoin api endpoint
|
|
147772
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
147772
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
147773
147773
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
147774
147774
|
*/
|
|
147775
147775
|
await this.loadMarkets();
|
|
@@ -148433,7 +148433,7 @@ class kucoin extends _abstract_kucoin_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
148433
148433
|
* @param {string} [params.tradeType] TRADE for spot trading, MARGIN_TRADE for Margin Trading
|
|
148434
148434
|
* @param {bool} [params.stop] True if fetching a stop order
|
|
148435
148435
|
* @param {bool} [params.hf] false, // true for hf order
|
|
148436
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
148436
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
148437
148437
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
148438
148438
|
*/
|
|
148439
148439
|
await this.loadMarkets;
|
|
@@ -148466,7 +148466,7 @@ class kucoin extends _abstract_kucoin_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
148466
148466
|
* @param {string} [params.orderIds] *stop orders only* comma seperated order ID list
|
|
148467
148467
|
* @param {bool} [params.stop] True if fetching a stop order
|
|
148468
148468
|
* @param {bool} [params.hf] false, // true for hf order
|
|
148469
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
148469
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
148470
148470
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
148471
148471
|
*/
|
|
148472
148472
|
await this.loadMarkets;
|
|
@@ -148763,7 +148763,7 @@ class kucoin extends _abstract_kucoin_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
148763
148763
|
* @param {object} [params] extra parameters specific to the kucoin api endpoint
|
|
148764
148764
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
148765
148765
|
* @param {bool} [params.hf] false, // true for hf order
|
|
148766
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
148766
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
148767
148767
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
148768
148768
|
*/
|
|
148769
148769
|
await this.loadMarkets();
|
|
@@ -149266,7 +149266,7 @@ class kucoin extends _abstract_kucoin_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
149266
149266
|
* @param {int} [limit] the maximum number of deposits structures to retrieve
|
|
149267
149267
|
* @param {object} [params] extra parameters specific to the kucoin api endpoint
|
|
149268
149268
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
149269
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
149269
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
149270
149270
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
149271
149271
|
*/
|
|
149272
149272
|
await this.loadMarkets();
|
|
@@ -149350,7 +149350,7 @@ class kucoin extends _abstract_kucoin_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
149350
149350
|
* @param {int} [limit] the maximum number of withdrawals structures to retrieve
|
|
149351
149351
|
* @param {object} [params] extra parameters specific to the kucoin api endpoint
|
|
149352
149352
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
149353
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
149353
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
149354
149354
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
149355
149355
|
*/
|
|
149356
149356
|
await this.loadMarkets();
|
|
@@ -149874,7 +149874,7 @@ class kucoin extends _abstract_kucoin_js__WEBPACK_IMPORTED_MODULE_0__/* ["defaul
|
|
|
149874
149874
|
* @param {int} [limit] max number of ledger entrys to return, default is undefined
|
|
149875
149875
|
* @param {object} [params] extra parameters specific to the kucoin api endpoint
|
|
149876
149876
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
149877
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
149877
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
149878
149878
|
* @returns {object} a [ledger structure]{@link https://github.com/ccxt/ccxt/wiki/Manual#ledger-structure}
|
|
149879
149879
|
*/
|
|
149880
149880
|
await this.loadMarkets();
|
|
@@ -150998,7 +150998,7 @@ class kucoinfutures extends _abstract_kucoinfutures_js__WEBPACK_IMPORTED_MODULE_
|
|
|
150998
150998
|
* @param {int} [since] timestamp in ms of the earliest candle to fetch
|
|
150999
150999
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
151000
151000
|
* @param {object} [params] extra parameters specific to the kucoinfutures api endpoint
|
|
151001
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
151001
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
151002
151002
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
151003
151003
|
*/
|
|
151004
151004
|
await this.loadMarkets();
|
|
@@ -151886,7 +151886,7 @@ class kucoinfutures extends _abstract_kucoinfutures_js__WEBPACK_IMPORTED_MODULE_
|
|
|
151886
151886
|
* @param {int} [params.until] End time in ms
|
|
151887
151887
|
* @param {string} [params.side] buy or sell
|
|
151888
151888
|
* @param {string} [params.type] limit or market
|
|
151889
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
151889
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
151890
151890
|
* @returns An [array of order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
151891
151891
|
*/
|
|
151892
151892
|
await this.loadMarkets();
|
|
@@ -151992,7 +151992,7 @@ class kucoinfutures extends _abstract_kucoinfutures_js__WEBPACK_IMPORTED_MODULE_
|
|
|
151992
151992
|
* @param {int} [params.till] end time in ms
|
|
151993
151993
|
* @param {string} [params.side] buy or sell
|
|
151994
151994
|
* @param {string} [params.type] limit, or market
|
|
151995
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
151995
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
151996
151996
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
151997
151997
|
*/
|
|
151998
151998
|
await this.loadMarkets;
|
|
@@ -152366,7 +152366,7 @@ class kucoinfutures extends _abstract_kucoinfutures_js__WEBPACK_IMPORTED_MODULE_
|
|
|
152366
152366
|
* @param {int} [limit] the maximum number of trades structures to retrieve
|
|
152367
152367
|
* @param {object} [params] extra parameters specific to the kucoinfutures api endpoint
|
|
152368
152368
|
* @param {int} [params.until] End time in ms
|
|
152369
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
152369
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
152370
152370
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
152371
152371
|
*/
|
|
152372
152372
|
await this.loadMarkets();
|
|
@@ -152792,7 +152792,7 @@ class kucoinfutures extends _abstract_kucoinfutures_js__WEBPACK_IMPORTED_MODULE_
|
|
|
152792
152792
|
* @param {int} [since] not used by kucuoinfutures
|
|
152793
152793
|
* @param {int} [limit] the maximum amount of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure} to fetch
|
|
152794
152794
|
* @param {object} [params] extra parameters specific to the okx api endpoint
|
|
152795
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
152795
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
152796
152796
|
* @returns {object[]} a list of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure}
|
|
152797
152797
|
*/
|
|
152798
152798
|
if (symbol === undefined) {
|
|
@@ -178803,7 +178803,7 @@ class okx extends _abstract_okx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */
|
|
|
178803
178803
|
* @param {object} [params] extra parameters specific to the okx api endpoint
|
|
178804
178804
|
* @param {string} [params.price] "mark" or "index" for mark price and index price candles
|
|
178805
178805
|
* @param {int} [params.until] timestamp in ms of the latest candle to fetch
|
|
178806
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
178806
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
178807
178807
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
178808
178808
|
*/
|
|
178809
178809
|
await this.loadMarkets();
|
|
@@ -178903,7 +178903,7 @@ class okx extends _abstract_okx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */
|
|
|
178903
178903
|
* @param {int} [since] timestamp in ms of the earliest funding rate to fetch
|
|
178904
178904
|
* @param {int} [limit] the maximum amount of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure} to fetch
|
|
178905
178905
|
* @param {object} [params] extra parameters specific to the okx api endpoint
|
|
178906
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
178906
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
178907
178907
|
* @returns {object[]} a list of [funding rate structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#funding-rate-history-structure}
|
|
178908
178908
|
*/
|
|
178909
178909
|
if (symbol === undefined) {
|
|
@@ -180147,7 +180147,7 @@ class okx extends _abstract_okx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */
|
|
|
180147
180147
|
* @param {bool} [params.stop] True if fetching trigger or conditional orders
|
|
180148
180148
|
* @param {string} [params.ordType] "conditional", "oco", "trigger", "move_order_stop", "iceberg", or "twap"
|
|
180149
180149
|
* @param {string} [params.algoId] Algo ID "'433845797218942976'"
|
|
180150
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
180150
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
180151
180151
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
180152
180152
|
*/
|
|
180153
180153
|
await this.loadMarkets();
|
|
@@ -180479,7 +180479,7 @@ class okx extends _abstract_okx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */
|
|
|
180479
180479
|
* @param {string} [params.ordType] "conditional", "oco", "trigger", "move_order_stop", "iceberg", or "twap"
|
|
180480
180480
|
* @param {string} [params.algoId] Algo ID "'433845797218942976'"
|
|
180481
180481
|
* @param {int} [params.until] timestamp in ms to fetch orders for
|
|
180482
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
180482
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
180483
180483
|
* @returns {Order[]} a list of [order structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#order-structure}
|
|
180484
180484
|
*/
|
|
180485
180485
|
await this.loadMarkets();
|
|
@@ -180648,7 +180648,7 @@ class okx extends _abstract_okx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */
|
|
|
180648
180648
|
* @param {int} [limit] the maximum number of trades structures to retrieve
|
|
180649
180649
|
* @param {object} [params] extra parameters specific to the okx api endpoint
|
|
180650
180650
|
* @param {int} [params.until] Timestamp in ms of the latest time to retrieve trades for
|
|
180651
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
180651
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
180652
180652
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
180653
180653
|
*/
|
|
180654
180654
|
await this.loadMarkets();
|
|
@@ -180742,7 +180742,7 @@ class okx extends _abstract_okx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */
|
|
|
180742
180742
|
* @param {object} [params] extra parameters specific to the okx api endpoint
|
|
180743
180743
|
* @param {string} [params.marginMode] 'cross' or 'isolated'
|
|
180744
180744
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
180745
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
180745
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
180746
180746
|
* @returns {object} a [ledger structure]{@link https://github.com/ccxt/ccxt/wiki/Manual#ledger-structure}
|
|
180747
180747
|
*/
|
|
180748
180748
|
await this.loadMarkets();
|
|
@@ -181206,7 +181206,7 @@ class okx extends _abstract_okx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */
|
|
|
181206
181206
|
* @param {int} [limit] the maximum number of deposits structures to retrieve
|
|
181207
181207
|
* @param {object} [params] extra parameters specific to the okx api endpoint
|
|
181208
181208
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
181209
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
181209
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
181210
181210
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
181211
181211
|
*/
|
|
181212
181212
|
await this.loadMarkets();
|
|
@@ -181312,7 +181312,7 @@ class okx extends _abstract_okx_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */
|
|
|
181312
181312
|
* @param {int} [limit] the maximum number of withdrawals structures to retrieve
|
|
181313
181313
|
* @param {object} [params] extra parameters specific to the okx api endpoint
|
|
181314
181314
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
181315
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
181315
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
181316
181316
|
* @returns {object[]} a list of [transaction structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#transaction-structure}
|
|
181317
181317
|
*/
|
|
181318
181318
|
await this.loadMarkets();
|
|
@@ -189093,7 +189093,7 @@ class poloniex extends _abstract_poloniex_js__WEBPACK_IMPORTED_MODULE_0__/* ["de
|
|
|
189093
189093
|
* @param {int} [limit] the maximum amount of candles to fetch
|
|
189094
189094
|
* @param {object} [params] extra parameters specific to the poloniex api endpoint
|
|
189095
189095
|
* @param {int} [params.until] timestamp in ms
|
|
189096
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
189096
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
189097
189097
|
* @returns {int[][]} A list of candles ordered as timestamp, open, high, low, close, volume
|
|
189098
189098
|
*/
|
|
189099
189099
|
await this.loadMarkets();
|
|
@@ -189655,7 +189655,7 @@ class poloniex extends _abstract_poloniex_js__WEBPACK_IMPORTED_MODULE_0__/* ["de
|
|
|
189655
189655
|
* @param {int} [limit] the maximum number of trades structures to retrieve
|
|
189656
189656
|
* @param {object} [params] extra parameters specific to the poloniex api endpoint
|
|
189657
189657
|
* @param {int} [params.until] the latest time in ms to fetch entries for
|
|
189658
|
-
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters]
|
|
189658
|
+
* @param {boolean} [params.paginate] default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
189659
189659
|
* @returns {Trade[]} a list of [trade structures]{@link https://github.com/ccxt/ccxt/wiki/Manual#trade-structure}
|
|
189660
189660
|
*/
|
|
189661
189661
|
await this.loadMarkets();
|
|
@@ -275219,7 +275219,7 @@ SOFTWARE.
|
|
|
275219
275219
|
|
|
275220
275220
|
//-----------------------------------------------------------------------------
|
|
275221
275221
|
// this is updated by vss.js when building
|
|
275222
|
-
const version = '4.1.
|
|
275222
|
+
const version = '4.1.7';
|
|
275223
275223
|
_src_base_Exchange_js__WEBPACK_IMPORTED_MODULE_0__/* .Exchange.ccxtVersion */ .e.ccxtVersion = version;
|
|
275224
275224
|
//-----------------------------------------------------------------------------
|
|
275225
275225
|
|