-
lseg.data python library
I would like to get data information of an instrument by using the lseg.data python library I tried to use the library lseg.data.content.symbol_conversion, but it seemed that I don't have access to a scope to use this endpoint (trapi.search.lookup.read) So I tried to requested directly by using the endpoint,…
-
Tickers vs. RIC
Hello, I am using Tickers as you can see below but they are not matching with the RIC code. How I can get the data from LSEG with my Tickers?
-
How to use symbol_conversion.Definition for a specific date?
I'm using the following to convert from ISIN to RIC: ld.open_session() response = symbol_conversion.Definition(symbols = ['TH8319010Z06'], from_symbol_type = symbol_conversion.SymbolTypes.ISIN, to_symbol_types = symbol_conversion.SymbolTypes.RIC, asset_class = symbol_conversion.AssetClass.EQUITIES, ).get_data() eikon_map =…
-
Question about getting bid ask of Isincodes by Codebook.
I want to obtain bid ask data by Code book. The code attached below is about getting bid ask from the input data; Isincode. Could you tell me why the code does not work. import pandas as pd import refinitiv.data as rd from refinitiv.data.content import symbol_conversion as sc # ← v1.6 ではこちら 1. セッション開始(Workspace/CodeBook…
-
Does RTO allows to send a SEADOL/ISIN/CUSIP and recieve a RIC?
Does RTO allows to send a SEADOL/ISIN/CUSIP and recieve a RIC?
-
Convert Tickers into OrganizationalIDs
Hello, could you please provide a code that leverage the one below that can convert a ticker into an organizationalID so to be used for fetching data in the RDP Filigs API ? I am connecting using the os variable below using a json config file where all my credentials are stored: os.environ["LD_LIB_CONFIG_PATH"] =…
-
RICs
Morning, Where is the best place to test RICs , Some of the historic rics have different logic in how they are constructed, and I need to test which is the correct format. Thx
-
Unable to use symbol_conversion module of Refinitiv Data Library for Python.
Good afternoon, Establishing connectivity with a Python script to our locally hosted RTDS servers, I am able to connect without issues and request RIC data as session with call such as: ricarray = "MSFT.O" result=rd.get_data( universe=ricarray,) print (result) Result: Instrument PROD_PERM RDNDISPLAY ... ODDTRN_UNS…
-
Empty response when searching for derivative by underlying
Hi, I'm building a tool that requires me to search for information on derivatives. Here i'm trying to find some futures contracts. To find these contracts I have information on the underlying of the contract. I tried using the content search like so : df1 = rd.content.search.Definition( view=rd.discovery.Views.SEARCH_ALL,…
-
https://developers.lseg.com/en/api-catalog/refinitiv-data-platform/symbology-API
Is the symbology API accessible only through v1 authentication or is it possible to use it via v2 as well?
-
Extract Primary RIC from Symbology API
Hi there, Client has a list of 38k PermID. They would like to extract Primary RIC using PermID from Symbology API. They would like to know how they can do this in Postman. Thank you!
-
Getting SSL error while running OpenPermID library in python
I tried running the following command but got the error: output,err = opid.lookup("1-4295880893", orient="row", format='dataframe') err requests.exceptions.SSLError(urllib3.exceptions.MaxRetryError("HTTPSConnectionPool(host='permid.org', port=443): Max retries exceeded with url:…
-
Symbology API using Postman
I want to extract Primary RIC from PermID, for this I have written a JSON in API playground using Symbology API but due to small batch size of API playground I want to use POST request in Postman to extract the same. Can you list out the ways to do it using Postman. JSON I am using is as follows: { "from": [ {…
-
What is the ID retrieved in the API?
Hello, Using the following two fields: ['TR.InvestorFullName.investorid','TR.InvestorFullName'], I may get as ID "2928306", corresponding to "Mitsubishi UFJ Financial Group Inc". If I try to use ek.get_data() with 'TR.ISIN' for the ID above then I get no match. If I try to use ek.get_symbology() I have the same issue. (For…
-
Is there a way to map PermID to all the RICs associated to that company, if a company is listed i...
...n multiple stock exchanges. Q1 I am trying to match PermID to RIC in API Playground and wanted to know if there’s a way to Identify all stock exchange listings for a particular group ? For example NIKE is listed in NYSE and ETR Stock exchanges but when I pass Nike’s PermID it only gives one output. * Is the mapping…