New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@swingtrackr/stock-exchange-symbols

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@swingtrackr/stock-exchange-symbols

Fetch and aggregate up to date lists of stocks on the NYSE, NASDAQ and AMEX.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-87.5%
Maintainers
2
Weekly downloads
 
Created
Source

Stock Exchange Symbols

📈 Fetch and aggregate up to date lists of stocks on the:

  • NYSE
  • NASDAQ
  • AMEX.

This is a fork of the work originally done by Joe McCann

Usage

Using the distributed data

import { symbols } from '@swingtrakr/stock-exchange-symbols'

console.log(symbols)

/*
[
  {
    symbol: "TXG",
    exchange: "NASDAQ",
    name: "10x Genomics, Inc.",
    lastSale: "104.765",
    marketCap: "$10.5B",
    IPOyear: "2019",
    sector: "Capital Goods",
    industry: "Biotechnology: Laboratory Analytical Instruments",
    summaryQuoteURL: "https://old.nasdaq.com/symbol/txg"
  }
  ...
]
*/

Generating the latest symbols

Using the NPM Script

yarn build

// dist folder export now has the updated data

Within JS

import { utils } from '../src/index.js';

const symbols = utils.getSymbolDatabase();

LICENSE

MIT

Keywords

FAQs

Package last updated on 14 Aug 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc