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,25 @@
const { RestClientV5 } = require('bybit-api');
const client = new RestClientV5({
testnet: true,
key: 'apikey',
secret: 'apisecret',
});
client
.submitOrder({
category: 'linear',
symbol: 'ETHPERP',
orderLinkId: 'linear-004',
triggerPrice: '1145',
qty: '0.15',
price: '1050',
takeProfit: '0',
stopLoss: '0',
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});