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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 1

Eikon Data API - historical option data per minutes (get time series on option data)

Hi, I am working on retrieve option historical data similar to what get time series function returns. Is there any way to do that?

eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikon
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.

Hi @vps_2021,

Would you have an example RIC/ISIN for such an Option in question? Also: would you have an example field (e.g.: TR.CLOSEPRICE) - or are you only just after HIGH, CLOSE, LOW, OPEN, COUNT & VOLUME?

I am checking '/NDXf182150000.U' but actually wish to get data for entire option chain in history

1. Daily Historical option data (i.e. TR.CLOSEPRICE, TR.BIDPRICE, TR.ASKPRICE, GREEKS, UNDERLYING INFO, VOLUME etc)

2. Recent month or week historical time series to minute or second on entire option chain on HIGH, CLOSE, LOW, OPEN, COUNT & VOLUME,BID/ASK

1 Answer

Upvote
Accepted
39.2k 75 11 27

@vps_2021

I'm afraid some of the timeseries data you're interested in is not available. To see what's available from RDP Historical Pricing service in daily and 1 minute aggregation try the following requests using RDP Library:

#Daily
rdp.get_historical_price_summaries('NDXf182150000.U', interval='P1D')
#1 minute
rdp.get_historical_price_summaries('NDXf182150000.U', interval='PT1M')

RDP Historical Pricing service allows only 1 RIC per request. To retrieve the timeseries for all options in the chain you'll need to execute separate rdp.get_historical_price_summaries call for each option.

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