npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@apigrate/tdameritrade

v1.1.0

Published

NodeJS SDK for the TD Ameritrade API.

Downloads

26

Readme

Summary

A NodeJS API connector library for the TD Ameritrade API.

To install:

npm install @apigrate/tdameritrade

Supported API Methods

  • Accounts
    • Get Account
    • Get Accounts
  • Instruments
    • Search Instruments
  • Price History
    • Get Price History
  • Quotes
    • Get Quote
    • Get Quotes
  • Transaction History
    • Get Transaction
    • Get Transactions

Usage and Examples

Obtaining an OAuth Access Token

You need to initiate a dialog for your user to start the authorization process. There's a built-in method for doing that.

//Prerequisites...
let client_id = process.env.TDA_CLIENT_ID;
let redirect_url = process.env.TDA_REDIRECT_URL;

const {TDAConnector, getAuthorizationUrl} = require('@apigrate/tdameritrade');
const tda = new TDAConnector(client_id, redirect_url);
let authUrl = getAuthorizationUrl(client_id, redirect_url);

// Now redirect the user to the authUrl...

After the user authorizes your app. TD Ameritrade responds to the redirect_url endpoint with an authorization code. It needs to be exchanged for an access token and refresh token. With these tokens you can access the TD Ameritrade for up to 90 days without having to manually authorize again.

Note the manual authorization requirement is a TD Ameritrade security requirement. Your end-users MUST explicitly go through the OAuth dialog process again after that period.

Exchange the returned code for an access token like this:

// ... Meanwhile, at the redirect_url endpoint...
let code = request.query.code; //...(hypothetical) This is obtained from your HTTP infrastructure (expressjs, etc.)

const {TDAConnector} = require('@apigrate/tdameritrade');
const tda = new TDAConnector(client_id, redirect_url);

let credentials = await tda.getAccessToken(code);
// credentials = {refresh_token: "x", access_token: "y", etc...}

//Store your credentials for later use.

Connecting to the API and Handling Token Retrieval and Renewal

The connector emits a token event:

  1. on the getAccessToken method after retrieving the access token and other credentials, and...
  2. on the getRefreshToken method after refreshing the access token

Take advantage of this by registering an event listener on this event and write a function to store your OAuth credentials consistently.

// OAuth credentials also need to be stored during refresh...
let storeCredentials = async function(credentials){
  await store_my_credentials_somewhere(credentials);
}

tda.on("token", storeCredentials);

You have two options for initializing the connector with stored credentials to make API calls:

  1. use the credentialsInitializer constructor parameter
  2. use the setCredentials method

Using the credentials initializer...

The credential initializer function is a constructor argument. You provide a function that obtains the stored credentials Immediately before the first api method invocation (getQuotes, getTransactionHistory etc.) this initializer function will be invoked if credentials are not already present internally. This is the recommended initialization approach.

// OAuth credentials are typically stored remotely somewhere, and you'll use a function to obtain them.
let getCredentials = async function(){
  let credentials = await fetch_my_credentials_from_somewhere();
  return credentials;
}

const {TDAConnector} = require('@apigrate/tdameritrade');
const tda = new TDAConnector(client_id, redirect_url, getCredentials);

// credentials aren't fetched yet...

let quoteInfo = await tda.getQuote('TSLA'); //the credential initializer is invoked immediately prior to the API call automatically

Using the setCredentials method...

Alternatively, you can explicitly set credentials by using the setCredentials method.

const {TDAConnector} = require('@apigrate/tdameritrade');
const tda = new TDAConnector(client_id, redirect_url );//Note, no initializer function

//... other stuff happens...

let credentials = await fetch_my_credentials_from_somewhere();

//explicitly set the credentials
tda.setCredentials(credentials);

//now you can do your API calls...
let quoteInfo = await tda.getQuote('TSLA');