What information can I retrieve from each of the data sources available in the Datafeed Toolbox?

1 view (last 30 days)
Is there any location on your website that lists information about what information I can retrieve from each of the data sources to which I can connect using the Datafeed Toolbox:
Bloomberg, Hyperfeed, IDC, and Yahoo?

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 20 Oct 2015
The Datafeed Toolbox includes MAT-files, one for each data source, indicating what fields of data you can retrieve from that particular data source. You can load these files (if the data source is available in your version of MATLAB) by executing the following commands:
Bloomberg:
 
datasourcepath = fullfile(matlabroot, 'toolbox' , 'datafeed' , 'datafeed' , '@bloomberg' , 'bbfields.mat')
load(datasourcepath)
Hyperfeed:
 
datasourcepath = fullfile(matlabroot, 'toolbox' , 'datafeed' , 'datafeed' , '@hyperfeed' , 'hpfields.mat')
load(datasourcepath)
IDC:
 
datasourcepath = fullfile(matlabroot, 'toolbox' , 'datafeed' , 'datafeed' , '@idc' , 'idcfields.mat')
load(datasourcepath)
Yahoo:
  ERROR: datasourcepath = fullfile(matlabroot, 'toolbox' , 'datafeed' , 'datafeed' ,'@yahoo' , 'yhfields.mat') load(datasourcepath) Note: In R2014b and later, you can only retrieve this information for Yahoo. It is unclear when this functionality was first removed.

More Answers (0)

Products


Release

R13SP1

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!