HI team,
I have written a python code to fetch Corporate action data from Reuters for a specific time period. My code looks something like this:
df_CA = rd.get_data( universe=list1, fields=[ "TR.CAEffectiveDate", "TR.CAAnnouncementDate", "TR.REPCorpActionType", "TR.CACorpActDesc", "TR.CAAdjustmentFactor", "TR.CARecordDate", "TR.CAExDate" ], parameters={"SDate": "2024-01-01", "EDate": "2026-12-31"})
However I am unable to fetch the corporate action type. Is "TR.REPCorpActionType" the correct keyword?
Thanks a lot for your time!