-
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…
-
Retrieving annual reports using LSEG API
For a research project, I would like to download the annual reports for a large set of European firms over the period 2010-2023 (following a similar approach as in this article: Global Evolution of Environmental and Social Disclosure in Annual Reports - Lin - 2024 - Journal of Accounting Research - Wiley Online Library).…
-
Pull historical Lipper derived holdings data using RDP API
Hi! I would like to pull historical derived holdings data for +1000 funds on LSEG Workspace (specifically Lipper) using the Python API. I saw a few posts that I might want to use the RDP API for such tasks. I have accessed RDP but can't figure out which functions I should use. Could you provide some instructions? Below is…
-
Accessing EOD within DP PRICING API
Hello Team, Client is looking for quicker access to Interday Summaries (EOD) in RDP, as currently the NDA endpoint they use provides them with 45 minute delay (exchange publishes at 15:00 and they receive it at 15:45, as that’s the EOD snap time for NDA). I was advised to use Snapshot API instead but it does not lay in…
-
Codebook Workspace API - News help!
Hi, i'm trying to pull news headlines via the workspace API. rd.news.get_headlines("LSEG, MSFT.O AND Language:LEN", count=50) this code works for pulling headlines, but how do i add another filter for "content type" like in the APP NEWS 2.0? i.e. web news, research, transcripts, filings etc. I'd like to filter my query. I…
-
Can API retrieve transcripts from LSEG Workspace Messenger
Does API access to LSEG/Eikon Workspace would allow the requestor to retrieve transcripts from the LSEG Workspace Messenger?
-
How to retreive any data using API which is using GRSUM function in excel?
How to retreive any data using API which is using GRSUM function in excel?
-
Historical Leavers and Joiners of .SPX
I need a list of Leavers and Joiners at the beginning let say at 01-01-1990 and then have the in and out for the following years in Phyton API. So this need to be done in 2 times : First having the list at special date let’s say 01/01/1990 Second the IN and Out the following years. For sample RIC : .GDAXI To have a…
-
Some RICs receive nulls at certain times.
I am making a streaming request for MarketPrice at RTO using View. When streaming to some RICs, including ".PSI", the data for each FID is received as "null" around 0:00 (UTC).Can I understand this "null" data to be reset data? By the way, if I receive data after that, I am able to receive it with data entered for each…
-
PermID API / questions from the internal review department
We are conducting an internal review for using PermID APIs, and the review department has raised the following inquiries. Could you please provide answers? ■ I believe the API authentication method is "API token method," but is it "OAuth2.0"? ■ When issuing tokens, it is assumed that we will go through an authorization…
-
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…
-
Client having issues with API from Eikon.
Case# 15138552 Raising the query on behalf of a client. Seeking assistance with the client query regarding the use of API from desktop Eikon. They are mentioning that the code is not working for several days now as well as getting errors on some asset classes they use. Error is below and script used(most RICs on script is…
-
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:…
-
whether workspace provide some documentation or method for us to use API to retrieve report
I remember LSEG workspace provides API for users to retrieve data. We wonder whether workspace also provide some documentation or method for us to use API to retrieve report data we need automatically?
-
How to query intraday prices for only 5 minutes per day for a certain timezone
Hi, I am trying to get intraday close prices only for the same 5 minutes every day (ie 1300-1305 ET). May I know how I can modify this function to: only get data during that period of time daily, and change the time zone to Eastern Time? response = historical_pricing.summaries.Definition( "ESc1", start = timedelta(-3), end…