Files
bybit-api/examples/rest-linear-public.ts
2023-06-07 11:39:59 +01:00

24 lines
512 B
TypeScript

import { LinearClient } from '../src/index';
// or
// import { LinearClient } from 'bybit-api';
const client = new LinearClient();
(async () => {
try {
// console.log('getSymbols: ', await client.getSymbols());
// console.log('getOrderBook: ', await client.getOrderBook(symbol));
console.log(
'getKline: ',
await client.getKline({
symbol: 'ETHUSDT',
interval: 'D',
from: 1,
}),
);
} catch (e) {
console.error('request failed: ', e);
}
})();