Popularity
2.0
Stable
Activity
0.0
Stable
21
3
12
Programming language: Scala
License: MIT License
Tags:
Misc
Latest version: v0.3
YahooFinanceScala alternatives and similar packages
Based on the "Misc" category.
Alternatively, view YahooFinanceScala alternatives based on common mentions on social networks and blogs.
-
Scala Native
Your favorite language gets closer to bare metal. -
PureConfig
A boilerplate-free library for loading configuration files -
BootZooka
Simple project to quickly start developing a Scala-based microservice or web application, without the need to write login, user registration etc. -
REPLesent
A neat little tool to build presentations using the Scala REPL -
ScalaSTM
A library-based Software Transactional Memory (STM) for Scala, coupled with transactional sets and maps -
scala-ssh
Remote shell access via SSH for your Scala applications -
diff
Visually compare Scala data structures with out of the box support for arbitrary case classes. -
Fansi
Scala/Scala.js library for manipulating Fancy Ansi colored strings -
pprint
Pretty-printing value, types and type-signatures in Scala -
scala-debugger
Scala libraries and tooling utilizing the Java Debugger Interface. -
Miniboxing
Miniboxing is a program transformation that improves the performance of Scala generics when used with primitive types. It can speed up generic collections by factors between 1.5x and 22x, while maintaining bytecode duplication to a minimum. You can easily add miniboxing to your sbt project: -
Scalan
Generic framework for development of domain-specific compilers in Scala -
aws4s
Non-blocking AWS SDK for Scala exposing strongly-typed APIs built on top of http4s, fs2 and cats -
Ostinato
A chess library that runs on the server (Scala) and on the browser (ScalaJS). -
media4s
Scala command-line wrapper around ffmpeg, ffprobe, ImageMagick, and other tools relating to media. -
GoogleApiScala
This API is a wrapper for the google java libraries. Currently mapping Admin Directory, Drive, and Calendar. -
powerscala
Powerful framework providing many useful utilities and features on top of the Scala language. -
Google4s
A lean, functional library for Google Cloud Services in Scala -
Easy Config
Easy Config makes Scala application configuration extremely easy. It reads configuration from the environment or command line arguments. -
service-chassis
A scala chassis to get your applications and services bootstrapped quickly
Build time-series-based applications quickly and at scale.
InfluxDB is the Time Series Platform where developers build real-time applications for analytics, IoT and cloud-native services. Easy to start, it is available in the cloud or on-premises.
Promo
www.influxdata.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of YahooFinanceScala or a related project?
README
YahooFinanceScala
A non-blocking Yahoo Finance Scala client based on Akka streams.
Add YahooFinanceScala to your build.sbt file
libraryDependencies ++= Seq(
"com.larroy.openquant" %% "yahoofinancescala" % "0.3"
)
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))