Would you like to clone this notebook?

When you clone a notebook you are able to make changes without affecting the original notebook.

Cancel

tardis-node stream real-time market data

node v12.22.12
version: 1.0.0
endpointsharetweet
const { tardis, normalizeTrades, normalizeBookChanges } = require('tardis-node') async function stream() { const messages = tardis.streamNormalized( { exchange: 'bitmex', symbols: ['XBTUSD', 'ETHUSD'] }, normalizeTrades, normalizeBookChanges ) for await (const message of messages) { console.log(message) } } await stream()
Loading…

no comments

    sign in to comment