we have a case that there are some stocks registered on two markets and when we try to retrieve data from reuters , the extraction result returned with only the default market,so we need to retrieve the data for the other markets by make filtered query using another market identifier .the current code used to retrieve data is :
var extractionRequest = newTermsAndConditionsExtractionRequest { IdentifierList = InstrumentIdentifierList.Create( new[] { newInstrumentIdentifier { Identifier = "DE000A1EWWW0", IdentifierType = IdentifierType.Isin } }, null, false), ContentFieldNames = new[] { "Company Name","Currency Code","ISIN","Issue Price","Issuer Name","MIC List","MIC","SEDOL","SICC", "SICC Sector Code","Ticker","Trading Symbol","Trading Status","Official Name","Operating MIC" } }; var extractionResult = ExtractionsContext.ExtractWithNotes(extractionRequest);
Appreciate your quick response because this issue is very critical .
Thanks