-
Questions regarding the fiscal year
Currently, we use the Python API and ld.get_data() to extract fundamental and ESG data of several companies over time. We want to make sure that the date variables we are using in both requests (see below) correspond to the last day of the company’s business year so that we can interprete both datasets on a fiscal year…
-
LSEG API
I am working on transitioning my data pulls from the Eikon API to the new LSEG API and cant get these Eikon RICs to work when using the ld.get_history() method. Are there LSEG equivalents to these tickers? RIC_list = ['USMPSF=ECI', 'USMPMF=ECI', 'USNPMI=ECI']RIC_list2 =…
-
Is 'IssuerOAPermID' the best (unique) identifier on a firm level?
Currently, we use the Python API and ld.get_data() to extract price, fundamental and ESG data of several companies over time. Therefore, we want to know which identifier ('IssuerOAPermID'?) we should use to have a unique identifier on a firm level. Thank you very much in advance!
-
Clarification on Price Source and Data Feed Timing for ek.get_timeseries Call
Hi, I hope you're doing well. I have a quick question regarding the following script: ts_result = ek.get_timeseries( ric, fields=['CLOSE', 'HIGH', 'LOW', 'OPEN', 'VOLUME'], start_date='2009-01-01', end_date='2025-04-02', interval='daily', corax='adjusted' ) Could you please confirm whether the price data retrieved with…
-
Error when running eikon.get_data function in local python script
When running the command eikon.get_data("SMI", ["TR.PriceClose"]) within a local python script, I'm getting an AttributeError (see attached screenshot).
-
Ordinary and preference shares voting power over time
Dear all, my aim is to search for the voting power of the shareholders at each FY end, searching for the different shares issued by a company. In this example, I have two Volkswagen and two Google shares. By inspecting different variable in the DIB app, I built this Excel formula that I dragged over different cells…
-
How to Transition from C# Eikon to Workspace
Dear LSEG Support Team, Greetings. We have been using the EikonDataAPI NuGet package with C# to access Eikon data. Below is an example of the code we have implemented: using EikonDataAPI; IEikon eikon = Eikon.CreateDataAPI(); eikon.SetAppKey(EikonApiKey); Dictionary<string, string> dic = new Dictionary<string, string>();…
-
Eikon Python Data API migration to lseg-data. get_history() request empty result
Hello, The second problem with get_history(): sometimes, for some requests the function returns nothing. Empty DataFrame. There is no way to get any details on what happened. The behavior is not consistent. Right now I see an empty DataFrame for this request: dataFrame = ld.get_history( universe= ["INDJ25"],…
-
first time user - please help with the following
I am trying to pull data from Refinitiv using Python via an API key. Normally, I use an Excel add-on, but this time, the data I need requires a lot of iterations, so I had to revert to Python with the help of Chatgpt, although I am not confident using it. As expected, the code generated by Chatgpt doesn't work, and I…
-
Sentiment analysis on historical news for a portfolio
Dear all, I am an early-stage user of the API environment, please excuse me for apparently redundant questions. My aim is to gather management pay-related news from the last 365 days for every company in my portfolio (fewer than 550 RICs) at each fiscal year-end over the past 20 years, and perform sentiment analysis on…