KuCoin TypeScript SDK example: rest-futures-private-trade.ts
KuCoin REST REST futures private trade example for the Siebly KuCoin SDK, with TypeScript source for exchange REST API and WebSocket integration, setup, and production SDK docs.
What This Example Covers
- KuCoin REST API example in TypeScript.
- Uses the Siebly KuCoin SDK package
kucoin-apiinstead of hand-written HTTP request plumbing. - Source path:
Kucoin/Rest/rest-futures-private-trade.ts. - Example category: REST.
- Imports SDK symbols including
FuturesClient. - Calls SDK methods such as
submitOrder(),generateNewOrderID().
How To Use This Example
- Start here for the specific request or stream pattern, then check the matching SDK guide for install, credentials, and operational notes.
- Open the repository source when you need the latest committed version: GitHub source file.
Example Path
Kucoin/Rest/rest-futures-private-trade.ts
Source Link
Repository source: https://github.com/sieblyio/crypto-api-examples/blob/master/examples/Kucoin/Rest/rest-futures-private-trade.ts
Related SDK Docs
Example Source
import { FuturesClient } from 'kucoin-api';
async function start() {
const account = {
key: 'keyHere',
secret: 'secretHere',
passphrase: 'memoHere',
};
const client = new FuturesClient({
apiKey: account.key,
apiSecret: account.secret,
apiPassphrase: account.passphrase,
});
try {
/**
* The trade amount indicates the amount of contract to buy or sell, and contract uses the base currency or lot as the trading unit.
* The trade amount must be no less than 1 lot for the contract and no larger than the maxOrderQty.
* It should be a multiple number of the lot, or the system will report an error when you place the order.
* E.g. 1 lot of XBTUSDTM is 0.001 Bitcoin, while 1 lot of XBTUSDM is 1 USD.
*/
// Submit a futures entry order for 1 lot of XBTUSDTM (0.001 bitcoin)
const orderRes = await client.submitOrder({
clientOid: client.generateNewOrderID(),
side: 'buy',
type: 'market',
symbol: 'XBTUSDTM',
size: 1,
leverage: 2,
});
console.log('orderRes ', JSON.stringify(orderRes, null, 2));
} catch (e) {
console.error('Req error: ', e);
}
}
start();