Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including tardis-node with all npm packages installed. Try it out:

const { tardis, normalizeTrades, compute, computeTradeBars } = require('tardis-node') async function produceVolumeBasedTradeBars(messages) { const withVolumeTradeBars = compute( messages, computeTradeBars({ kind: 'volume', interval: 100 * 1000 // aggregate by 100k contracts volume }) ) for await (const message of withVolumeTradeBars) { if (message.type === 'trade_bar') { console.log(message.name, message) } } } const historicalMessages = tardis.replayNormalized( { exchange: 'bitmex', symbols: ['XBTUSD'], from: '2019-08-01', to: '2019-08-02' }, normalizeTrades ) const realTimeMessages = tardis.streamNormalized( { exchange: 'bitmex', symbols: ['XBTUSD'] }, normalizeTrades ) await produceVolumeBasedTradeBars(historicalMessages) // or for real time data // await produceVolumeBasedTradeBars(realTimeMessages)

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

tardis-node v6.1.1

Fast and convenient access to tick-level historical and real-time cryptocurrency market data via Node.js

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free