-
From Company Names to RICs
Hello, I know that there have been previous questions on the topic, but the answers did not solve the issue for me. I have a vector of company names from the USPTO. company_names = df["disambig_assignee_organization"].dropna().tolist() print(company_names[:10]) Examples of firm names: 'International Business Machines…
-
Missing ISIN/CUSIP/SEDOL from ld.get_data even though identifiers appear in Workspace (example: VSSL
Hi, I’m using the LSEG Data Library for Python to retrieve instrument identifiers (ISIN, CUSIP, SEDOL, etc.) from RICs as part of a global equity mapping pipeline. For most instruments, this works well. However, for a subset of equities the API does not return all identifiers, even though they are clearly visible in…
-
Symbology: SEDOL → RIC returns null in Python, but Workspace finds a RIC (ETF holdings use SEDOL)
I’m building an ETF holdings pipeline. Provider files list constituents primarily by SEDOL. I need to resolve these SEDOLs to pricing RICs (and also capture ISIN/CUSIP). I’m using the Python Eikon/Workspace API. What works / what doesn’t In Workspace (desktop), if I search by SEDOL I can see the security and its RIC. In…
-
How to obtain sedol to RIC mapping
Hi, I have the following use-case. My component at startup will fetch a list of sedol identifiers. The component will need to subscribe to RTO using EMA library (Real-Time Feeds) to receive the price data using the sedols list. Obviously subscription needs to be done using RICs but not sedols. So the mapping between sedols…
-
ISIN to RIC mapping - Error using dotnet samples of "LSEG Data Library for .Net"
Hi, Few weeks ago I asked a question on how to get RICs for a given set of ISINs programmatically. This was my question:- API to get RICs for a given ISIN (Euro/UK Fixed Income Bonds) - LSEG Developer Community So based on the answer I am using the dotnet samples given here LSEG-API-Samples/Example.DataLibrary.DotNet:…
-
How to map RICs & Permid for a given FIGI code?
How to map RICs & Permid for a given FIGI code?
-
Looking for mapping for ISIN/CUSIP to RIC
Can you please suggest if there is any process/ documentation already available to mapp any ISIN/CUSIP to RIC and vice versa
-
Maximum number of instrument identifiers in symbology lookup
Hello on following endpoint https://{{RDP_HOST}}/discovery/symbology/v1/lookup I can do { "from": [ { "identifierTypes": [ "ISIN" ], "values": [ "ISIN1", "ISIN2", "ISIN3", "ISIN4", "ISIN5", "ISIN6" ] } ], "type": "Predefined", "route": "FindPrimaryRIC"} Question: What is the maximum numbers of isins that I can put in the…
-
What is wrong with my Symbol conversion code?
Hello Team please check the following code. The output that I want is USA country code specific but it is showing Exchanges from Thailand and Vienna. Also my asset class are code for funds, equities, certificates and bonds but Commodities futures also show in my output. Here is the code: from lseg.data.content import…
-
API to get RICs for a given ISIN (Euro/UK Fixed Income Bonds)
Hi, Im looking for an API that will return me RICs for given ISIN. ISIN's will be for Euro/UK FI Bonds. I reached out to LSEG helpdesk via email, and they provided me with the following sample python code. I am interested in Dotnet version of the below python API. And looking at the site, looks like there is "LSEG Data…
-
Is there a code where I can convert a list of RICs into its US RIC counterpart?
Hello team, for example RIC ABX.TO is listed in Toronto Exchange the RIC which the Exchange is United States is RIC B. I have managed to create this code: import refinitiv.data as rd rd.open_session() rd.discovery.search( view = rd.discovery.Views.EQUITY_QUOTES, top = 10, filter = "(AssetState ne 'DC' and…
-
How to get the ISIN for All Security types (futures, commodities, etc)
Hello, I was wondering how I could get the ISIN for security types other than Equities such as futures or commodities? For example, I'm looking to find the ISIN for the RIC ESU25. Based on the github examples, I can only get the ISIN for equities.
-
Is there a way using the LSEG API to pull company data based off of the Ticker and not the RIC?
Hi team, Is there a way using the LSEG API to pull company data based off of the Ticker and not the RIC? I tried doing it on my end using AAPL instead of AAPL.O and I encountered an error. import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['AAPL'], fields = […
-
Python: search directly by ISIN
I want to be able to search directly by ISIN, as I will start out with only the ISIN available in python and not the Equity RIC. Is there a way via python to figure out the RIC and other features based on solely the ISIN?
-
Issue Retrieving ODAX via Symbology API – FDAX Works, ODAX Times Out
Hello! I'm working with the LSEG Symbology API and running into an issue when trying to resolve the ODAX instrument using the ExchangeTicker identifier type. The same approach works fine for FDAX, but with ODAX, the request times out. Here's a simplified version of the request body I'm using: var requestBody = new { from =…