[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
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)
}
}
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"
}