Is it possible to download intraday tick data from Bloomberg using Datafeed Toolbox 3.5 (R2010a)?

I would like to download data from Bloomberg for a security every hour, or every two hours on a specific day in the past.

 Accepted Answer

You can request intraday bars with a resolution as small as 1 minute. For example:
c = blp;
d = timeseries(c,S,{StartDate,EndDate},60,Trade)
will get the trade ticks for the security S for the entire date range into 60 minute bars.
Intraday tick data requested with an interval is returned with the columns representing Time, Open, High, Low, Last Price, number of ticks and Volume of the ticks in the bar. There is still a 140 day limit on getting intraday tick data imposed by the Bloomberg API.
You may read more about TIMESERIES in the documentation at:

More Answers (0)

Products

Release

R2010a

Community Treasure Hunt

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

Start Hunting!