-
Historical Bond Index Constituents
Hello, Is it possible to get the historical constituents of a corporate bond index? For example the iBoxx EUR Corporates Index (.IBBEU003D). I've already tried the example below which doesn't work unfortunately. Many thanks.
-
ESG Bonds and RCSFIClassificationCodes
Hi! I am looking at ESG bonds issued by firms. I am trying to understand the RCSFIClassificationCodes variable, which for each ESG bond outputs one or more lists the following structures:{'Code': String, 'CodeDescription': String, 'CodePermID': String, 'IsESGStandard': Boolean, 'Type': String, 'TypeDescription': String,…
-
As the error message still persists, it seems I hit the limit of requests per day (
Why this error occurs: The error typically appears when the number of API requests exceeds the allowed limits. This can result from high usage patterns or inefficient code execution. Key API Limits to Keep in Mind: Requests per second: Maximum of 5 requests per second, counted across all client applications connected to…
-
could you please provide specific information about the associated limit, i.e. how are requests meas
Hi! I am using the LSEG Data Library for Python. As I am currently in the development phase doing lots of testing, I just got the message "Error using get_history_func>get_history (line 212) Python Error: LDError: Too many requests, please try again later. Requested universes: ['CLc1']. Requested fields:…
-
Get_history request is not returning same fields - Unexpected error in data returned from data sourc
Hi The below request has worked very reliably over the past few weeks when I tried: df_prices = get_history( universe=ticker, fields=['TRDPRC_1','ACVOL_UNS','TRNOVR_UNS','VWAP', 'TR.TotalReturn', 'TR.CompanyMarketCap'], interval='1d', start=start_date, end=end_date, adjustments='CCH' ) But today I tried three times and…
-
How to create agents using N8N?
Hi Team, I have a Workspace Client who is learning to create agents using N8N. The client is planning to create his own agent one day and hope it will be able to access Workspace via an API. Additional client verbatim: "It is my understanding that most software providers are providing api keys for ai agents, like N8N,…
-
How can I extract firm-year panel data for DAX/MDAX/SDAX companies from LSEG Workspace efficiently?
Hi, I am conducting an empirical panel study (fixed effects) on board diversity in German listed firms for 2022–2024. I need firm-year data (e.g. female board representation, ROA, ROE, Tobin’s Q, governance and ownership variables) for DAX, MDAX and SDAX companies, but I cannot retrieve these variables reliably in LSEG…
-
I'm working in codebook using a jupyter notebook.
I'm working in codebook using a jupyter notebook. I have some data in an excel which I want to add to my analysis. I have dropped the excel file into the same folder in codebook as my Jupyter file, however the following code cannot load the file into the Jupyter notebook: Lombards =…
-
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…
-
How to get Insider's ownership for a specific date for a panel of RIC?
I am trying to collect insiders ownerhsip and role as of 31 december of each year (2018-2022) for a list of RICS but cannot find any data. What is the proper way to download them? Best regards,
-
could you please provide me an function exemple in Python code for import EURUSD Spot price from 03
Further working on the query please find the below python script to get the data. import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['EUR='], fields = ['TR.BidPrice'], parameters = { 'SDate': '2024-01-03', 'EDate': '2025-09-15', 'Frq': 'D' } ) display(df) Client has got the below error. Can you…
-
Getting News headlines using python
I am using workspace, is there way i can query the news headline using python ?
-
how can i get open/close/high/low price of 'XAUUSD' by python api
like "ld.get_data"
-
HisoricalPricing not returning today as most recent date
HI, When I use RDP.HIstoricalPricing on "LCOc1" (and also various currencies) in Excel, it returns data with today (Nov 5) as the most recent row. This is the formula that Workspace creates when you export a chart to Excel. When I run this code in Python, it returns data with the previous session (Nov 4) as the most…
-
Sourcing historical 30D Volatilities with Python
Dear Team, What is the python code to source historical 30D volatilities for a ticker? I have tried with the below code with the lseg-data package, but it's only returning the current 30d vola: df = ld.get_history( universe=['AAPL.O'], fields=['TR.VOLATILITY30D'], interval= "1D",…