-
lseg-data : news metadata & authentication cache
hello, three questions : is it possible to access /data/news/v1/metadata/{QCODE} API with python lseg-data library ? is it possible to cache authentication token (in a file ?) in order to avoid extra authentications is symbology available in lseg-data ? I can not find it regards
-
Issues with Symbology API lookup calls when data set exceeds around 100-200 items
Case 15682386 "We've recently added ~500 new cusips into our universe which we use to fetch market data. It now seems like the /discovery/symbology/v1/lookup call to map cusips to RIC's is now timing out at around 100-200 cusips. Is there a limit on how many cusips we can query for, and if so what is that limit?"
-
Get all related RICs given an ISIN using LSEG module
I need to get all available RICs possible for a certain ISIN through python via lseg-data library as I need to get all contributors available. Before, I can do this using Eikon library as shown below. data = ek.get_symbology("GB00BFWFPP71", to_symbol_type='RIC', best_match=False) Tried, using symbology and…
-
Download10-K filings by using workspace.
Hi! I’ve been working on a Python script to download some 10-K filings by using workspace, but this error message appeared: [DiscoverySearch] Sending body_parameters: {'json': {'View': 'equityQuote', 'Query': 'AAPL.OQ', 'Top': 3}} [DiscoverySearch] Library recorded body_parameters: {'json': {'View': 'equityQuote', 'Query':…
-
Is it possible, from the ISIN code, to get the primary RIC code ?
I use a Python code to export into Excel some Data from your StarMine Model. I use the ISIN code as identifier. Unfortunately, there is an issue with Ferrovial (ISIN = NL0015001FS8). I think the right RIC to use is FER.MC. Is it possible, from the ISIN code, to get the primary RIC code ? I guess it may help me on this…
-
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…