For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
7 4 0 2

Retrieving historical minute-by-minute VWAP values

Is there a mechanism using the Eikon Data APIs for retrieving historical minute-by-minute VWAP values? The get_timeseries method supports retrieving data at minute intervals, but it only supports a limited set of returned fields, which does not include VWAP. Meanwhile, the get_data method allows additional fields to be requested, including VWAP, yet it does not appear to support intervals less frequent than "daily."

eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonpythonpricingvwap
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Upvotes
Accepted
39.2k 75 11 27

No, there isn't. You can use get_data method to return a custom VWAP for a specific time period, e.g.

ek.get_data('TRI.N','TR.VWAP',
            {'StartTime':'2019-05-20T09.30.00', 
             'EndTime':'2019-05-20T10.00.00', 'TZ':'EST'})
But it's not practical to use this method to construct intraday timeseries of VWAP.
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Upvotes
7 4 0 2

The last line above should be intervals more frequent than "daily".

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea