I am using the Refinitiv Dataplatform API to access the Earnings per Share Forecasts provided by companies in their Earnings Guidance. While doing so I realized that the results differ from the Refinitiv Workspace.
Below is an example for the Earnings Forecast of Walmart:
The API Code (Python) I am using is this:
rdp.get_data(
universe='WMT',
fields= ['TR.GuidanceDate', 'TR.GuidanceMeasure','TR.GuidanceCurrency', 'TR.GuidanceLowValue', 'TR.GuidanceHighValue', 'TR.GuidancePeriodYear', 'TR.GuidancePeriodMonth'],
parameters={'SDate':'2020-01-01', 'EDate':'2023-12-31', 'GuidMeasure':'EPS', 'FRQ':'Q'}
)
This produces the following result (For 2022):
If you compare the results to the Refinitiv Workspace:
one can see that the values differ. For example the API shows a forecast for 2022-02-17 but not the Workspace. Also the values differ. For 2022-05-17 the Earnings per Share forecast according to the API is between -7 and -6, according to the Workspace 6,46.
How can it be the case that I get different results in the API call?
Best regards,