Greetings,
I am currently involved in a project that necessitates the retrieval of data pertinent to delistings. For this purpose, I am utilizing the 'TR.MnAHasBankruptcy' and 'TR.PPBankruptcyFilingDate' fields to ascertain whether a company has filed for bankruptcy. However, I have encountered an issue wherein the 'TR.PPBankruptcyFilingDate' field fails to return any data. I have been advised to re-submit my inquiry here for further assistance. I hope you can provide the necessary support. Thank you.
df = rd.get_data(
universe = rics,
fields = [
'TR.IsDelistedQuote',
'DELIST_DAT',
'TR.RetireDate',
'TR.MnAHasBankruptcy',
"TR.MnAAcquisitionTechnique(Concat='|')",
'TR.PPBankruptcyFilingDate',
],
parameters={
'SDate': "2022-11-30",
'EDate': "2024-12-31",
'Frq': 'D'
}
)
print(df)