-
Retrieving historical TR.EPSMean data
Hi @Jirapongse I would like to retrieve EPSMean (Tr.EPSMean) for three different periods for one stock. The code I have is the following: fields=["TR.EPSMean(Period=2026)","TR.EPSMean(Period=2027)","TR.EPSMean(Period=2028)"] df_fundamental = get_history( universe=[ric], fields=fields, interval="1d",…
-
Hello, I need to know if data (for a given bond) provided by your API is reliable. Thanks
Hello, I need to know if data (for a given bond) provided by your API is reliable. Thanks 2/16/2026 14:00 IT537030= 1.99805 2/16/2026 15:00 IT537030= 1.92665 RIC: IT537030= The data is about the yield # Request BID / ASK yields df_yield = ld.get_history( universe=rics, fields=["BID_YIELD", "ASK_YIELD"], interval=INTERVAL,…
-
How can I pull real time data on the Python API for LSEG
I am trying to pull real time data for some RICS listed below, however I find that Equity Inidicies show up as blanks with NULLS across. What can I do to pull the latest SPX Value? rics = [ '.SSEA', '.GDAXI', '.DJI', '.STOXX50E', '.FTSE', '.HSI', '.NIFTY500', '.N225', '.MXX', '.IXIC', '0#.SPX', ".INX", '0#.GSPTSE',…
-
user has this query
import refinitiv.data as rdimport pandas as pdfrom datetime import datetime, timedeltaimport osimport sysfrom dotenv import load_dotenvimport psycopg2# --- 1. IMPORT BRIDGE ---current_dir = os.path.dirname(os.path.abspath(__file__))parent_dir = os.path.dirname(current_dir)if parent_dir not in…
-
Refinitiv. Data. Net package
Hi I m using 1.0.0-beta4 version for refinitiv. Data. Net package available into https://www.nuget.org/packages/Refinitiv.Data/1.0.0-beta4, and I m wondering if there is any planned date of end of life in the future for this version. Many thanks for your help
-
API not working "handshake" service error
Is Refinitiv’s API service currently experiencing any issues? We would like to check in order to determine whether the problem is on our side or with Refinitiv. At the moment, our system appears to be unable to send or receive requests, and we are encountering the same error even when the proxy is disabled. Could you…
-
Using python API to filter news for “government bond yield
headlines_response = news.headlines.Definition( query = "fixed income AND euro zone AND LEN", date_from = "2026-04-13T14:00:00", date_to = "2026-04-14T08:15:00", count = 100 ).get_data() Is there a way to filter for “government bond yield”? as the filter I am currently using, fixed income, is returning some news article…
-
How to retrieve index constituents for a specific date
According to the article athttps://community.developers.lseg.com/home/leaving?allowTrusted=1&target=https%3A%2F%2Fdevelopers.lseg.com%2Fen%2Farticle-catalog%2Farticle%2Fbuilding-historical-index-constituents ,the get_constituents_as_of function is supposed to retrieve index constituents for a specific date. However, when I…
-
Disabled LSEG App keys still working for API Calls?
I have disabled some of my App Keys on LSEG APPKEY page. I then updated my lseg-data.config.json file with an app key which has been disabled but yet, I am still able to access the API and retrieve data. Why does it still work even after being disabled? Also, how can I delete old app keys? I cannot find the delete function…
-
Hello! I am currently trying to retrieve news using the Python API.
Hello! I am currently trying to retrieve news using the Python API. However, I cannot filter only english articles: the code I am using rn is the following: headlines_response = news.headlines.Definition( query = "fixed income AND euro zone AND LEN:EN", date_from = "2026-04-13T14:00:00", date_to = "2026-04-14T08:15:00",…