How can I get the Parent RIC (RIC of the Issuer) for a given ETF RIC?

For example the ETF 'Xtrackers II ESG Global Agg Bond UCITS ETF' has the RIC XBAE.DE. The issuer for this ETF is Deutsche Asset Management. Therefore using the XBAE.DE RIC how can I get the RIC for Deutsche Asset Management
I basically want to get the following information from the Overview page of an ETF:
Best Answer
-
Instead of Eikon Python library I recommend to use refinitiv-data library.
That would not be a one step approach but you can do it in a few steps:
import refinitiv.data as rd
rd.open_session()
result = rd.discovery.search(
view = rd.discovery.Views.FUND_QUOTES,
filter = "RIC eq 'XBAE.DE'",
select = "IssuerAdvisorOrgId"
)
result
# IssuerAdvisorOrgId
# 0105339502|105645097|108431745Now we need to iterate over to see the names and we can choose the right one:
ids = result['IssuerAdvisorOrgId'][0].split('|')
for i in ids:
print(rd.get_data(f'{i}@orgid';,'TR.CommonName'))
# 105339502 Deutsche Asset Management London Ltd
# 105645097 State Street Global Advisors Ltd
# 108431745 DWS Investments UK Ltdrd.discovery.search(
view = rd.discovery.Views.SEARCH_ALL,
filter = "Orgid eq '108431745'",
select = "RIC,Orgid,ParentCompanyOAPermID,CommonName,DTSimpleType"
)The results is a private company so we can check it's parent
rd.discovery.search(
view = rd.discovery.Views.SEARCH_ALL,
filter = "OAPermID eq '5062367285'",
select = "PrimaryRIC,Orgid,ParentCompanyOAPermID,CommonName,DTSimpleType"
)0
Answers
-
Any leads here @jason.ramchandani01 @Gurpreet @jeane.samson.refinitiv ?
0 -
Hi @siddharth.marya , Have you had a look at DIB? Does this tool provide the fields you're after?
0 -
Hi @siddharth.marya
If you have access to funds endpoint https://api.refinitiv.com/data/funds/v1/assets you can try::import refinitiv.data as rd
rd.open_session()
request_definition = rd.delivery.endpoint_request.Definition(
method=rd.delivery.endpoint_request.RequestMethod.POST,
url='https://api.refinitiv.com/data/funds/v1/assets',
body_parameters={
"properties": [
{"name": "ServiceProviders"}
],
"universe": {
"symbols": ["XBAE.DE"
]}})
response = request_definition.get_data()
items = ['ADMINISTRATOR','INVESTMENT_ADVISOR','CUSTODIAN','FUND_MANAGEMENT_COMP','PROMOTER']
for i in items:
for sub in result:
if sub['code'] == i:
print(f"{i}\t {sub['values'][0]['longName']}")you can also use search endpoint:
import refinitiv.data as rd
rd.open_session()
url = 'https://api.refinitiv.com/discovery/search/v1/';
request_body={"View": "FundQuotes",
"Filter":"RIC eq 'XBAE.DE'",
"Select":"IssuerAdministratorCommonName,IssuerAdvisorCommonName,IssuerCustodianCommonName,IssuerPortfolioManagerLegalName"
}
request = rd.delivery.endpoint_request.Definition(
method = rd.delivery.endpoint_request.RequestMethod.POST,
url = url,
body_parameters = request_body
)
response = request.get_data()
response.data.raw['Hits'][0]0 -
Hi @jonathan.legrand ,
These fields are not working for my case, I already tried numerous TR. fields from DIB. They are not filled for ETFs. basically the information I need is present on the overview page and the question is how to extract it from there. I additionally also need to extract the following info(highlighted in red) from the overview page:
Do you have any leads?Thanks
0 -
@m.bunkowski is it also possible to get the issuer RIC. Additionally, is there a possibility to do this via the Eikon Python library?
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
- 684 Datastream
- 1.4K DSS
- 615 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
- 249 ETA
- 554 WebSocket API
- 37 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
- 275 Open PermID
- 44 Entity Search
- 2 Org ID
- 1 PAM
- PAM - Logging
- 6 Product Insight
- Project Tracking
- ProView
- ProView Internal
- 22 RDMS
- 1.9K Refinitiv Data Platform
- 643 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
- 26 DACS Station
- 121 Open DACS
- 1.1K RFA
- 104 UPA
- 192 TREP Infrastructure
- 228 TRKD
- 915 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 中文论坛