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

Integrating Quandl API for Market Data (Reference Data) #327

@ameydhavle

Description

@ameydhavle

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

Example from: http://www.quandl.com/help/api#A-Simple-Example

gdp = Quandl::Dataset.get('FRED/GDP')

Retrieve only the metadata for a dataset

Example from: http://www.quandl.com/help/api#Getting-Metadata

oil_metadata = Quandl::Metadata.get('NSE/OIL')

Annual percentage changes of US GDP, crude oil prices, and Apple stock for the last 10 years

Example from: http://www.quandl.com/help/api#A-Multiset-Example

datasets = ['FRED/GDP/1', 'DOE/RWTC/1', 'WIKI/AAPL/4']
comparison = Quandl::Multiset.get(datasets).
collapse(:annual).
transform(:rdiff).
limit(10)

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions