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
19 2 1 5

fundamental data as time series

hi i am using ek.get_data,

for the stock ticker MSFT and Apple, can i check how do i get the close price date, close price , Revenue, EBIT, Dividend Yield, Dividend Per share, Outstanding Shares one year before.

i am trying to do a time series analysis. trying to make data such as Revenue and EBIT attached to the daily dates and close price

Thanks

eikon-data-api#content
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.

Upvotes
17.8k 82 39 63

Hi @ken03

You can utilize the Data Item Browser (DIB) within the desktop to search for the fields of interest. When determining content, I would suggest you contact the helpdesk or within Eikon/LSEG Workspace you can Get Help & Support (F1) and they will confirm with a specialist the list of fields.

For example, here is a general query using the Data Library for Python:

rd.get_data(universe=['MSFT.O', 'AAPL.O'],
            fields=['TR.PriceClose','TR.PriceClose.date', 'TR.RevenueMean',
                    'TR.EBITDAMean', 'TR.DPSMean', 'TR.F.ComShrOutsTot(Period=FY0)'],
            parameters={'sdate': '2023-01-01', 'edate': '0D'})

1714507721801.png


1714507721801.png (66.9 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.

Upvotes
19 2 1 5

Hi how do you get the common shares outstanding to run with the dates and why does TR.DivUnadjustedGross not work with this? it only shows one row like the common shares - outstanding - Total.

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.

Upvotes
14.4k 30 5 10

Hi @ken03 ,

Regarding the Data Item Browser (DIB)

TR.F.ComShrOutsTot (Common Shares - Outstanding - Total) only support the frequency of data in fiscal year, fiscal semi-annual, fiscal quarter, fiscal interim. Hence, when you request the data as daily frequency, this data is not available for this interval.

1716191495846.png

Regarding the TR.DivUnadjustedGross (Gross Dividend Amount), the supported interval of parameters and output are as below

rd.get_data(universe=['MSFT.O', 'AAPL.O'],
            fields=['TR.DivUnadjustedGross.coraxdividenddate','TR.DivUnadjustedGross'],
            parameters={'sdate': '2023-01-01', 'edate': '0D'})

1716191729900.png

Hope this help and please let me know in case you have any questions


1716191495846.png (110.4 KiB)
1716191729900.png (80.3 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.