-
rd.news.get_story('urn:newsml:newswire.refinitiv.com:20171029:nTOPNEWS:552851')
I currently use the following and understand it is being retired. What is my best option to pull news in python that also links to articles? rd.news.get_story('urn:newsml:newswire.refinitiv.com:20171029:nTOPNEWS:552851')
-
Error when trying to install refinitiv.data locally
Hi I hope that you are fine. I am trying to run / access Refinitiv data locally via Python. I am using Visual Code and Jupyter notebook (IPYNB file). I have created a virtual environment. When I try to install the refinitiv-data library locally via python -m pip install refinitiv-data I receive the error below (I have…
-
Multiple Fields Result, how to get the meaning of each field?
start = time.time() mixed = rd.content.pricing.Definition( ['LLY.N','JPM.N','ZVIA.K','JBSS.O','AA', 'BIOb'], ).get_stream() mixed.open() snapshot = mixed.get_snapshot() end = time.time() print(f"Execution time: {end - start:.4f} seconds") it has 400 columns, and how can i search for the exact meaning of each column?
-
Private Equity/VC data retrieval through API
Hello, I am trying to download the Private Equity/VC data through the API. import refinitiv.data as rd from refinitiv.data.discovery import Screener rd.open_session(name='platform.rdp', config_name="./refinitiv-data.config.json") screenr = "SCREEN(U(IN(Equity(private))), BETWEEN(TR.PEInvestRoundDate,20251225,20251231),…
-
.SPX not pullable in TR.PriceClose
Why leaving fields "" gives permission error ? Example: df_ss3 = ld.get_history( universe=[#"TMCU0", ".SPX" ], start="2017-01-01", end="2050-12-31", #change this in 2050 interval="weekly", count=None, fields="" # This pulls ALL available historical fields. Add specific fields like "BID" to get specific columns. Multiple…
-
Disconnected after burst of queries
Hello. I have encountered a situation when after sending 50 instrument subscriptions from pricing stream and 50 queries of reference data from FundamentalAndReference module; the stream connection disconnects: EventCode [StreamDisconnected] msg { "Contents": "Connection to the WebSocket server…
-
Company Fundamental FundUpdType sometimes returns NaT, sometimes value (ie Original, Restated)
I am downloading basic company fundamental information, but having problems with FundUpdType (this returns if the financial statements are Original, Restated, ect. For the example I am using IBM.N and M.N because M.N — ie Macys, restated their last 3 years in March 2025) Anyway, during the weekdays the following code (i…
-
pip install Refinitiv-data error - subpocess existed with error
please find below screenshot for error details. I have installed VS installer with C++ Builder tool. so not sure why the error still exsits.
-
We are getting a problem when we request data with the TR.FundYeartoYesterday Field in LSEG_DATA
Its is returning a datevalue. Here is the code to replicate error: """ import pandas as pd import numpy as np import lseg.data as ek ek.open_session() Fields= ['TR.FundYeartoYesterday'] Fundamentals= ek.get_data('LP68102841', Fields) ek.close_session() """ This is being replicated across all other instruments. Other fields…
-
An error occurred while requesting URL('http://local host:9060/api/handshake'). RemoteProtocolError(
Dear Team, I am using Python API and an issue arises when I connect to Eikon import refinitiv.data as rd rd.get_config()["http.request-timeout"] = 60 An error occurred while requesting URL('http://local host:9060/api/handshake'). RemoteProtocolError('Server disconnected without sending a response.') I have referred to this…
-
Python refinitiv lib token expiration error
I'm using refinitiv lib in python like this: import refinitiv.data as rd rd.get_data(universe=self._stocks,fields=["TR.HIGHPrice","TR.OPENPrice", "TR.CLOSEPrice","TR.LOWPrice","TR.CLOSEPRICE.DATE","TR.ACCUMULATEDVOLUME", "TR.NUMBEROFBLOCKTRADES","TR.TSVWAP"], parameters={'SDate':self._start.strftime("%Y-%m-%d"),…
-
Unable to retrieve TR.FiCountryName field with a platform session
Hi, I've run into an odd issue where I cannot run the following Python line below under a platform session. Time series values and other fields such as TR.InstrumentDescription work fine. Permissions team says permissions are correct. rd.get_data( [ 'US10YT=RR', 'CA10YT=RR', 'GB10YT=RR', 'DE10YT=RR', 'EU10YT=RR',…
-
Is it possible to create a composite chart from a list of symbols
I was able to do this on Eikon (see attached pdf) by typing in:…
-
Eikon Data API Usage Limits
Hi Team, I am new to the API and currently using the Eikon Data API to fetch news data through a Python script that runs every minute. However, at some point, the program crashed. To identify the issue, I ran the sample code from the codebook, but it returned an empty dataframe: I have a few questions regarding this: Did I…
-
lseg.data.get_data running for around an hour and returning error
When fetching daily prices for 200 bonds using ISIN identifier, usual time taken is around 40 seconds, but sometimes the request takes around an hour and returns either "Backend error. 400 Bad Request" or "Asynchronous Query library internal error". API Logs attached. Code used When same request is retried either it fails…