#yahoo #stocks

yahoo-finance

An API to get financial data from Yahoo

4 releases (2 breaking)

0.3.0 Sep 9, 2020
0.2.0 Apr 4, 2020
0.1.1 Mar 28, 2020
0.1.0 Mar 28, 2020

#160 in Finance

Download history 10/week @ 2023-11-20 13/week @ 2023-11-27 2/week @ 2023-12-11 4/week @ 2023-12-18 4/week @ 2023-12-25 11/week @ 2024-01-08 7/week @ 2024-01-15 20/week @ 2024-01-22 5/week @ 2024-01-29 15/week @ 2024-02-05 20/week @ 2024-02-12 22/week @ 2024-02-19 31/week @ 2024-02-26 25/week @ 2024-03-04

101 downloads per month
Used in 2 crates

MIT license

83KB
1.5K SLoC

Yahoo Finance for Rust

A Rust library for getting financial information from Yahoo!

Package Documentation Build Status

  • Historical OHLCV pricing information
use yahoo_finance::history;

fn main() {
   // retrieve 6 months worth of data for Apple
   let data = history::retrieve("AAPL").unwrap();

   // print the date and closing price for each day we have data
   for bar in &data {
      println!("On {} Apple closed at ${:.2}", bar.timestamp.format("%b %e %Y"), bar.close)
   }
}
  • Realtime pricing information
use futures::{ future, StreamExt };
use yahoo_finance::Streamer;

#[tokio::main]
async fn main() {
   let mut streamer = Streamer::new(vec!["AAPL", "^DJI", "^IXIC"]);

   streamer.stream().await
      .for_each(|quote| {
         println!("At {}, {} is trading for ${} [{}]", quote.timestamp, quote.symbol, quote.price, quote.volume);

         future::ready(())
      })
      .await;
}
  • Symbol profile information
use futures::{ future, StreamExt };
use yahoo_finance::Streamer;

#[tokio::main]
async fn main() {
   let mut streamer = Streamer::new(vec!["AAPL", "^DJI", "^IXIC"]);

   streamer.stream().await
      .for_each(|quote| {
         println!("At {}, {} is trading for ${} [{}]", quote.timestamp, quote.symbol, quote.price, quote.volume);

         future::ready(())
      })
      .await;
}

Usage

Add this to your Cargo.toml:

yahoo-finance = "0.3"

Dependencies

~11–26MB
~407K SLoC