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

1 view (last 30 days)

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 16 Feb 2021
Edited: MathWorks Support Team on 18 Feb 2021
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!