This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Description
Recently came across https://github.com/knrz/Quandl-Ruby and was hoping if we can integrate this with roxy.
Quandl is a api that provides Market-Data (mainly Finserv and other economic indicators)
Examples of Quandl Ruby wrapper:
Get the US GDP in JSON
gdp = Quandl::Dataset.get('FRED/GDP')
Retrieve only the metadata for a dataset
oil_metadata = Quandl::Metadata.get('NSE/OIL')
Annual percentage changes of US GDP, crude oil prices, and Apple stock for the last 10 years
datasets = ['FRED/GDP/1', 'DOE/RWTC/1', 'WIKI/AAPL/4']
comparison = Quandl::Multiset.get(datasets).
collapse(:annual).
transform(:rdiff).
limit(10)