Greetings,
I am currently advancing my project focused on companies undergoing delisting. Utilizing the DSCREEN application, I have successfully compiled a comprehensive list of companies that have been delisted, along with detailed information regarding the transactions that led to their delisting. My next objective is to ascertain the closing price for each of these companies at the end of the trading day immediately following the announcement of the deal responsible for their delisting.
Could you advise on the best approach to obtain this specific data? Thank you in advance!
Here is a code I'm using:
syntax = "SCREEN(U(IN(DEALS)/*UNV:DEALSMNA*/), BETWEEN(TR.MnAAnnDate,20040401,20240219)/*dt:Date*/, IN(TR.MnANationHQ,""US""), TR.MnAIsGoingPrivate==true, IN(TR.MnAStatus,""C""), CURN=USD")
fields = [
"TR.MNASDCDealNumber",
"TR.MnAAnnDate",
"TR.MnAEffectiveDate",
"TR.CLOSEPRICE(SDate=0CY)",
"TR.MnARankDate",
"TR.MnAStatus",
"TR.MnARankValueIncNetDebt(Curn=USD,Scale=6)",
"TR.MnATarget",
"TR.MnATargetPermId",
"TR.MnATargetMacroInd",
"TR.MnATargetMidInd",
"TR.MnATargetNation",
"TR.MnAAcquiror",
"TR.MnAAcquirorPermId",
"TR.MnAAcquirorNation",
"TR.MnATargetFinAdvisor(Concat='|')",
"TR.MnAAcquirorFinAdvisor(Concat='|')",
"TR.MNADealId",
"TR.MnAIsGoingPrivate",
"TR.MnAHistoryEventOfferPrice(Curn=USD,Concat='|')
]