feat(): add/update missing v5 market endpoints. add api doc examples for each endpoint.
This commit is contained in:
21
examples/apidoc/V5/Market/get-kline-mark-price.js
Normal file
21
examples/apidoc/V5/Market/get-kline-mark-price.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const { RestClientV5 } = require('bybit-api');
|
||||
|
||||
const client = new RestClientV5({
|
||||
testnet: true,
|
||||
});
|
||||
|
||||
client
|
||||
.getMarkPriceKline({
|
||||
category: 'linear',
|
||||
symbol: 'BTCUSD',
|
||||
interval: '15',
|
||||
start: 1670601600000,
|
||||
end: 1670608800000,
|
||||
limit: 1,
|
||||
})
|
||||
.then((response) => {
|
||||
console.log(response);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
});
|
||||
Reference in New Issue
Block a user