-
Notifications
You must be signed in to change notification settings - Fork 66
Integrating Quandl API for Market Data (Reference Data) #327
Comments
How would you like to use it? To load financial data for instance? |
First impression, I'd say it looks like you could write up some XQuery (or JavaScript) library modules to make use of the API, and then pull those into a Roxy app from some other repository. Seems a bit special-purpose to add directly to Roxy (as in, it's application-level code that would only benefit some applications). Good find, but I'm thinking a different repo would make sense. Other comments? |
Someone could add a wiki page about it, and show how you could collect and upload such data with some app_specific code? |
Yup, it surely is an application specific requirement, mainly Finserv related. The reason to file it as an enhancement was to show the ability of building apps with roxy and integrating market data component out of the box for roxy and more so coz the library has a ruby extension .. Another option am exploring is a infostudio plugin |
@dmcassel : this seems like a good opportunity to work with Ruby, shall i assign this to myself, will work on my local copy till I can get to a review stage |
I don't see this as something that should be out of the box, since it's so Other opinions? |
If Amey could come up with a nice app_specific example, we could put that on the Roxy wiki? Bit like triggers, not everyone uses it, but for those interested, we have an example on the wiki.. |
I do agree it could be rather specific, but maybe it is a good sample data set for people who want to get familiar with Roxy? |
It shouldn't go into Roxy. A wiki or separate repo that we link to is the way to go. |
Looking back, I think Paxton is right, this should be separate. I'd see most value in an MLPM package, but since Amey is talking about Ruby code, a separate wiki or gist with app_specific code would work best I think. Closing this ticket. |
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)
The text was updated successfully, but these errors were encountered: