Extracting List of Delisted Equities using Screener, RDP. or Eikon API

Hello,

I am looking for a way to pull a list of delisted equities using either Screener, the Eikon API, or RDP. The output can be in the form of a data structure in python or an Excel file.

Thanks,

Best Answer

  • Here's an example using RDP Library to access RDP Search service to retrieve stocks delisted from the US exchanges in 2021

    rdp.search(view = rdp.SearchViews.EquityQuotes, 
               filter = "ListingStatus eq 'DEL' and ExchangeCountry eq 'USA' and RetireDate gt 2021-01-01",
               select = "RIC, DocumentTitle, RetireDate",
               top=10000)

    For details about RDP Search service see the article titled Building Search into your Application Workflow.

Answers