I'm attempting to verify whether an equity has been delisted (and if not, find the appropriate RIC.)
Here's my request:
var extractionRequest = new TermsAndConditionsExtractionRequest { IdentifierList = InstrumentIdentifierList.Create(instrumentIdentifiers, new InstrumentValidationOptions { AllowHistoricalInstruments = true, UseExchangeCodeInsteadOfLipper = true }, false), ContentFieldNames = new[] { "RIC" , "Trading Status" }, };
Sample instrument: IdentifierType: SEDOL / Identifier: BDTYZ53
I get an ExtractionRow back for the instrument with nulls for both RIC and Trading Status. I understand that it is delisted. Is it possible to get a value for Trading Status back?