diff --git a/examples/ws-private-copytrading-v3.ts b/examples/ws-private-copytrading-v3.ts new file mode 100644 index 0000000..a0736a7 --- /dev/null +++ b/examples/ws-private-copytrading-v3.ts @@ -0,0 +1,61 @@ +/* eslint-disable no-unused-vars */ +/* eslint-disable @typescript-eslint/no-unused-vars */ +/* eslint-disable @typescript-eslint/no-empty-function */ +import { DefaultLogger, WS_KEY_MAP, WebsocketClient } from '../src'; + +// or +// import { DefaultLogger, WS_KEY_MAP, WebsocketClient } from 'bybit-api'; + +const logger = { + ...DefaultLogger, + silly: (...params) => { + // console.log(params); + }, +}; + +const key = process.env.API_KEY; +const secret = process.env.API_SECRET; + +/** + * Copy trading api docs say that private topics should connect to: wss://stream.bybit.com/realtime_private + * + * Within this SDK, only the market `linear` uses this endpoint for private topics: + */ +const market = 'linear'; + +const wsClient = new WebsocketClient( + { + key: key, + secret: secret, + market: market, + }, + logger, +); + +wsClient.on('update', (data) => { + console.log('raw message received ', JSON.stringify(data, null, 2)); +}); + +wsClient.on('open', (data) => { + console.log('connection opened open:', data.wsKey); +}); +wsClient.on('response', (data) => { + console.log('ws response: ', JSON.stringify(data, null, 2)); +}); +wsClient.on('reconnect', ({ wsKey }) => { + console.log('ws automatically reconnecting.... ', wsKey); +}); +wsClient.on('reconnected', (data) => { + console.log('ws has reconnected ', data?.wsKey); +}); +wsClient.on('error', (data) => { + console.error('ws exception: ', data); +}); + +// copy trading topics from api docs: https://bybit-exchange.github.io/docs/copy-trade/ws-private/position +wsClient.subscribe([ + 'copyTradePosition', + 'copyTradeOrder', + 'copyTradeExecution', + 'copyTradeWallet', +]); diff --git a/examples/ws-private.ts b/examples/ws-private.ts index debc15b..b20235d 100644 --- a/examples/ws-private.ts +++ b/examples/ws-private.ts @@ -23,7 +23,6 @@ const secret = process.env.API_SECRET; const market = 'contractUSDT'; // const market = 'contractInverse'; -// Note: the WebsocketClient defaults to testnet. Set `livenet: true` to use live markets. const wsClient = new WebsocketClient( { key: key, @@ -34,7 +33,7 @@ const wsClient = new WebsocketClient( // enable_time_sync: true, }, }, - logger + logger, ); wsClient.on('update', (data) => {