Skip to content

A Rust library for getting financial information from Yahoo!

License

Notifications You must be signed in to change notification settings

fraschm1998/yahoo-finance-rs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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;

#[tokio::main]
async fn main() {
   // retrieve 6 months worth of data for Apple
   let data = history::retrieve("AAPL").await.unwrap();

   // print the date and closing price for each day we have data
   for bar in &data {
      println!("On {} Apple closed at ${:.2}", bar.bar.timestamp.format("%b %e %Y"), bar.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"

About

A Rust library for getting financial information from Yahoo!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 90.2%
  • HTML 9.8%