kucoin-api 2.0.0 → 2.0.2
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/dist/cjs/FuturesClient.d.ts +129 -24
- package/dist/cjs/FuturesClient.js +108 -16
- package/dist/cjs/FuturesClient.js.map +1 -1
- package/dist/cjs/SpotClient.d.ts +80 -85
- package/dist/cjs/SpotClient.js +55 -55
- package/dist/cjs/SpotClient.js.map +1 -1
- package/dist/cjs/WebsocketClient.d.ts +1 -0
- package/dist/cjs/WebsocketClient.js +23 -22
- package/dist/cjs/WebsocketClient.js.map +1 -1
- package/dist/cjs/lib/BaseRestClient.d.ts +6 -2
- package/dist/cjs/lib/BaseRestClient.js +8 -1
- package/dist/cjs/lib/BaseRestClient.js.map +1 -1
- package/dist/cjs/lib/requestUtils.d.ts +1 -0
- package/dist/cjs/lib/requestUtils.js.map +1 -1
- package/dist/cjs/types/request/futures.types.d.ts +68 -16
- package/dist/cjs/types/request/spot-account.d.ts +1 -1
- package/dist/cjs/types/request/spot-funding.d.ts +0 -2
- package/dist/cjs/types/request/spot-trading.d.ts +11 -20
- package/dist/cjs/types/response/futures.types.d.ts +118 -58
- package/dist/cjs/types/response/spot-account.d.ts +76 -28
- package/dist/cjs/types/response/spot-funding.d.ts +34 -32
- package/dist/cjs/types/response/spot-margin-trading.d.ts +80 -15
- package/dist/cjs/types/response/spot-misc.d.ts +1 -1
- package/dist/cjs/types/response/spot-trading.d.ts +100 -74
- package/dist/cjs/types/websockets/client.d.ts +4 -0
- package/dist/mjs/FuturesClient.d.ts +129 -24
- package/dist/mjs/FuturesClient.js +108 -16
- package/dist/mjs/FuturesClient.js.map +1 -1
- package/dist/mjs/SpotClient.d.ts +80 -85
- package/dist/mjs/SpotClient.js +55 -55
- package/dist/mjs/SpotClient.js.map +1 -1
- package/dist/mjs/WebsocketClient.d.ts +1 -0
- package/dist/mjs/WebsocketClient.js +23 -22
- package/dist/mjs/WebsocketClient.js.map +1 -1
- package/dist/mjs/lib/BaseRestClient.d.ts +6 -2
- package/dist/mjs/lib/BaseRestClient.js +8 -1
- package/dist/mjs/lib/BaseRestClient.js.map +1 -1
- package/dist/mjs/lib/requestUtils.d.ts +1 -0
- package/dist/mjs/lib/requestUtils.js.map +1 -1
- package/dist/mjs/types/request/futures.types.d.ts +68 -16
- package/dist/mjs/types/request/spot-account.d.ts +1 -1
- package/dist/mjs/types/request/spot-funding.d.ts +0 -2
- package/dist/mjs/types/request/spot-trading.d.ts +11 -20
- package/dist/mjs/types/response/futures.types.d.ts +118 -58
- package/dist/mjs/types/response/spot-account.d.ts +76 -28
- package/dist/mjs/types/response/spot-funding.d.ts +34 -32
- package/dist/mjs/types/response/spot-margin-trading.d.ts +80 -15
- package/dist/mjs/types/response/spot-misc.d.ts +1 -1
- package/dist/mjs/types/response/spot-trading.d.ts +100 -74
- package/dist/mjs/types/websockets/client.d.ts +4 -0
- package/package.json +2 -2
|
@@ -34,7 +34,7 @@ export class FuturesClient extends BaseRestClient {
|
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
* Get Account Ledgers - Futures
|
|
37
|
-
* This
|
|
37
|
+
* This endpoint can query the ledger records of the futures business line
|
|
38
38
|
*/
|
|
39
39
|
getTransactions(params) {
|
|
40
40
|
return this.getPrivate('api/v1/transaction-history', params);
|
|
@@ -58,7 +58,7 @@ export class FuturesClient extends BaseRestClient {
|
|
|
58
58
|
*/
|
|
59
59
|
/**
|
|
60
60
|
* Get Actual Fee - Futures
|
|
61
|
-
* This
|
|
61
|
+
* This endpoint is for the actual futures fee rate of the trading pair. The fee rate of your sub-account is the same as that of the master account.
|
|
62
62
|
*/
|
|
63
63
|
getTradingPairFee(params) {
|
|
64
64
|
return this.getPrivate('api/v1/trade-fees', params);
|
|
@@ -210,7 +210,7 @@ export class FuturesClient extends BaseRestClient {
|
|
|
210
210
|
}
|
|
211
211
|
/**
|
|
212
212
|
* Add Take Profit And Stop Loss Order
|
|
213
|
-
* Place take profit and stop loss order supports both take-profit and stop-loss functions, and other functions are exactly the same as the place order
|
|
213
|
+
* Place take profit and stop loss order supports both take-profit and stop-loss functions, and other functions are exactly the same as the place order endpoint.
|
|
214
214
|
*/
|
|
215
215
|
submitSLTPOrder(params) {
|
|
216
216
|
return this.postPrivate('api/v1/st-orders', params);
|
|
@@ -227,7 +227,10 @@ export class FuturesClient extends BaseRestClient {
|
|
|
227
227
|
* Cancel an order (including a stop order) by client order id.
|
|
228
228
|
*/
|
|
229
229
|
cancelOrderByClientOid(params) {
|
|
230
|
-
|
|
230
|
+
const { clientOid, symbol } = params;
|
|
231
|
+
return this.deletePrivate(`api/v1/orders/client-order/${clientOid}`, {
|
|
232
|
+
symbol,
|
|
233
|
+
});
|
|
231
234
|
}
|
|
232
235
|
/**
|
|
233
236
|
* Batch Cancel Orders
|
|
@@ -280,7 +283,7 @@ export class FuturesClient extends BaseRestClient {
|
|
|
280
283
|
}
|
|
281
284
|
/**
|
|
282
285
|
* Get Stop Order List
|
|
283
|
-
* Get the un-triggered stop orders list. Stop orders that have been triggered can be queried through the general order
|
|
286
|
+
* Get the un-triggered stop orders list. Stop orders that have been triggered can be queried through the general order endpoint
|
|
284
287
|
*/
|
|
285
288
|
getStopOrders(params) {
|
|
286
289
|
return this.getPrivate('api/v1/stopOrders', params);
|
|
@@ -314,7 +317,7 @@ export class FuturesClient extends BaseRestClient {
|
|
|
314
317
|
*/
|
|
315
318
|
/**
|
|
316
319
|
* Get Margin Mode
|
|
317
|
-
* This
|
|
320
|
+
* This endpoint can query the margin mode of the current symbol.
|
|
318
321
|
*/
|
|
319
322
|
getMarginMode(params) {
|
|
320
323
|
return this.getPrivate('api/v2/position/getMarginMode', params);
|
|
@@ -349,28 +352,28 @@ export class FuturesClient extends BaseRestClient {
|
|
|
349
352
|
}
|
|
350
353
|
/**
|
|
351
354
|
* Get Positions History
|
|
352
|
-
* This
|
|
355
|
+
* This endpoint can query position history information records.
|
|
353
356
|
*/
|
|
354
357
|
getHistoryPositions(params) {
|
|
355
358
|
return this.getPrivate('api/v1/history-positions', params);
|
|
356
359
|
}
|
|
357
360
|
/**
|
|
358
361
|
* Get Max Withdraw Margin
|
|
359
|
-
* This
|
|
362
|
+
* This endpoint can query the maximum amount of margin that the current position supports withdrawal.
|
|
360
363
|
*/
|
|
361
364
|
getMaxWithdrawMargin(params) {
|
|
362
365
|
return this.getPrivate('api/v1/margin/maxWithdrawMargin', params);
|
|
363
366
|
}
|
|
364
367
|
/**
|
|
365
368
|
* Get Cross Margin Leverage
|
|
366
|
-
* This
|
|
369
|
+
* This endpoint can query the current symbol’s cross-margin leverage multiple.
|
|
367
370
|
*/
|
|
368
371
|
getCrossMarginLeverage(params) {
|
|
369
372
|
return this.getPrivate('api/v2/getCrossUserLeverage', params);
|
|
370
373
|
}
|
|
371
374
|
/**
|
|
372
375
|
* Modify Cross Margin Leverage
|
|
373
|
-
* This
|
|
376
|
+
* This endpoint can modify the current symbol’s cross-margin leverage multiple.
|
|
374
377
|
*/
|
|
375
378
|
changeCrossMarginLeverage(params) {
|
|
376
379
|
return this.postPrivate('api/v2/changeCrossUserLeverage', params);
|
|
@@ -391,14 +394,14 @@ export class FuturesClient extends BaseRestClient {
|
|
|
391
394
|
}
|
|
392
395
|
/**
|
|
393
396
|
* Get Isolated Margin Risk Limit
|
|
394
|
-
* This
|
|
397
|
+
* This endpoint can be used to obtain information about risk limit level of a specific contract(Only valid for isolated Margin).
|
|
395
398
|
*/
|
|
396
399
|
getRiskLimitLevel(params) {
|
|
397
400
|
return this.getPrivate(`api/v1/contracts/risk-limit/${params.symbol}`);
|
|
398
401
|
}
|
|
399
402
|
/**
|
|
400
403
|
* Modify Isolated Margin Risk Limit
|
|
401
|
-
* This
|
|
404
|
+
* This endpoint is for the adjustment of the risk limit level(Only valid for isolated Margin).
|
|
402
405
|
*/
|
|
403
406
|
updateRiskLimitLevel(params) {
|
|
404
407
|
return this.postPrivate('api/v1/position/risk-limit-level/change', params);
|
|
@@ -410,17 +413,17 @@ export class FuturesClient extends BaseRestClient {
|
|
|
410
413
|
*/
|
|
411
414
|
/**
|
|
412
415
|
* Get Current Funding Rate
|
|
413
|
-
* This
|
|
416
|
+
* This endpoint can be used to obtain the current funding rate of the specified symbol.
|
|
414
417
|
*/
|
|
415
418
|
getFundingRate(params) {
|
|
416
|
-
return this.
|
|
419
|
+
return this.getPrivate(`api/v1/funding-rate/${params.symbol}/current`);
|
|
417
420
|
}
|
|
418
421
|
/**
|
|
419
422
|
* Get Public Funding History
|
|
420
423
|
* Query the funding rate at each settlement time point within a certain time range of the corresponding contract
|
|
421
424
|
*/
|
|
422
425
|
getFundingRates(params) {
|
|
423
|
-
return this.
|
|
426
|
+
return this.getPrivate('api/v1/contract/funding-rates', params);
|
|
424
427
|
}
|
|
425
428
|
/**
|
|
426
429
|
* Get Private Funding History
|
|
@@ -429,6 +432,96 @@ export class FuturesClient extends BaseRestClient {
|
|
|
429
432
|
getFundingHistory(params) {
|
|
430
433
|
return this.getPrivate('api/v1/funding-history', params);
|
|
431
434
|
}
|
|
435
|
+
/**
|
|
436
|
+
*
|
|
437
|
+
* REST - Futures Trading - CopyTrading
|
|
438
|
+
*
|
|
439
|
+
*/
|
|
440
|
+
/**
|
|
441
|
+
* Add Order
|
|
442
|
+
* Place order to the futures trading system for copy trading
|
|
443
|
+
*/
|
|
444
|
+
submitCopyTradeOrder(params) {
|
|
445
|
+
return this.postPrivate('api/v1/copy-trade/futures/orders', params);
|
|
446
|
+
}
|
|
447
|
+
/**
|
|
448
|
+
* Add Order Test
|
|
449
|
+
* Order test endpoint, the request parameters and return parameters of this endpoint are exactly the same as the order endpoint,
|
|
450
|
+
* and can be used to verify whether the signature is correct and other operations.
|
|
451
|
+
*/
|
|
452
|
+
submitCopyTradeOrderTest(params) {
|
|
453
|
+
return this.postPrivate('api/v1/copy-trade/futures/orders/test', params);
|
|
454
|
+
}
|
|
455
|
+
/**
|
|
456
|
+
* Add Take Profit And Stop Loss Order
|
|
457
|
+
* Place take profit and stop loss order supports both take-profit and stop-loss functions, and other functions are exactly the same as the place order endpoint.
|
|
458
|
+
*/
|
|
459
|
+
submitCopyTradeSLTPOrder(params) {
|
|
460
|
+
return this.postPrivate('api/v1/copy-trade/futures/st-orders', params);
|
|
461
|
+
}
|
|
462
|
+
/**
|
|
463
|
+
* Cancel Order By OrderId
|
|
464
|
+
* Cancel an order (including a stop order) in copy trading.
|
|
465
|
+
*/
|
|
466
|
+
cancelCopyTradeOrderById(params) {
|
|
467
|
+
return this.deletePrivate('api/v1/copy-trade/futures/orders', params);
|
|
468
|
+
}
|
|
469
|
+
/**
|
|
470
|
+
* Cancel Order By Client Order Id
|
|
471
|
+
* Cancel an order (including a stop order) in copy trading by client order id.
|
|
472
|
+
*/
|
|
473
|
+
cancelCopyTradeOrderByClientOid(params) {
|
|
474
|
+
return this.deletePrivate(`api/v1/copy-trade/futures/orders/client-order`, params);
|
|
475
|
+
}
|
|
476
|
+
/**
|
|
477
|
+
* Get Max Open Size
|
|
478
|
+
* Get Maximum Open Position Size.
|
|
479
|
+
*/
|
|
480
|
+
getCopyTradeMaxOpenSize(params) {
|
|
481
|
+
return this.getPrivate('api/v1/copy-trade/futures/get-max-open-size', params);
|
|
482
|
+
}
|
|
483
|
+
/**
|
|
484
|
+
* Get Max Withdraw Margin
|
|
485
|
+
* This endpoint can query the maximum amount of margin that the current position supports withdrawal.
|
|
486
|
+
*/
|
|
487
|
+
getCopyTradeMaxWithdrawMargin(params) {
|
|
488
|
+
return this.getPrivate('api/v1/copy-trade/futures/position/margin/max-withdraw-margin', params);
|
|
489
|
+
}
|
|
490
|
+
/**
|
|
491
|
+
* Add Isolated Margin
|
|
492
|
+
* Add Isolated Margin Manually.
|
|
493
|
+
*/
|
|
494
|
+
addCopyTradeIsolatedMargin(params) {
|
|
495
|
+
return this.postPrivate('api/v1/copy-trade/futures/position/margin/deposit-margin', params);
|
|
496
|
+
}
|
|
497
|
+
/**
|
|
498
|
+
* Remove Isolated Margin
|
|
499
|
+
* Remove Isolated Margin Manually.
|
|
500
|
+
*/
|
|
501
|
+
removeCopyTradeIsolatedMargin(params) {
|
|
502
|
+
return this.postPrivate('api/v1/copy-trade/futures/position/margin/withdraw-margin', params);
|
|
503
|
+
}
|
|
504
|
+
/**
|
|
505
|
+
* Modify Isolated Margin Risk Limit
|
|
506
|
+
* This endpoint is for the adjustment of the risk limit level(Only valid for isolated Margin).
|
|
507
|
+
* To adjust the level will cancel the open order, the response can only indicate whether the submit of the adjustment request is successful or not.
|
|
508
|
+
*/
|
|
509
|
+
modifyCopyTradeRiskLimitLevel(params) {
|
|
510
|
+
return this.postPrivate('api/v1/copy-trade/futures/position/risk-limit-level/change', params);
|
|
511
|
+
}
|
|
512
|
+
/**
|
|
513
|
+
* Modify Isolated Margin Auto-Deposit Status
|
|
514
|
+
* This endpoint is only applicable to isolated margin and is no longer recommended. It is recommended to use cross margin instead.
|
|
515
|
+
* @deprecated - It is recommended to use cross margin instead
|
|
516
|
+
*/
|
|
517
|
+
updateCopyTradeAutoDepositStatus(params) {
|
|
518
|
+
return this.postPrivate('api/v1/copy-trade/futures/position/margin/auto-deposit-status', params);
|
|
519
|
+
}
|
|
520
|
+
/**
|
|
521
|
+
*
|
|
522
|
+
* REST - Futures - Broker
|
|
523
|
+
*
|
|
524
|
+
*/
|
|
432
525
|
/**
|
|
433
526
|
* Get download link for broker rebate orders
|
|
434
527
|
*
|
|
@@ -475,7 +568,6 @@ export class FuturesClient extends BaseRestClient {
|
|
|
475
568
|
* @deprecated - please use updateMarginMode() instead
|
|
476
569
|
*/
|
|
477
570
|
updateAutoDepositStatus(params) {
|
|
478
|
-
console.warn('WARNING: This method is deprecated. It is recommended to use cross margin mode instead.');
|
|
479
571
|
return this.postPrivate('api/v1/position/margin/auto-deposit-status', params);
|
|
480
572
|
}
|
|
481
573
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FuturesClient.js","sourceRoot":"","sources":["../../src/FuturesClient.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAEhC,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACzD,OAAO,EACL,qBAAqB,GAGtB,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"FuturesClient.js","sourceRoot":"","sources":["../../src/FuturesClient.ts"],"names":[],"mappings":"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"}
|