Hi, Im looking to pull historical share price data Open,Mid and Close for apple as an example for a period of 12 months but using Apples ISIN code - US0378331005 .
Is this possible? and if so any help would be appreciated.
Many thanks in advance
Hi @peter.akester
I think the best route for you is to review some learning material that will answer most of your questions. Here are a few links that I believe will help you:
The one thing I will recommend is when you make a request for historical data, you can optionally leave the 'Fields' parameter out. What this will do is return all fields for the data you requested. For example, here are daily prices for Apple:
If I want to get intraday values (5 - minute bars), near 12 GMT:
Hi @peter.akester ,
It is very much possible, have you had a look at this documentation for the RD Python library (link below)?https://developers.refinitiv.com/en/api-catalog/refinitiv-data-platform/refinitiv-data-library-for-python
Hey @jonathan.legrand , ive tried similar but it doesnt seem to work using ISIN codes
You need to translate ISIN into RIC before leveraging ek.get_timeseries() to retrieve 12 month historical data.
The historical API calls only accept RICs. Using the Refinitiv Data Library for Python, you can do the following:
@nick.zincone @frank.ling1 thanks for these. Would it be possible to have an output like this? Im looking to pull multiple ISINs.
The backend does not provide a stock response in the way you prefer. The only way I would go about it is to request for your data and programmatically manipulate into your organization. You can request for multiple ISINs but the processing wouldn't necessarily be any less complicated.