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

list-of-etfs-profiles

v0.0.1

Published

pre-baked dataset of 2600+ ETF profiles

Downloads

9

Readme

list-of-etfs-profiles

pre-baked dataset of ETF profiles from Yahoo Finance with basic information and approximate price/volume for each ticker

Symbol list based on 2600+ most liquid ETFs according to firstRateData.

This is meant to assist in basic sorting/clustering of stock tickers, not for up-to-date information.

This is not necessarily a complete or accurate dataset, use at your own risk!

Because this was made by passing the FRD symbol list to Yahoo Finance, it is possible there are collisions/errors in the data -- Note the frdName vs longName/shortName fields and if they seem to be different.

Data last updated Jan 12th 2023

Installation

npm i list-of-etfs-profiles

Usage

var profiles = require('list-of-etfs-profiles').loadProfiles(); //decompress dataset 

console.log(profiles["AADR"]); //any symbol from NYSE or NASDAQ [see npm list-of-stocks]

// {
//   shortName: 'AdvisorShares Dorsey Wright', //short name according to yahoo finance for this symbol
//   longName: 'AdvisorShares Dorsey Wright ADR ETF', //long name according to yahoo finance for this symbol
//   frdName: 'AdvisorShares Dorsey Wright ADR ETF', //name according to firstRateData for this symbol
//   longBusinessSummary: `The fund seeks to achieve the fund's investment objective by selecting primarily a portfolio of U.S.-traded securities of non-U.S. organizations, most often American Depositary Receipts ("ADRs"). It will invest at least 80% of its total assets in ADRs and in securities that have economic characteristics similar to ADRs.`,
//   price: 49.5499,
//   navPrice: 48.95,
//   fiftyDayAverage: 48.2946,
//   twoHundredDayAverage: 50.4676,
//   pe: null,
//   volume: 373,
//   averageDailyVolume10Day: 1920,
//   bid: 49.39,
//   ask: 49.59,
//   bidSize: 1800,
//   askSize: 800,
//   ipoDate: '2010-07-21' //guess at ipo date from FRD data range
// }

//note -- missing/undefined values are replaced with -1 
//        other than PE / beta / ipoDate, which are replaced with null

See Also

stonks