-
rate limit when requesting history via the LSEG Data Library
I gather that when requesting historical pricing, every stock is being requested individually, even when requesting one date, is that correct? E.g. if I just ask for Russell 3000 stocks since the start of June, I'm making 3,000 separate requests? That at least seems to be what is happening from debug logs. I ask partly…
-
Enums and ms timestamp fields in Workspace Realtime API
Hi— we had been debugging the new lseg.data library realtime APIs on a system that had been running Eikon. When running eikon Eikon, fields with enums (like IMB_TYPE) and fields with timestamps (like IMB_TIM_MS and QUOTIM_MS) were all coming back as integers using the lseg.data streaming APIs, for example using the…
-
Why does the LSEG Workspace “Company Tree Structure” Excel export fail for some companies?
I am using the “Company Tree Structure” feature within LSEG Workspace to export group hierarchy data into Excel. While the download works as expected for many companies, it consistently fails or gets stuck in a loading state for a subset of both public and private companies. This issue persists regardless of the account…
-
Client wants to extract fillings details via Python / RIC BERM.KL
Query: Is it possible that use python to extract the pdf file if the company have the PN17/GN 3 filling? For the excel just for clarification, cannot show in excel that whether this company have filling for the PN17/GN3? I just wanna detect whether the company is it under PN17 / GN3, or is there any method to check the…
-
Issue Registering LSEG COM Library for Workspace
Hello, After migrating from Eikon to Workspace, we encountered an issue with one of the COM Add-ins, RHistoryAPI.dll, which is now deprecated in Workspace. We were advised to switch to the LSEG COM Library for Workspace, which appears to be the appropriate replacement. However, we are currently unable to register the LSEG…
-
Eikon to Workspace migration - refinitiv.data
Hi I'm using import refinitiv.data python library to pull market data. Mostly get_data function. Will this work after migration to Workspace? Thank you
-
Request for API Access – Last Change Rate Data for Process Automation
Dear LSEG Developer Team, We are currently working on automating a process that requires access to the Last Change Rate data from LSEG. As advised by Toshniwal, Harish, we would like to explore the feasibility of integrating with your API to retrieve this data programmatically. Specifically, we are looking for: API…
-
Retrieve historical Ultimate Parent given a LEI
I am creating a historical database to track track the relationships between fund managers and the ultimate parent of a fund. To do this, I am using the LSEG Python API. I have been testing this procedure using the rd.get_data() function. This allows me to retrieve the name and PermID of the ultimate parent for a list of…
-
Unable to install lseg-data package
Hi team I'm not able to install LSEG-data package to Jupiter environment nor in python environment
-
How to retrieve Cboe Put/Call Ratio via LSEG Data Library?
Hi all, I’m using the latest lseg-data Python library (v1.x) with a Desktop session.For equities like SPY.P the usual Level-1 fields (TR.CLOSE, BID, ASK, etc.) work fine, but I can’t figure out the correct identifier / field for the Cboe Put/Call Ratio. I’ve tried several combinations without success:…
-
How to get historical price data of GOV BOND(EXPIRED/MATURED) like JP10504214C9 more efficiently
It seems to work below code but is there more efficiently codes like historical_function in workspace API? ### import refinitiv.data as rd import refinitiv.data.content.ipa.financial_contracts as rdf from refinitiv.data.content.ipa.financial_contracts import bond rd.open_session() import pandas as pd from datetime import…
-
Historical Yearly ESG Data
I'm using the Refinitiv Python API (refinitiv-data) to pull ESG data (2013–2024) for multiple companies. I want a wide format like this: I use the rd.get_history command (see screenshot below), and get a very large dataset with date in column 1, and instrument + variable for each column filled with many N/A values as the…
-
Depth Data
Hello, I am currently implementing a migration from old Refinitiv Data API to the new .NET Refinitiv Data Library. I am trying to get the following depth data through the PricingStream but I cannot get any returned value. BEST_BID1 (from 1-8) BEST_BSIZ1 (from 1-8) BEST_ASK1 (from 1-8) BEST_ASK1_SZ (from 1-8) I do not see…
-
Pricing Stream does not connect
Hello, I am trying to set up a Pricing Stream in our app but I am getting a StreamDisconnected msg "Message": "Unable to connect to the remote server", "Endpoint": "ws://localhost:/api/rdp/streaming/pricing/v1/Websocket" But when I use the example projects for pricing stream. It works well. The endpoint looks a little…
-
invalid token error when using content summaries, but not get_history, using lseg.data API
I'm not sure what I may be doing wrong here. When I use the LSEG Data Library to download historical interday data, if I do the request like this, it gives back data just fine: In [165]: ld.get_history('MSFT.O', 'TR.Volume', interval='1D', start='2025-01-01', end='2025-06-06') Out[165]: MSFT.O Volume Date 2025-01-02…