-
Unique stock identifier if company changes ISIN over time
Hello, I have a question about identifying the same issue over time from a list of ISIN codes using the Eikon Python API. As you may know, ISIN codes can change due to mergers and other corporate events. In commonly used datasets by other providers like Compustat (or CRSP) in the US, there is a unique ID code that tracks a…
-
Error code 403 | Client Error:
I'm trying to get access to eikon API and after having set up the key and running this code: ek.set_app_key('<App key>') df = ek.get_timeseries(["MSFT.O"], start_date="2016-01-01", end_date="2016-01-10") I get this response, which is the same for any ek command: 2023-11-10 15:34:25,002 P[26760] [MainThread 26264] Error…
-
news.get_headlines - how to include column for RICS
Hi I am using Refinitiv Data library to collect news articles in Python, which is working fine. Any idea of how I can return the list of RICS that the article relates to, just like News Monitor does in Eikon Desktop. I've included a snapshot of what I need below. Here is my current code: reg_df =…
-
Eikon scheduled to close?
Hi there, Just received a mail saying by 2025 you will withdraw EIKON in 2025. What will happen to the Eikon API solution? Is the "Workspace API" the same service?
-
Retrieving company data items from LEI code
Hi, From a list of LEI codes, how can I get the data items for those companies with a workspace licence using worksphace APIs? Thanks.
-
EIkon API download data at specific time
I know use below code to download 4000 tickers, but I don’t know how to download data at specific time( Taipei 16:00). Please help me for it. Thanks df, err = ek.get_data(['PEUP.PA','EUR=', 'JPY='], ['BID','ASK']) df Thanks
-
Fetching Revenue, net income and Eps data.
I'm trying to retrieve the revenue, net income, and EPS data for around 4000 RICs, one RIC at a time, but I'm having trouble doing so. I'm able to get the data up to 100 but after that I get a 400 backend error message. I'm using Refinitiv Eikon's most recent version, 4.0.63. Additionally, I am not exceeding the limit…
-
How can I pull historical implied vol surfaces to python?
Hi, is there a way to pull historical implied equity vol surfaces (e.g. .STOXX50E) to python via eikon app or datastream app? Thanks, Steffen
-
Prices in EUR
hi, I have some tickers that I want to drag in EUR prices for; TICKERS = ['4958.TW', '2899.HK', 'ZBH.N', 'ZI.OQ', '3092.T'] get_pricing_1 = ek.get_timeseries(TICKERS, fields='CLOSE',start_date='2023-09-28',end_date='2023-10-27') Can I amend that to get EUR prices on each underlying? Thx
-
CDS Spreads
Hello I have a list of companies, e.g. Apple and Microsoft. I need their yearly CDS spreads (at end of year). How do I get this? I am doing something but I am not sure. data, error = ek.get_data(['VOD.L','AAPL.OQ','MSFT.OQ'],'TR.CDSPrimaryCDSRic') result = data["Primary CDS RIC"] df,e = ek.get_data(result, ['TR.CDSType',…