-
CUSIP querying failures
hello, because querying using TickerSymbol trying to get RIC isn't bulletproof, i thought i might try relying on CUSIP. it turns out that is not bulletproof either. here is a list of CUSIPs that fail using this code: 'G96629103', 'G9892K100', 'N94209108', '81807M205', 'M98068105', 'M9T951109', 'N3144W105', 'M97628107',…
-
Question about terminal dat api
Hi team, we used to use python library eikon before (import eikon as ek), and I noticed recently the codecreator in terminal changed to use refinitiv.data (import refinitiv.data as rd) package. Besides, I also found some code samples using refinitiv.dataplatform.eikon (import refinitiv.dataplatform.eikon as rd). May I know…
-
The way to get news with the query it shows.
Hi, I followed Eikon Python api, but it gave me different data. please help me. I would like to get these news, so i put that query in my python code, but it gives me the latest news, not what i wanted. Here is what i did and what it provided. please let me know, what is wrong..
-
Eikon api - fund manager equity holdings
I am trying to use the Eikon api to download this page from various fund managers. I have the code which works for mutual funds and other funds that have Lipper codes, but it doesnt work when you just use the Company ID (starting with 429... here) . Is there a way to view these equity holdings for funds through the API?…
-
Grain Tender data via API
Is there a way to get GRAINTENDERS via the api? GRAINTENDERS is not really an instrument key or a chain. I have tried df = ek.get_data(['graintenders'], fields="Commodity") and df = ek.get_timeseries(['graintenders'], start_date=start_date, end_date=end_date, fields="Commodity") But get "nothing found" or invalid RIC.
-
Need EOD closing and settlement prices day wise data for CL Options Contract
Need EOD closing and settlement prices day wise data for CL Options Contract . Also need information of deriving the the same prices data for expired option contracts . Need all the above info for NG also so kindly let know on generic basis
-
why don't get commodities ricCode by IF2403?
this is my code to get commodities ricCode filter="TickerSymbol eq '" + code + "' and ContractMonthYear eq '" + date + "' and AssetStateName eq 'Active' and RCSAssetCategoryLeaf xeq 'Commodity Future' and ExpiryDateString ne null", I use below param to get code , it will return error messges. "code":"IF","date":"Mar 24"…
-
How to insert a date column with rd.get_data
Hello everyone I would like to get a time series with get_data. I would like to have the P/E ratio of the last 3 years. I use the following code: import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['LISN.S'], fields = ['TR.PE'], parameters = { 'SDate': '2020-12-31', 'EDate': '-1D', 'Frq': 'D' } )…
-
Error code 408 \ HTTP TimeoutException
Recently, sometimes when I use eikon.get_data(), it will occur 408 error, and the error kept coming up for the next 30 mins. Then suddenly it can works well again to get the data I want. I want to know why and how can this problem be sovled. The error show below: 2023-12-13 11:11:03,926 P[9384] [MainThread 8516] HTTP…
-
Eikon fails to return financial data
Hi, I am trying to get some financials for a list of companies using the Eikon API on Python over a certain time period. When using the eikon.get function, I get two lists, where the first one is for the successful requests and the other is for the errors. When analysing the errors for a specific row, I get "'code': 416,…