Is there a way to get the time series of the Price indices djusted for split ANDcash dividend?
For a deeper look into our Eikon Data API, look into:
Overview | Quickstart | Documentation | Downloads | Tutorials | Articles
Is there a way to get the time series of the Price indices djusted for split ANDcash dividend?
Hi @Tulkkas
1. Get RIC list from the index
2. Split them into multiple lists (not more than 300)
3. get_timeseries with corax = "adjusted" parameter (note that what is included in the calculation for adjusted value, you need to contact content helpdesk)
The document is here.
Hi, thx. So what is the limit in term of number of stocks for get data? Is there some documentation on that? Here you say 300 stocks max but does that depends on the period for which you want the data or is it independant?
I have not come across the limitation on the number of stocks in get_data method.
However, you will not receive more than this:
Please refer to this document for more detail.
Thank you for this. For time serise, i do have issue regarding the number of instrument. If i send a request with more than 300 instrument i get the following error:
rror: Error code 500 | Backend error. 500 Internal Server Error
Any way around this?
I am trynig the corax field using get_data but the following does not work:
index_id = ['BABA.K]
data, err = ek.get_data(index_id,['TR.PriceClose(SDate="24-Sep-2018", EDate="29-Oct-2019").date,TR.PriceClose(SDate="24-Sep-2018", EDate="29-Oct-2019",corax="adjusted")'])
But it returns an error. How do incorporate the corax field in the fet_data fct?
@Tulkkas
Always start a new thread when you have a new question. Old threads that already have an accepted answer are not monitored by moderators. Any post on an old thread with accepted answer can be easily missed and not receive a response.
You have a whole bunch of syntax errors in your expression. Try this:
ek.get_data('BABA.K', ['TR.PriceClose.date','TR.PriceClose'], {'SDate':'24-Sep-2018', 'EDate':'29-Oct-2019'})
And have a look at this tutorial.
Hi, i will post it in another thread next time.
Regarding my querry, i do not see any synthax errors expect the missing ' after BABA.K. Could you point out to me the errors?
I have seen alternatively those 2 syntaxes for the same purpose:
ek.get_data('BABA.K',['TR.PriceClose.date','TR.PriceClose'], {'SDate':'24-Sep-2018', 'EDate':'29-Oct-2019'})
data, err = ek.get_data('BABA.K',['TR.PriceClose(SDate="24-Sep-2018", EDate="29-Oct-2019").date,TR.PriceClose(SDate="24-Sep-2018", EDate="29-Oct-2019")'])
And you did not actually gave my any answer regarding my question about the field corax for adjusted for dividends. Thx