I want to get the future earning reports date for a given stock. And also the past earning reports date. How should I get it using python?
Can somone please check this on priority.
@navamani.p
Thank you for reaching out to us.
Please contact the helpdesk team for the Excel formula (=RDP.Data) that can be used to retrieve the required data.
Then, please share the formula. I will convert it to the Python code.
Historical report date can be pulled up in excel using the fields TR.PreferredMeasureActReportDate and TR.PreferredMeasureActReportDate.
=@RDP.Data("VOD.L","TR.PreferredMeasureActReportDate","SDate=2025-05-01 CH=Fd RH=IN",B2)
For this formula, the code will be:
ld.get_data( universe = ['VOD.L'], fields=['TR.PreferredMeasureActReportDate'], parameters={'SDate':'2025-05-01'})
Can you please give me code for the below formula: =@RDP.Data("VOD.L","TR.ExpectedReportDate;TR.PreferredMeasureActReportDate","CH=Fd RH=IN",B2)
The code is:
ld.get_data( universe = ['VOD.L'], fields=['TR.ExpectedReportDate','TR.PreferredMeasureActReportDate'])