-
Extract ESG related data items
Hi Team, would you know if we can extract all of the ESG related data items in python API? See screenshot attached. We are looking for some guidance which works similarly like the DIB app in LSEG Workspace. As you can see, in the DIB app, user can use the Content Classification filter to display all of the related data…
-
Workspace + refinitiv.data – Analyst EPS history: some brokers visible, others “Permission Denied
Hi everyone, I’m working with Refinitiv Workspace and the Refinitiv Data Library for Python (refinitiv.data) for academic research on analyst EPS consensus. My goal is to retrieve analyst-level EPS broker estimates over time for an equity (here: ASSAb.ST), so that I can study how individual analyst contributions to the…
-
Extracting IBES analyst level detailed forecasts using python on single year and longer horizons
Dear LSEG Team, I want to pull the IBES analyst-level, detailed forecasts from the workspace using Python. I am using the following formula in Excel: =@RDP .Data("MSFT.O;AAPL.O", "TR.EPSEstValue.fperiod;TR.EPSEstValue.analystname;TR.EPSEstValue.analystcode;TR.EPSEstValue.date;TR.EPSEstValue","Period=FY1990:FY2024 RH=IN…
-
Data seems to be incorrect using Python API for RIC aUSUNR/A
Hi team, I am raising this on behalf of an external client: Based on what I have checked, I compared the data to our excel workspace as well on our Charts app and we can't seem to get the said incorrect values. Please see screenshots below: Excel: Chart: Please see attached file for the client's script. Estimates data team…
-
link Workspace and chat gpt
is there a away i can automate a link between Refinitiv and chat GPT? i'm looking to use chatgpt to analyse call transcripts.
-
Hello team how to bypass the TOP=10,000 limit in Workspace API CODEBK?
import refinitiv.data as rd rd.open_session() rd.discovery.search( view = rd.discovery.Views.GOV_CORP_INSTRUMENTS, top = 10000, filter = "((DbType eq 'GOVT' or DbType eq 'CORP' or DbType eq 'AGNC' or DbType eq 'OMUN' or DbType eq 'OTHR') and IsActive eq true and (RCSCountryGenealogy in ('G:DE')))", select =…
-
What is wrong with my Symbol conversion code?
Hello Team please check the following code. The output that I want is USA country code specific but it is showing Exchanges from Thailand and Vienna. Also my asset class are code for funds, equities, certificates and bonds but Commodities futures also show in my output. Here is the code: from lseg.data.content import…
-
How to get options price/time and sale data from workspace API.
Question, how do we get options-related data from refintiv desktop? Is that something you guys offer? Currently we get back stock price, order book, and trade data. What's the way to get back options order book and trade data? We're currently using this library for quote and trade data. # Determine event types based on…
-
How to return result of "TR.F.OriginalAnnouncementDate" in local timezone.
The return for "TR.F.OriginalAnnouncementDate" shows in UTC timezone. eg. 2025-05-08T04:55:00Z Is it possible to return in Japan logal time (GMT+8) ? <script> import lseg.data as ld ld.open_session() df = ld.get_data(universe = ['7203.T'], fields = ['TR.F.OriginalAnnouncementDate(Period=FY0,Frq=FY,SDate=1D)']) display(df)…
-
Is there a code where I can convert a list of RICs into its US RIC counterpart?
Hello team, for example RIC ABX.TO is listed in Toronto Exchange the RIC which the Exchange is United States is RIC B. I have managed to create this code: import refinitiv.data as rd rd.open_session() rd.discovery.search( view = rd.discovery.Views.EQUITY_QUOTES, top = 10, filter = "(AssetState ne 'DC' and…
-
Error 503 when tested in codebook of Workspace
User has key but still failed to run open session with 503 error. How to fix the issue please? User's network is Internet.
-
FX cross in Turn Dates in API
Hi team, Specialist here from Customer Support. Related to this q&a Is there a way to retrieve Turn Dates for a specific currency pair directly on Python ? — LSEG Developer Community there is a specific parameter if you want to calculate CCy1 or CCy2 which is then discussed in this guide:…
-
Workspace API using LSEG Data Library does not show any result
Trying to pull data by Worksapce API (LSEG Data Libarry, desktop session) returns "Company Common Name", instead of "Toyota Motor Corp" by rics = ['7203.T'] fields = ['TR.CommonName'] df, err = ld.get_data(universe=rics, fields=fields) lseg-data version is 2.1.1 python code, log file and result screenshot is as attached.…
-
WS API How to Retrieve MBS, ABS, and Corporate Bond by Country or Currency
Currently, Our client is looking to obtain data on U.S. MBS (Mortgage-Backed Securities), ABS (Asset-Backed Securities), as well as corporate bonds categorized by country or currency. Until now, he has been using the following method to retrieve government bond data. However, he have not been successful in acquiring MBS…
-
Stream timeouts on websocket under python lseg.data API
We're streaming LSEG data using the LSEG Data Library for Python, using lseg.data.content.pricing. Sometimes— seemingly at random (different times of day, sometimes after streams have been up for hours, other times after just minutes), we receive Stream.on_status events with the following (example) payload: status: {'ID':…