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

Best Answer

  • 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

Answers