-
EikonError-Backend error. 503 Service Unavailable
I am fetching the news headlines data using python but this error has been occurring lately. Been using the same script and could fetch 100 headlines day before yesterday but works no more. Here is the script:_ pip install eikon import eikon as ek ek.set_app_key('###') import pandas as pd import numpy as np import datetime…
-
Extracting analyst estimates data using Not Null filter for period end date
Hi, I am trying to extract the analyst estimates data as mentioned in the code below - df, err = ek.get_data( instruments = ric_lst, fields = ['TR.EPSMean.periodenddate', 'TR.EPSMean', 'TR.EPSMean.date','TR.RevenueMean', 'TR.NetProfitMean'], parameters={'SDate':'2010-01-01','EDate':'2023-12-13','Period':'FQ1'}) The issue I…
-
trying to connect to eikon api - error 404
I'm trying to get data in the Eikon api in Python. i run the following code: import eikon as ek API_KEY = "my_api_generated_from_eikon" ek.set_app_key(API_KEY) df = ek.get_timeseries(["MSFT.O"], start_date="2023-01-01", end_date="2023-01-10") but i get the following error: 2023-11-27 13:10:29,087 P[12100] [MainThread…
-
Continuous 500 Internal Server Error and Gateway Time-out errors
Hi all, I have a few python models that have ran into updating issues in the past three weeks or so. On some days the models update just fine, but on other days (like today) I keep getting either an 500 Internal Server Error or a Gateway Time-out error.…
-
Having Trouble Registering API Key
I have a user having issues registering API key. Getting the errors below: User is Litwiller, Dane in case it's a permissioning error. 2023-12-22 09:47:02,005 P[11976] [MainThread 2340] Error code 403 | Client Error: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"…
-
api updates / better docs
hi, the eikon data api is now quote "old" without any updates whatsoever. does this mean that there wont ever be extensions to the functionality and we have to live with all the shortcomings (get_timeseries only has 5 fields, get_data not having proper history, fields missing, some get history, others dont) forever? also,…
-
How can I get supply chain data of a company list using Eikon Data API
Hi. How can I get supply chain information of a company list from EIKON API? I have a company list including Identifier and Company Name, as Fig.1 shows. I want to search for the supply chain information like what I can get from the EIKON desktop, as Fig.2 shows, including Company, Type, Relationship, Country, Industry,…
-
Eikon data api: get_news_headlines: top news only
On Eikon API: ek.get_news_headlines("( R:AAPL.O OR R:GOOG.O OR --- many more rics in between ---- OR R:IBM ) and Language:LEN AND ( Source:RTRS OR Source:FT )", count = 100) I noticed that I receive a lot of news items that are not so important. I noticed that in the output I receive many headlines that are not so relevant…
-
Multiple prices for the same RIC and date
Hello, I'm working with Brazilian date and found that for some stocks, when I retrieve the price date, the query returns multiple lines for the same date. Is this because my date field is based on TR.PriceClose (i.e.,TR.PriceClose.Date)? Here is the code (FYI, this RIC is an equity forward. The underlying is PETR4.SA)…
-
Eikon Python API query
Hi, I am unable to get the price and volume data using the below code. df, err = ek.get_data( instruments = ['LXRH24'], fields = ['TRDPRC_1', 'CF_VOLUME'] ). I am getting this error message: module 'eikon' has no attribute 'json_requests'