Skip to content

Scala Library for accessing Quandl fundamentals equity datasets

Notifications You must be signed in to change notification settings

sirpthatch/scandl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scandl

[In Development] Scandl is a library that adds a simple data querying and time series manipulation environment for Quandl datasets. For information on Quandl, see Quandl's API documentation

Scala + Quandl = Scandl

Example Use

See the example script under src/test/scala/com/scandl/language/SampleScript:

import com.scandl.language.LanguageImplicits._

object SampleScript {
	def main(args:Array[String]):Unit = {
	  val GOOG_PE = 'PE_CURR of 'GOOG
	  display(GOOG_PE)
	  
	  val assortedStocks = 'PE_CURR of 'GOOG|'AAPL|'TWTR
	  display(assortedStocks)
	}
}

Quandl Access Token

To use an established Quandl API access token, you need to have a file on your classpath that looks something like the following (this project uses TypeSafe configuration):

quandl {
    accesstoken="XXXXXXXXXXXX"
}

About

Scala Library for accessing Quandl fundamentals equity datasets

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages