• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

quandl/Matlab: Quandl's Matlab module

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

quandl/Matlab

开源软件地址(OpenSource Url):

https://github.com/quandl/Matlab

开源编程语言(OpenSource Language):

MATLAB 100.0%

开源软件介绍(OpenSource Introduction):

MATLAB-package

Quandl is no longer updating its MATLAB Package. Please refer to MathWorks for updates, which can be found here.

License: MIT

Installation

Download the folder "+Quandl" into the directory of your choice. Then within MATLAB go to file >> Set path... and add the directory containing "+Quandl" to the list (if it isn't already). That's it.

Two things to note, the '+' in "+Quandl" is important in the folder name. It tells Matlab to recognize get.m and auth.m as part of the Quandl package. Secondly, make sure you don't add the "+Quandl" folder in set path. You should be adding the folder that contains it.

Dependencies

This package now REQUIRES urlread2. It can be found here.

Unzip the package and place it in the same directory as +Quandl in the folder +urlread2.

Usage

Once you've found the data you'd like to load into MATLAB on Quandl, copy the Quandl code from the description box and past it into the function.

>> data = Quandl.get('NSE/OIL');

To extend your access to the Quandl API, use your api key. To do this sign into your account (or create one) and go to account settings page. Then copy your api key next time you call the function:

>> Quandl.api_key('yourauthenticationtoken');

Subsequently when you call:

>> data = Quandl.get('NSE/OIL');

MATLAB will remember your authentication token for the remainder of the session.

Parameters

  • Date truncation: mydata = Quandl.get('NSE/OIL', 'start_date','yyyy-mm-dd','end_date','yyyy-mm-dd');
  • Frequency Change: mydata = Quandl.get('NSE/OIL", 'collapse','annual'); ("weekly"|"monthly"|"quarterly"|"annual")
  • Transformations: mydata: = Quandl.get('NSE/OIL','transformation','rdiff'); ("diff"|"rdiff"|"normalize"|"cumulative")
  • Return only n number of rows: mydata = Quandl.get('NSE/OIL','rows',5);

Available Data Types

There are four options for which datatype you would like your data returned as, you choose your type as follows:

Quandl.get('NSE/OIL','type','ts')
  • Timeseries (default): returns a timeseries if only 1 column in data, tscollection if more. ('type','ts')
  • Financial timeseries :('type','fints')
  • CSV string: ('type','ASCII')
  • DataMatrix: ('type','data')
  • Cell Strings: ('type','cellstr')

As well a cell string array is returned with the headers. The syntax is as follows:

output = Quandl.get('NSE/OIL','type','fints')
[output headers] = Quandl.get('NSE/OIL','type','fints')

Examples

>> data = Quandl.get('NSE/OIL','collapse','monthly');
>> ts = data.Open;
>> ts.TimeInfo.Format = 'yyyy-mm';
>> plot(ts);

Datatables

To access datatables from the datatables api, you can use the Quandl.datatables function:

data = Quandl.datatable('ZACKS/EE')

It returns data in a table.

Parameters

Parameters are specific to each datatable. This datatable's filter parameters are ticker, per_type, per_end_date and qopts.columns. The following function call returns the columns, per_end_date, per_type and eps_meant_est for all rows which ticker = AAPL.

data = Quandl.datatable('ZACKS/EE', 'ticker', 'AAPL', 'qopts.columns', {'per_end_date', 'per_type', 'eps_mean_est'})

This call returns all data for Apple and Microsoft:

data = Quandl.datatable('ZACKS/EE', 'ticker', {'AAPL', 'MSFT'})

ALPHA

You can now search inside the Matlab Console

>> Quandl.search('crude oil');
>> Quandl.search('crude oil', 'results', 10, 'page', 3);

It is currently in ALPHA and only returns an xml object to the top node of the query results.

Additional Resources

More help can be found at Quandl in our API docs.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap