-
EikonError: Error code 400 | Backend error. 400 Bad Request.
The python Data API is repeated erroring out of eikon.get_data requests and giving EikonError: Error code 400 | Backend error. 400 Bad Request. Multiple attempts will yield a result but the issue continues to persist making it impossible to do anything but manualy keep resending. Please escalate this to the API team as it…
-
Excel Add-in
Hello, I am using Mac and want to have the Excel add-in displayed as shown below: (2.png) 2.png However, I only have the following: 1.png How to get access to the first one(2. png)? On windows I know that in the start menu, I can try searching for 'Eikon' then looking for 'Refinitiv Eikon - Microsoft Excel'. However, I…
-
Migrating VBA Code from EIKON AdxRtList Library to Refinitiv Workspace
I am working on converting an Excel-based calculation tool that currently uses the EIKON AdxRtList Library to stream real-time underlying data. The goal is to adapt the VBA code so it works with Refinitiv Workspace instead of EIKON. Details: The VBA tool has the following components: A class module that interacts directly…
-
Difference in Intraday Timestamp between rd.get_history vs ek.get_timeseries
Hi team, Hanna here from the Specialist team - helpdesk. A question in difference in timestamp for intraday interval between rdp, ek and lseg. There is a one hour difference. Now we know and see this difference in our Charts due to the difference in logic, as discussed in our Knowledge Article: Why are the timestamps for…
-
Migrating scripts from eikon to lseg.data python module
Am looking to use my eikon Python scripts with Workspace now active, and am aware the Eikon API proxy will no longer be working from July onwards. Is there a way to ensure my scripts remain compatible after July? Related question - does just opening an ld.open_session() accomplish the same thing in Workspace as…
-
Mutual Funds - Holdings data
Hi, i need some help please re: the below query for returning the assets held in a particular fund, but i would like some additional fields… data, err = ek.get_data('LP65070066', ['TR.FundHoldingRIC', 'TR.FundHoldingName', 'TR.FundNumberOfShares', 'TR.FundNumberOfSharesChanged'], {'Endnum': '1000'}) if err: print(f"Error:…
-
Total Return for an Index
Hi, I would think this would be an easy question, but I can't seem to get a total return for S&P 500 (or other example indices, for that matter), but the formula works fine for stocks. Can someone please advise? My call is below: ek.get_data(['.SP500'],['TR.TotalReturn'],{'SDate':'2017-01-01', 'EDate':'2018-01-01'})
-
need to filter Japanese stock data with api
I need to filter Japanese stock data that meets the following criteria: Exchanges: Tokyo (TKS), Osaka (OSE), Nagoya (NGY), Fukuoka (FKU) Security Type: Common Stock Listing Status: Including Active and Delisted Country of Domicile: Japan Time Range: Monthly data from January 2024 to April 2025 I have tried various query…
-
meaning of the field VOL_X_PRC1
What is the meaning of the field VOL_X_PRC1. Does this imply VWAP? I see in the Eikon as well as the Workspace product, the field VWAP is not supported when requesting data. Can VOL_X_PRC1 be used for VWAP. Are there any other recommendations for the same.
-
How can I retrieve GDP information via the Excel Formula Builder?
Hello everyone, I am quite new to Refinitiv Workspace and have up until now only retrieved company information in Excel using the formula builder. However, now I need to retrieve historical GDP data in Excel for broader geographic regions, namely the US, Europe and Asia from the year 2002 until 2012. Is there any way to do…
-
Will the Eikon C# API be still supported in LSEG Workspace
-
Pull M&A data using API
I am trying to download M&A data using the Eikon Data API in R. It is not clear to me how to do this from the symbology videos. (Specifically I am trying to download all leveraged buyouts from 1970-2025, but any advice in the right direction is appreciated)
-
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).
-
How to Retrieve Historical ESG Ratings for M&A Target Companies in Refinitiv Eikon?
Hi all, I'm a student at the University of Amsterdam currently working on my thesis. I'm researching M&A deals and trying to gather historical ESG ratings for the target companies involved. I used DSCREENER in Refinitiv Eikon to identify relevant M&A deals from the past few years. However, I wasn't able to filter or…
-
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>();…