-
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
-
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 =…
-
get_symbology() from SEDOL to RIC returns "no best match available"
I am trying to convert SEDOL to RIC through get_symbology, but it returns "no best match available". Meanwhile, Same SEDOL is able to convert SEDOL to ISIN. However, I tested it with other SEDOL, it is able to convert SEDOL to RIC. Those unavailable assets are mainly ETFs, and I wonder is this the reason that cause the…
-
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,…