const { RestClientV5 } = require('bybit-api'); const client = new RestClientV5({ testnet: true, }); client .getHistoricalVolatility({ category: 'option', baseCoin: 'ETH', period: 30, }) .then((response) => { console.log(response); }) .catch((error) => { console.error(error); });