tradier-api

0.1.0 • Public • Published

tradier-api

Node.js library for the Tradier API

API Documentation

The REST API documentation can be found at https://developer.tradier.com/documentation.

Usage

const Tradier = require('tradier-api');
 
// You will need to get an access token from https://developer.tradier.com/
// Possible endpoints are prod, beta, and sandbox
const tradier = new Tradier(ACCESS_TOKEN, ENDPOINT);
 
tradier.getQuote('SPY')
  .then(quote => {
    console.log(`
      symbol: ${quote.symbol}
      price: ${quote.last}
      bid: ${quote.bid}
      ask: ${quote.ask}     
      volume: ${quote.volume} 
    `);
  })
  .catch(error => {
    console.log(error);
  });

Package Sidebar

Install

npm i tradier-api

Weekly Downloads

1

Version

0.1.0

License

MIT

Unpacked Size

65.6 kB

Total Files

10

Last publish

Collaborators

  • mikecao