Upgrade from Eikon -> Workspace. Learn about programming differences.

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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 2 3 3

Get Timestamp of Quotes for Put/Call Options

When inspecting historic put and call options, is it possible to get the timestamp of their bid and ask quotes? When considering the data, it seems as if there are discrepancies in the timestamps .

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apiderivativesquotetime-stamp
icon clock
10 |1500

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

Hello @tom.oddo

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,


AHS


Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,


AHS

1 Answer

· Write an Answer
Upvotes
Accepted
39.4k 77 11 27

If the option hasn't expired, you can retrieve the timeseries of the quotes for the last 90 days using RDP Libraries, e.g.

rdp.get_historical_price_events('MICPA6400L1.p',
                               eventTypes='quote',
                               start='2021-01-05T00:00:00.000000000Z',
                               end='2021-01-05T23:00:00.000000000Z')

The timestamp is returned as the dataframe index.

If the option has expired or if you need quote history longer than 90 days, then to the best of my knowledge the only Refinitiv product that carries intraday price history for it is Refinitiv Tick History.

icon clock
10 |1500

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

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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