Hi @Jirapongse
I would like to retrieve EPSMean (Tr.EPSMean) for three different periods for one stock. The code I have is the following:
fields=["TR.EPSMean(Period=2026)","TR.EPSMean(Period=2027)","TR.EPSMean(Period=2028)"]
df_fundamental = get_history(
universe=[ric],
fields=fields,
interval="1d",
start=datetime.datetime.today() - datetime.timedelta(2*365),
end=datetime.datetime.today()
)
While it does return data, it does return the same data for the same dates twice etc.
Can you please advise how this can be prevented and also what other parameters can be used for this field via the Python API.