How can I get a 5-year history of the ibex 35 in daily data. And could it be in minute-by-minute data?
Hi @student214,
Use the timeseries call like this:
Please note that Eikon Data API is subject to data limits and API request limits as described in this document.
Hi @student214 ,
Do you have access to Workspace? If you do, you can use Codebook (just search for it at the top search bar on your Workspace) where there is an example of exactly that in file __Examples__> 01. Data Retrieval & Discovery > 01.02. Refinitiv Data Platform Library > EX_01_02_04__Content__Historical_Pricing__Synchronous.ipynb
on there you can see code on how to get intraday data:
response = rdp.HistoricalPricing.get_summaries('VOD.L', interval = rdp.Intervals.TEN_MINUTES)display(response.data.df)