woodyzhou / YahooFinanceScala

A non-blocking Yahoo Finance Scala client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

YahooFinanceScala

A non-blocking Yahoo Finance Scala client based on Akka streams.

Twitter Follow PayPal donate button

Add YahooFinanceScala to your build.sbt file

libraryDependencies ++= Seq(
 "com.larroy.openquant" %% "yahoofinancescala" % "0.2"
)

Check it out in Central

Usage

$ sbt console

import scala.concurrent.duration.Duration
import openquant.yahoofinance.{YahooFinance, Quote, Fundamentals}
import akka.actor.ActorSystem
import java.time.ZonedDateTime
import scala.concurrent.Await

implicit val system = ActorSystem()

val yahooFinance = new YahooFinance()
val quotes: IndexedSeq[Quote] = Await.result(yahooFinance.quotes("MSFT", Some(ZonedDateTime.now().minusDays(5))), Duration.Inf)
// Quote(2016-04-01T00:00-04:00[America/New_York],55.049999,55.57,55.610001,54.57,24298600,55.57)
val fundamentals: IndexedSeq[Fundamentals] = Await.result(yahooFinance.fundamentals("IBM"), Duration.Inf)
// fundamentals: IndexedSeq[openquant.yahoofinance.Fundamentals] = Vector(Fundamentals(true,IBM,International Business Machines))

About

A non-blocking Yahoo Finance Scala client

License:MIT License


Languages

Language:Scala 100.0%