-
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':…
-
Unable to load syntax in Workspace Codebook. Result only shows blank line or black square.
I am trying to run the code below but I'm only getting blank result or a black square as a result: import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = [ 'FDBc1' ] , fields = [ 'CF_CLOSE', 'CF_VOLUME', 'HST_CLOSE', 'HST_VOLUME' ] ) display(df) and import refinitiv.data as rd rd.open_session() df =…
-
Volatility in the number of results returned.
I'm using a Workspace session to connect to the Data Platform to collect fundamental data for a subset of 1000 firms in my sample. Below is the function call and code (Python) that I use: response = fundamental_and_reference.Definition( df['ISIN'].unique().tolist()[0:1000],…
-
Workspace API python:Retrieve EUR-denominated French government bonds
Our client is currently working on the government bond curve for the European region. However, using the method below, He is unable to retrieve EUR-denominated French government bonds (while major countries such as Germany and Belgium are returned correctly). If you happen to know a way to obtain them, I would greatly…
-
Fewer Observations when downloading data again
Hello everyone, I am a PhD student and I've been using Refinitiv to download firm-level data for my research. I'm currently facing a problem. I downloaded my main dataset around September 2024. In March 2025, I needed to add another variable, so I re-run the same script to download the data through the Python API. The…