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
7 1 1 6

EPS Mean by date

Hi

I'd like some help on Earnings Per Share (EPS) Mean please.

I'm running the below, which is returning Mean EPS, but it doesn't appear to be returning a date value for each row (snapshot below). Any idea how to solve for this? I've looked in DIB, but no luck.

eps2_df = rd.get_data(
          universe = ['DGE.L'],
          fields = ['TR.EPSMean.date','TR.EPSMean(Period=FY1,Frq=D,SDate=0,EDate=-50)'] 
)
display(eps2_df)


If I backfill the Date column with the previous date (using the on date value thats present - 17/11/23), the EPS Mean doesn't align to what I see in Refinitiv Desktop (snapshot 2) for this company's EPS.

Thanks

refinitiv-eps-snapshot.png

refinitiv-eps-snapshot-desktop.png

python#technologyrdp
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
Upvote
Accepted
5.8k 21 2 6

Hi @di.ti,

In these cases, we suggest you use `get_history`; does the below forfil your request?


rd.get_history(
    universe=["DGE.L"],
    fields=["TR.EPSMean"],
    interval="1D",
    start="2023-11-01",
    end="2023-11-16")


1700241950358.png

1700241950358.png (18.1 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.

Wonderful, works a treat! Thank you

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.