Resolve RICs from multiple SEDOLs

tradingTech
Explorer
in TRTH
I have an application that snapshots thousands of equities from the RFA API. I don't always have the most up-to-date RIC and would like to resolve these from a SEDOL. From answers in the portal, it seems the only way to do this is by leveraging some of the Reuters RESTful APIs.
I've found that this code both works and is very slow:
var extractionsContext = new ExtractionsContext(serviceUri, token);
var onlyEquities = new[] { InstrumentTypeGroup.Equities };
foreach (var sedol in sedols)
{
var sedolresult = extractionsContext.InstrumentSearch(IdentifierType.Sedol, sedol, onlyEquities, IdentifierType.Ric, 1).FirstOrDefault();
if (null == sedolresult) continue;
if (sedolresult.IdentifierType != IdentifierType.Ric) continue;
//Do something with sedol/ric pair
}
Is there a way to do this in a single call?
Tagged:
0
Best Answer
-
@tradingTech, you can do it using a T&C (Terms and Conditions) request, in one call for all instruments:
POST https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/Extract
{
"ExtractionRequest": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest",
"ContentFieldNames": [
"RIC", "Currency Code", "Exchange Code"
],
"IdentifierList": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{ "Identifier": "5641567", "IdentifierType": "Sedol" },
{ "Identifier": "B1YW440", "IdentifierType": "Sedol" },
{ "Identifier": "5231485", "IdentifierType": "Sedol" },
{ "Identifier": "BH4HKS3", "IdentifierType": "Sedol" }
],
"ValidationOptions": { "AllowHistoricalInstruments": true },
"UseUserPreferencesForValidationOptions": false
}
}
}Result:
{
"@odata.context": "https://hosted.datascopeapi.reuters.com/RestApi/v1/$metadata#Collection(ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.ExtractionRow)",
"value": [
{
"IdentifierType": "Sedol",
"Identifier": "5641567",
"RIC": "CARR.PA",
"Currency Code": "EUR",
"Exchange Code": "PAR"
},
{
"IdentifierType": "Sedol",
"Identifier": "B1YW440",
"RIC": "LP71000002",
"Currency Code": "GBp",
"Exchange Code": "LIP"
},
{
"IdentifierType": "Sedol",
"Identifier": "5231485",
"RIC": "ALVG.DE",
"Currency Code": "EUR",
"Exchange Code": "GER"
},
{
"IdentifierType": "Sedol",
"Identifier": "BH4HKS3",
"RIC": "VOD.L",
"Currency Code": "GBp",
"Exchange Code": "LSE"
}
]
}Comments:
- I added the currency and exchange codes to the result, you may not require this.
- I set ValidationOptions to Allow Historical Instruments. If you are snapping prices with RFA you will probably only require current ones, in which case you could set that parameter to false.
- I also set UseUserPreferencesForValidationOptions to override the user preferences in the GUI. Again, this is just a choice.
- For more info on this call, see this DSS REST API Tutorial 7: On Demand T&C extraction (it also applies for TRTH).
- For more info on how to convert from Sedols to RICs, see this article. It is about ISIN to RIC conversion, but applies to SEDOL to RIC as well.
0
Answers
-
Updated article link: ISIN to RIC conversion with the TRTH
0
Categories
- All Categories
- 3 Polls
- 6 AHS
- 36 Alpha
- 166 App Studio
- 6 Block Chain
- 4 Bot Platform
- 18 Connected Risk APIs
- 47 Data Fusion
- 34 Data Model Discovery
- 685 Datastream
- 1.4K DSS
- 619 Eikon COM
- 5.2K Eikon Data APIs
- 10 Electronic Trading
- Generic FIX
- 7 Local Bank Node API
- 3 Trading API
- 2.9K Elektron
- 1.4K EMA
- 254 ETA
- 557 WebSocket API
- 38 FX Venues
- 14 FX Market Data
- 1 FX Post Trade
- 1 FX Trading - Matching
- 12 FX Trading – RFQ Maker
- 5 Intelligent Tagging
- 2 Legal One
- 23 Messenger Bot
- 3 Messenger Side by Side
- 9 ONESOURCE
- 7 Indirect Tax
- 60 Open Calais
- 276 Open PermID
- 44 Entity Search
- 2 Org ID
- 1 PAM
- PAM - Logging
- 6 Product Insight
- Project Tracking
- ProView
- ProView Internal
- 23 RDMS
- 1.9K Refinitiv Data Platform
- 655 Refinitiv Data Platform Libraries
- 4 LSEG Due Diligence
- LSEG Due Diligence Portal API
- 4 Refinitiv Due Dilligence Centre
- Rose's Space
- 1.2K Screening
- 18 Qual-ID API
- 13 Screening Deployed
- 23 Screening Online
- 12 World-Check Customer Risk Screener
- 1K World-Check One
- 46 World-Check One Zero Footprint
- 45 Side by Side Integration API
- 2 Test Space
- 3 Thomson One Smart
- 10 TR Knowledge Graph
- 151 Transactions
- 143 REDI API
- 1.8K TREP APIs
- 4 CAT
- 27 DACS Station
- 121 Open DACS
- 1.1K RFA
- 104 UPA
- 193 TREP Infrastructure
- 229 TRKD
- 917 TRTH
- 5 Velocity Analytics
- 9 Wealth Management Web Services
- 90 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 46 中文论坛