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

@chriscates/yahoofinance

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chriscates/yahoofinance

![License](https://img.shields.io/badge/license-MIT-blue.svg) ![NPM](https://img.shields.io/badge/version-1.0.4-blue.svg) [![Build Status](https://travis-ci.org/ChrisCates/YahooFinance.svg?branch=master)](https://travis-ci.org/ChrisCates/YahooFinance) [![

  • 1.0.4
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Yahoo Finance

License NPM Build Status codecov

A flexible API and Library to aggregate data on Stonks. Use it as a command line tool or an importable library. Compatible with both ES5 and ESNext. This library is completely free to use, licensed under MIT.

Why was this library created?

Pretty much every Node.js library for Yahoo Finance is straight up out of date and does not work properly. There is a Python library... But, it's meh at best... A lot of people have blogged about it, but, I've found it somewhat underwhelming. Furthermore, introducing Python into a codebase that doesn't use Python can cause technical debt. The intention is for this library to be the best tool out there for Yahoo Finance. So feel free to critique the implementation. It's strictly typed with verbose interfaces and type definitions. It's a production quality implementation.

Getting Started

As a CLI tool

Install as a global module

npm install @chriscates/yahoofinance --global
# or
yarn add global @chriscates/yahoofinance

Confirm the module works

yf --help

Run commands

yf summary MSFT

...

Read the full documentation at https://yf.chriscates.ca/docs/bash

As a library

Install as a local module

npm install @chriscates/yahoofinance

Import library functions

import { GetProfile } from '@chriscates/yahoofinance';

const Profile = await GetProfile('TSLA');
console.log(Profile);

Also, ES5 compatible

const yahoofinance = require('@chriscates/yahoofinance');

Read the full documentation at https://yf.chriscates.ca/docs/library

SEC & EDGAR

For those who are familiar with EDGAR and of course the Securities Exchange Commission. I would be ecstatic if you reached out to them asking them if I can improve their codebase for EDGAR. I actually need a lot of that data and making web scrapers for that project is cumbersome and is potentially very redundant given the amount of time it would take to create a full fledged scraper. Instead, creating a real API that fully annotates all SEC Form Filings from EDGAR would be a win/win/win (community/them/me). So please, reach out if you found this library useful. It would be amazing to have something directly from SEC instead of Yahoo Finance.


Don't be afraid to open issues if there are any!

FAQs

Package last updated on 07 Oct 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