Going delisting data

Hi everybody! I am currently exploring methods to obtain a comprehensive list of companies along with their respective delisting announcement dates, utilizing Codebook. This requirement is akin to the functionality provided by the advEvents application. While I am able to generate a list of delisted companies through a specific formula from the screener app, my primary objective is to extract both the company name and the date of its delisting announcement. The ultimate aim of this endeavor is to facilitate future analyses that delve into the reasons behind each delisting event, rather than merely identifying the occurrence of such events.

Thank you!

Best Answer

  • nick.zincone
    nick.zincone admin
    Answer ✓

    Hi @vitali

    I would suggest you use the Search API.

    For example, here is a request to retrieve the first 25 delisted companies and the delisted dates:

    rd.discovery.search(
    filter = "OrganisationStatus xeq 'Delisted'",
    select ="DocumentTitle, DelistedDate, OrganisationStatus",
    top = 25
    )

    1707495320172.png

    This will provide a good start to further your analysis. I would also suggest you review this article around the Search API and what you can do.

Answers