tiingo-stream

1.0.1 • Public • Published

Tiingo-Stream

Description

This package has made possible:

  • Easily connecting to any Tiingo Websocket endpoint
  • Reconnecting (both after server-side restarts or client-side network problems)
  • Get feedback from the Websocket session with the endpoint (using the verbose parameter)

Installation

npm i tiingo-stream

Getting started

/**
 * Dependencies:
 */
const TiingoStream = require('../tiingo-stream')

/**
 * Config:
 */
const TIINGO_ENDPOINT = "tiingo_websocket_endpoint"
const TIINGO_TOKEN = "your_token"
const THRESHOLD = 2 // different values for each endpoint
const SYMBOLS = ["*"] // all

const feed = new TiingoStream(TIINGO_ENDPOINT, TIINGO_TOKEN, THRESHOLD, SYMBOLS, {
    verbose: true
})

feed.connect()

feed.getTicks(data => {
    console.log(data)
})

Package Sidebar

Install

npm i tiingo-stream

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

17 kB

Total Files

4

Last publish

Collaborators

  • ioncimpoiesu