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 6

does anybody know how to download adjusted and not adjusted price for equity (with and without dividends)

I'd like to analyze historical prices of some equities (e.g. Apple) in terms of dividends - any idea if Eikon has such different time series? i'd like to pull data in python using API

equities
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.

1 Answer

· Write an Answer
Upvotes
Accepted
32.2k 40 11 20

Hello @juliusz.pres ,

Please see this previous discussion thread for the relevant detail on the dividends adjusted prices.

You can can try something like this for split-adjusted prices:

ek.get_data(['IBM.N','VOD.L','PLNT.CD'],['TR.CLOSEPRICE.date','TR.CLOSEPRICE(Adjusted=0)','TR.CLOSEPRICE(Adjusted=1)'],parameters = {'SDate':0,'EDate':-5})

Resulting in:

betterplant.gif

I have chosen Better Plant as one of the stocks as it has recently split and I would expect close price to differ from adjusted close price and therefore show that the price is adjusted.

Hope this information helps.



betterplant.gif (57.2 KiB)
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.