feat(): start adding per-endpoint examples

This commit is contained in:
tiagosiebler
2023-06-07 11:39:59 +01:00
parent d79a09a184
commit af8b3f3e82
13 changed files with 280 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
const { RestClientV5 } = require('bybit-api');
const client = new RestClientV5({
testnet: true,
key: 'apikey',
secret: 'apisecret',
});
client
.cancelOrder({
category: 'linear',
symbol: 'BTCPERP',
orderId: 'c6f055d9-7f21-4079-913d-e6523a9cfffa',
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});