-
Would you be able to reset my daily workspace download limit for codebook?
Client said "there is a blank box when I try to retrive data out of codebook. there is no error message per se. you can see there is an empty dataframe when I try to run this script import refinitiv.data as rd from refinitiv.data.content import news from IPython.display import HTML import pandas as pd import numpy as np…
-
You can see there is an empty dataframe when I try to run this script in Codebook
There is a blank box when I try to retrive data out of codebook import refinitiv.data as rd from refinitiv.data.content import news from IPython.display import HTML import pandas as pd import numpy as np from datetime import datetime,timedelta import time import warnings warnings.filterwarnings("ignore") rd.open_session()…
-
Ratings fields from Workspace API
Hi, I have a developer thats trying to get values for the below fields from the API: "TR.IR.RatingDate" "TR.OrganizationName" "TR.IssuerRating” “TR.GR.Rating” ”TR.GR.RatingDate” Can you please let me know what is the correct endpoint to receive values for these? And if possible maybe provide an example Python code. Thanks.
-
New User | Using LSEG Data Platform
Hi, Raising this on behalf of a new client. Please see below. As I understand upon reading the documentation in the developers portal, the Refinitiv Data Platform is being phased out and being replaced with LSEG Data Platform. But the step-by-step guide sent by you in your welcome email links to the older Refinitiv Data…
-
API service in LSEG Workspace for Document retrieval
Hi Team, May I know if we have a service that retrieves documents? Specifically for the retrieval of the following: For ETFs: 1. Annual Report 2. Interim Report 3. KIID 4. FactSheet 5. Prospectus For Bonds: 1. Prospectus 2. Final Terms 3. FactSheet For Stocks: 1. Fillings 2. Earnings 3. Annual Report
-
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…