ccxt 4.4.42 → 4.4.44
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 +35 -33
- package/dist/ccxt.browser.min.js +15 -15
- package/dist/cjs/ccxt.js +6 -1
- package/dist/cjs/src/binance.js +55 -43
- package/dist/cjs/src/bingx.js +37 -12
- package/dist/cjs/src/bitfinex.js +6 -2
- package/dist/cjs/src/bitget.js +3 -1
- package/dist/cjs/src/bitmart.js +4 -7
- package/dist/cjs/src/bitmex.js +3 -5
- package/dist/cjs/src/bitstamp.js +59 -0
- package/dist/cjs/src/bybit.js +7 -22
- package/dist/cjs/src/coinbase.js +13 -9
- package/dist/cjs/src/coinbaseinternational.js +13 -9
- package/dist/cjs/src/coincatch.js +2 -2
- package/dist/cjs/src/coinex.js +5 -5
- package/dist/cjs/src/cryptocom.js +3 -1
- package/dist/cjs/src/defx.js +2 -2
- package/dist/cjs/src/delta.js +1 -1
- package/dist/cjs/src/gate.js +7 -2
- package/dist/cjs/src/gemini.js +65 -2
- package/dist/cjs/src/hashkey.js +9 -9
- package/dist/cjs/src/htx.js +105 -2
- package/dist/cjs/src/hyperliquid.js +6 -1
- package/dist/cjs/src/kraken.js +9 -2
- package/dist/cjs/src/krakenfutures.js +5 -0
- package/dist/cjs/src/kucoin.js +9 -7
- package/dist/cjs/src/kucoinfutures.js +5 -5
- package/dist/cjs/src/mexc.js +16 -10
- package/dist/cjs/src/myokx.js +35 -0
- package/dist/cjs/src/ndax.js +1 -1
- package/dist/cjs/src/oceanex.js +1 -1
- package/dist/cjs/src/okx.js +4 -5
- package/dist/cjs/src/phemex.js +7 -5
- package/dist/cjs/src/pro/bitcoincom.js +4 -1
- package/dist/cjs/src/pro/bitopro.js +1 -1
- package/dist/cjs/src/pro/myokx.js +24 -0
- package/dist/cjs/src/vertex.js +69 -4
- package/dist/cjs/src/whitebit.js +4 -2
- package/dist/cjs/src/woo.js +8 -6
- package/dist/cjs/src/woofipro.js +5 -2
- package/js/ccxt.d.ts +8 -2
- package/js/ccxt.js +6 -2
- package/js/src/abstract/binance.d.ts +1 -0
- package/js/src/abstract/binancecoinm.d.ts +1 -0
- package/js/src/abstract/binanceus.d.ts +1 -0
- package/js/src/abstract/binanceusdm.d.ts +1 -0
- package/js/src/abstract/bingx.d.ts +4 -0
- package/js/src/abstract/bitstamp.d.ts +1 -0
- package/js/src/abstract/myokx.d.ts +343 -0
- package/js/src/abstract/myokx.js +11 -0
- package/js/src/binance.d.ts +33 -32
- package/js/src/binance.js +55 -43
- package/js/src/bingx.js +37 -12
- package/js/src/bitfinex.js +6 -2
- package/js/src/bitget.js +3 -1
- package/js/src/bitmart.js +4 -7
- package/js/src/bitmex.js +3 -5
- package/js/src/bitstamp.js +59 -0
- package/js/src/bybit.js +7 -22
- package/js/src/coinbase.js +13 -9
- package/js/src/coinbaseinternational.js +13 -9
- package/js/src/coincatch.js +2 -2
- package/js/src/coinex.js +5 -5
- package/js/src/cryptocom.js +3 -1
- package/js/src/defx.js +2 -2
- package/js/src/delta.js +1 -1
- package/js/src/gate.js +7 -2
- package/js/src/gemini.js +65 -2
- package/js/src/hashkey.js +9 -9
- package/js/src/htx.d.ts +13 -1
- package/js/src/htx.js +105 -2
- package/js/src/hyperliquid.js +6 -1
- package/js/src/kraken.js +9 -2
- package/js/src/krakenfutures.js +5 -0
- package/js/src/kucoin.js +9 -7
- package/js/src/kucoinfutures.js +5 -5
- package/js/src/mexc.js +16 -10
- package/js/src/myokx.d.ts +4 -0
- package/js/src/myokx.js +36 -0
- package/js/src/ndax.js +1 -1
- package/js/src/oceanex.js +1 -1
- package/js/src/okx.js +4 -5
- package/js/src/phemex.d.ts +1 -0
- package/js/src/phemex.js +7 -5
- package/js/src/pro/bitcoincom.js +4 -1
- package/js/src/pro/bitopro.js +1 -1
- package/js/src/pro/myokx.d.ts +4 -0
- package/js/src/pro/myokx.js +25 -0
- package/js/src/vertex.d.ts +11 -1
- package/js/src/vertex.js +69 -4
- package/js/src/whitebit.js +4 -2
- package/js/src/woo.js +8 -6
- package/js/src/woofipro.js +5 -2
- package/package.json +15 -8
package/js/src/binance.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export default class binance extends Exchange {
|
|
|
19
19
|
* @method
|
|
20
20
|
* @name binance#fetchTime
|
|
21
21
|
* @description fetches the current integer timestamp in milliseconds from the exchange server
|
|
22
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#check-server-time // spot
|
|
22
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#check-server-time // spot
|
|
23
23
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Check-Server-Time // swap
|
|
24
24
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Check-Server-time // future
|
|
25
25
|
* @param {object} [params] extra parameters specific to the exchange API endpoint
|
|
@@ -41,7 +41,7 @@ export default class binance extends Exchange {
|
|
|
41
41
|
* @method
|
|
42
42
|
* @name binance#fetchMarkets
|
|
43
43
|
* @description retrieves data on all markets for binance
|
|
44
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#exchange-information // spot
|
|
44
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#exchange-information // spot
|
|
45
45
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Exchange-Information // swap
|
|
46
46
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Exchange-Information // future
|
|
47
47
|
* @see https://developers.binance.com/docs/derivatives/option/market-data/Exchange-Information // option
|
|
@@ -58,7 +58,7 @@ export default class binance extends Exchange {
|
|
|
58
58
|
* @method
|
|
59
59
|
* @name binance#fetchBalance
|
|
60
60
|
* @description query for balance and get the amount of funds available for trading or funds locked in orders
|
|
61
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#account-information-user_data // spot
|
|
61
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#account-information-user_data // spot
|
|
62
62
|
* @see https://developers.binance.com/docs/margin_trading/account/Query-Cross-Margin-Account-Details // cross margin
|
|
63
63
|
* @see https://developers.binance.com/docs/margin_trading/account/Query-Isolated-Margin-Account-Info // isolated margin
|
|
64
64
|
* @see https://developers.binance.com/docs/wallet/asset/funding-wallet // funding
|
|
@@ -79,7 +79,7 @@ export default class binance extends Exchange {
|
|
|
79
79
|
* @method
|
|
80
80
|
* @name binance#fetchOrderBook
|
|
81
81
|
* @description fetches information on open orders with bid (buy) and ask (sell) prices, volumes and other data
|
|
82
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#order-book // spot
|
|
82
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#order-book // spot
|
|
83
83
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Order-Book // swap
|
|
84
84
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Order-Book // future
|
|
85
85
|
* @see https://developers.binance.com/docs/derivatives/option/market-data/Order-Book // option
|
|
@@ -109,8 +109,8 @@ export default class binance extends Exchange {
|
|
|
109
109
|
* @method
|
|
110
110
|
* @name binance#fetchTicker
|
|
111
111
|
* @description fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
|
112
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#24hr-ticker-price-change-statistics // spot
|
|
113
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#rolling-window-price-change-statistics // spot
|
|
112
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#24hr-ticker-price-change-statistics // spot
|
|
113
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#rolling-window-price-change-statistics // spot
|
|
114
114
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/24hr-Ticker-Price-Change-Statistics // swap
|
|
115
115
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/24hr-Ticker-Price-Change-Statistics // future
|
|
116
116
|
* @see https://developers.binance.com/docs/derivatives/option/market-data/24hr-Ticker-Price-Change-Statistics // option
|
|
@@ -124,7 +124,7 @@ export default class binance extends Exchange {
|
|
|
124
124
|
* @method
|
|
125
125
|
* @name binance#fetchBidsAsks
|
|
126
126
|
* @description fetches the bid and ask price and volume for multiple markets
|
|
127
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#symbol-order-book-ticker // spot
|
|
127
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#symbol-order-book-ticker // spot
|
|
128
128
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Order-Book-Ticker // swap
|
|
129
129
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Symbol-Order-Book-Ticker // future
|
|
130
130
|
* @param {string[]|undefined} symbols unified symbols of the markets to fetch the bids and asks for, all markets are returned if not assigned
|
|
@@ -137,7 +137,7 @@ export default class binance extends Exchange {
|
|
|
137
137
|
* @method
|
|
138
138
|
* @name binance#fetchLastPrices
|
|
139
139
|
* @description fetches the last price for multiple markets
|
|
140
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#symbol-price-ticker // spot
|
|
140
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#symbol-price-ticker // spot
|
|
141
141
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Price-Ticker // swap
|
|
142
142
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Symbol-Price-Ticker // future
|
|
143
143
|
* @param {string[]|undefined} symbols unified symbols of the markets to fetch the last prices
|
|
@@ -158,7 +158,7 @@ export default class binance extends Exchange {
|
|
|
158
158
|
* @method
|
|
159
159
|
* @name binance#fetchTickers
|
|
160
160
|
* @description fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
|
|
161
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#24hr-ticker-price-change-statistics // spot
|
|
161
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#24hr-ticker-price-change-statistics // spot
|
|
162
162
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/24hr-Ticker-Price-Change-Statistics // swap
|
|
163
163
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/24hr-Ticker-Price-Change-Statistics // future
|
|
164
164
|
* @see https://developers.binance.com/docs/derivatives/option/market-data/24hr-Ticker-Price-Change-Statistics // option
|
|
@@ -198,7 +198,7 @@ export default class binance extends Exchange {
|
|
|
198
198
|
* @method
|
|
199
199
|
* @name binance#fetchOHLCV
|
|
200
200
|
* @description fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
|
201
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#klinecandlestick-data
|
|
201
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#klinecandlestick-data
|
|
202
202
|
* @see https://developers.binance.com/docs/derivatives/option/market-data/Kline-Candlestick-Data
|
|
203
203
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Kline-Candlestick-Data
|
|
204
204
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Index-Price-Kline-Candlestick-Data
|
|
@@ -225,15 +225,15 @@ export default class binance extends Exchange {
|
|
|
225
225
|
* @name binance#fetchTrades
|
|
226
226
|
* @description get the list of most recent trades for a particular symbol
|
|
227
227
|
* Default fetchTradesMethod
|
|
228
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#compressedaggregate-trades-list // publicGetAggTrades (spot)
|
|
228
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#compressedaggregate-trades-list // publicGetAggTrades (spot)
|
|
229
229
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Compressed-Aggregate-Trades-List // fapiPublicGetAggTrades (swap)
|
|
230
230
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Compressed-Aggregate-Trades-List // dapiPublicGetAggTrades (future)
|
|
231
231
|
* @see https://developers.binance.com/docs/derivatives/option/market-data/Recent-Trades-List // eapiPublicGetTrades (option)
|
|
232
232
|
* Other fetchTradesMethod
|
|
233
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#recent-trades-list // publicGetTrades (spot)
|
|
233
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#recent-trades-list // publicGetTrades (spot)
|
|
234
234
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Recent-Trades-List // fapiPublicGetTrades (swap)
|
|
235
235
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Recent-Trades-List // dapiPublicGetTrades (future)
|
|
236
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#old-trade-lookup // publicGetHistoricalTrades (spot)
|
|
236
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#old-trade-lookup // publicGetHistoricalTrades (spot)
|
|
237
237
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Old-Trades-Lookup // fapiPublicGetHistoricalTrades (swap)
|
|
238
238
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Old-Trades-Lookup // dapiPublicGetHistoricalTrades (future)
|
|
239
239
|
* @see https://developers.binance.com/docs/derivatives/option/market-data/Old-Trades-Lookup // eapiPublicGetHistoricalTrades (option)
|
|
@@ -255,7 +255,7 @@ export default class binance extends Exchange {
|
|
|
255
255
|
* @name binance#editSpotOrder
|
|
256
256
|
* @ignore
|
|
257
257
|
* @description edit a trade order
|
|
258
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#cancel-an-existing-order-and-send-a-new-order-trade
|
|
258
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#cancel-an-existing-order-and-send-a-new-order-trade
|
|
259
259
|
* @param {string} id cancel order id
|
|
260
260
|
* @param {string} symbol unified symbol of the market to create an order in
|
|
261
261
|
* @param {string} type 'market' or 'limit' or 'STOP_LOSS' or 'STOP_LOSS_LIMIT' or 'TAKE_PROFIT' or 'TAKE_PROFIT_LIMIT' or 'STOP'
|
|
@@ -289,7 +289,7 @@ export default class binance extends Exchange {
|
|
|
289
289
|
* @method
|
|
290
290
|
* @name binance#editOrder
|
|
291
291
|
* @description edit a trade order
|
|
292
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#cancel-an-existing-order-and-send-a-new-order-trade
|
|
292
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#cancel-an-existing-order-and-send-a-new-order-trade
|
|
293
293
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Modify-Order
|
|
294
294
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Modify-Order
|
|
295
295
|
* @param {string} id cancel order id
|
|
@@ -320,13 +320,13 @@ export default class binance extends Exchange {
|
|
|
320
320
|
* @method
|
|
321
321
|
* @name binance#createOrder
|
|
322
322
|
* @description create a trade order
|
|
323
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#new-order-trade
|
|
324
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#test-new-order-trade
|
|
323
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#new-order-trade
|
|
324
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#test-new-order-trade
|
|
325
325
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/New-Order
|
|
326
326
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/New-Order
|
|
327
327
|
* @see https://developers.binance.com/docs/derivatives/option/trade/New-Order
|
|
328
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#sor
|
|
329
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#test-new-order-using-sor-trade
|
|
328
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#sor
|
|
329
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#test-new-order-using-sor-trade
|
|
330
330
|
* @see https://developers.binance.com/docs/derivatives/portfolio-margin/trade/New-UM-Order
|
|
331
331
|
* @see https://developers.binance.com/docs/derivatives/portfolio-margin/trade/New-CM-Order
|
|
332
332
|
* @see https://developers.binance.com/docs/derivatives/portfolio-margin/trade/New-Margin-Order
|
|
@@ -351,6 +351,7 @@ export default class binance extends Exchange {
|
|
|
351
351
|
* @param {string} [params.stopLossOrTakeProfit] 'stopLoss' or 'takeProfit', required for spot trailing orders
|
|
352
352
|
* @param {string} [params.positionSide] *swap and portfolio margin only* "BOTH" for one-way mode, "LONG" for buy side of hedged mode, "SHORT" for sell side of hedged mode
|
|
353
353
|
* @param {bool} [params.hedged] *swap and portfolio margin only* true for hedged mode, false for one way mode, default is false
|
|
354
|
+
* @param {float} [params.cost] *spot market buy only* the quote quantity that can be used as an alternative for the amount
|
|
354
355
|
* @returns {object} an [order structure]{@link https://docs.ccxt.com/#/?id=order-structure}
|
|
355
356
|
*/
|
|
356
357
|
createOrder(symbol: string, type: OrderType, side: OrderSide, amount: number, price?: Num, params?: {}): Promise<Order>;
|
|
@@ -359,7 +360,7 @@ export default class binance extends Exchange {
|
|
|
359
360
|
* @method
|
|
360
361
|
* @name binance#createMarketOrderWithCost
|
|
361
362
|
* @description create a market order by providing the symbol, side and cost
|
|
362
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#new-order-trade
|
|
363
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#new-order-trade
|
|
363
364
|
* @param {string} symbol unified symbol of the market to create an order in
|
|
364
365
|
* @param {string} side 'buy' or 'sell'
|
|
365
366
|
* @param {float} cost how much you want to trade in units of the quote currency
|
|
@@ -371,7 +372,7 @@ export default class binance extends Exchange {
|
|
|
371
372
|
* @method
|
|
372
373
|
* @name binance#createMarketBuyOrderWithCost
|
|
373
374
|
* @description create a market buy order by providing the symbol and cost
|
|
374
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#new-order-trade
|
|
375
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#new-order-trade
|
|
375
376
|
* @param {string} symbol unified symbol of the market to create an order in
|
|
376
377
|
* @param {float} cost how much you want to trade in units of the quote currency
|
|
377
378
|
* @param {object} [params] extra parameters specific to the exchange API endpoint
|
|
@@ -382,7 +383,7 @@ export default class binance extends Exchange {
|
|
|
382
383
|
* @method
|
|
383
384
|
* @name binance#createMarketSellOrderWithCost
|
|
384
385
|
* @description create a market sell order by providing the symbol and cost
|
|
385
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#new-order-trade
|
|
386
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#new-order-trade
|
|
386
387
|
* @param {string} symbol unified symbol of the market to create an order in
|
|
387
388
|
* @param {float} cost how much you want to trade in units of the quote currency
|
|
388
389
|
* @param {object} [params] extra parameters specific to the exchange API endpoint
|
|
@@ -393,7 +394,7 @@ export default class binance extends Exchange {
|
|
|
393
394
|
* @method
|
|
394
395
|
* @name binance#fetchOrder
|
|
395
396
|
* @description fetches information on an order made by the user
|
|
396
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#query-order-user_data
|
|
397
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#query-order-user_data
|
|
397
398
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Query-Order
|
|
398
399
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Query-Order
|
|
399
400
|
* @see https://developers.binance.com/docs/derivatives/option/trade/Query-Single-Order
|
|
@@ -412,7 +413,7 @@ export default class binance extends Exchange {
|
|
|
412
413
|
* @method
|
|
413
414
|
* @name binance#fetchOrders
|
|
414
415
|
* @description fetches information on multiple orders made by the user
|
|
415
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#all-orders-user_data
|
|
416
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#all-orders-user_data
|
|
416
417
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/All-Orders
|
|
417
418
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/All-Orders
|
|
418
419
|
* @see https://developers.binance.com/docs/derivatives/option/trade/Query-Option-Order-History
|
|
@@ -437,7 +438,7 @@ export default class binance extends Exchange {
|
|
|
437
438
|
* @method
|
|
438
439
|
* @name binance#fetchOpenOrders
|
|
439
440
|
* @description fetch all unfilled currently open orders
|
|
440
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#current-open-orders-user_data
|
|
441
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#current-open-orders-user_data
|
|
441
442
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Current-All-Open-Orders
|
|
442
443
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Current-All-Open-Orders
|
|
443
444
|
* @see https://developers.binance.com/docs/derivatives/option/trade/Query-Current-Open-Option-Orders
|
|
@@ -478,7 +479,7 @@ export default class binance extends Exchange {
|
|
|
478
479
|
* @method
|
|
479
480
|
* @name binance#fetchClosedOrders
|
|
480
481
|
* @description fetches information on multiple closed orders made by the user
|
|
481
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#all-orders-user_data
|
|
482
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#all-orders-user_data
|
|
482
483
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/All-Orders
|
|
483
484
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/All-Orders
|
|
484
485
|
* @see https://developers.binance.com/docs/derivatives/option/trade/Query-Option-Order-History
|
|
@@ -501,7 +502,7 @@ export default class binance extends Exchange {
|
|
|
501
502
|
* @method
|
|
502
503
|
* @name binance#fetchCanceledOrders
|
|
503
504
|
* @description fetches information on multiple canceled orders made by the user
|
|
504
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#all-orders-user_data
|
|
505
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#all-orders-user_data
|
|
505
506
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/All-Orders
|
|
506
507
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/All-Orders
|
|
507
508
|
* @see https://developers.binance.com/docs/derivatives/option/trade/Query-Option-Order-History
|
|
@@ -524,7 +525,7 @@ export default class binance extends Exchange {
|
|
|
524
525
|
* @method
|
|
525
526
|
* @name binance#fetchCanceledAndClosedOrders
|
|
526
527
|
* @description fetches information on multiple canceled orders made by the user
|
|
527
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#all-orders-user_data
|
|
528
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#all-orders-user_data
|
|
528
529
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/All-Orders
|
|
529
530
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/All-Orders
|
|
530
531
|
* @see https://developers.binance.com/docs/derivatives/option/trade/Query-Option-Order-History
|
|
@@ -547,7 +548,7 @@ export default class binance extends Exchange {
|
|
|
547
548
|
* @method
|
|
548
549
|
* @name binance#cancelOrder
|
|
549
550
|
* @description cancels an open order
|
|
550
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#cancel-order-trade
|
|
551
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#cancel-order-trade
|
|
551
552
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Cancel-Order
|
|
552
553
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Cancel-Order
|
|
553
554
|
* @see https://developers.binance.com/docs/derivatives/option/trade/Cancel-Option-Order
|
|
@@ -569,7 +570,7 @@ export default class binance extends Exchange {
|
|
|
569
570
|
* @method
|
|
570
571
|
* @name binance#cancelAllOrders
|
|
571
572
|
* @description cancel all open orders in a market
|
|
572
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#cancel-all-open-orders-on-a-symbol-trade
|
|
573
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#cancel-all-open-orders-on-a-symbol-trade
|
|
573
574
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Cancel-All-Open-Orders
|
|
574
575
|
* @see https://developers.binance.com/docs/derivatives/option/trade/Cancel-all-Option-orders-on-specific-symbol
|
|
575
576
|
* @see https://developers.binance.com/docs/margin_trading/trade/Margin-Account-Cancel-All-Open-Orders
|
|
@@ -606,7 +607,7 @@ export default class binance extends Exchange {
|
|
|
606
607
|
* @method
|
|
607
608
|
* @name binance#fetchOrderTrades
|
|
608
609
|
* @description fetch all the trades made from a single order
|
|
609
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#account-trade-list-user_data
|
|
610
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#account-trade-list-user_data
|
|
610
611
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Account-Trade-List
|
|
611
612
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Account-Trade-List
|
|
612
613
|
* @see https://developers.binance.com/docs/margin_trading/trade/Query-Margin-Account-Trade-List
|
|
@@ -622,7 +623,7 @@ export default class binance extends Exchange {
|
|
|
622
623
|
* @method
|
|
623
624
|
* @name binance#fetchMyTrades
|
|
624
625
|
* @description fetch all trades made by the user
|
|
625
|
-
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api#account-trade-list-user_data
|
|
626
|
+
* @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#account-trade-list-user_data
|
|
626
627
|
* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Account-Trade-List
|
|
627
628
|
* @see https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Account-Trade-List
|
|
628
629
|
* @see https://developers.binance.com/docs/margin_trading/trade/Query-Margin-Account-Trade-List
|