-
How to replicate news monitor search result using Python API?
I am getting an error using the ek.get_news_headlines function. Kindly see screenshots attached for error message and the news headline page that I am trying to replicate via the Python API. Thanks.
-
Eikon API, Python - Retrieveing data for bonds, futures, stocks and funds in the same query
I am using Eikon API in codebook. I have a code: ek.get_data(['NO0010923717', 'NO0011151797', 'DE000VX7EZY9', 'NO0012838921', 'NO0510152205', 'NO0010307135'], ['TR.PriceClose', 'TR.FundNAV', 'TR.BIDYIELD', 'YIELD'], {'SDate': '2023-12-01', 'EDate': '2024-01-01'}) list of rics: NO0011151797 - LP68702547 DE000VX7EZY9 -…
-
Timeout Error retrieving data
Hi everyone, I'm reaching out for some assistance regarding an eikon API query I've been working on. I want to retrieve some data on the institutional ownership of 300 companies from 2002 until 2023 and I've encountered a timeout error (Error code 408 | Request timeout occurred) while executing the following code: import…
-
EikonError: Error code 408 | HTTP TimeoutException:
Query: Hi I am trying to fetch the price data for 500 companies, monthly form 2010-latest using the python package eikon and Eikon API. But everytime its getting stuck and I am getting a time out error EikonError: Error code 408 | HTTP TimeoutException: .. Tried restarting my system and all my apllications but still it is…
-
Search for website of company
Hello community I've got a question to ask I access Add Filter to look up website of company but I failed can someone help me? Thanks
-
Error Retrieving Data through Eikon API
Hi Team, I managed to install the eikon package and set the app key, however, when I tried to run any of the test codes, like " df = ek.get_timeseries(["MSFT.O"], start_date="2016-01-01", end_date="2016-01-10") " I ran into error. It would be great it someone could provide some advice. Thanks in advance!! Here's what I…
-
Minutely stock price get_timeseries()
Hello, I want to retrieve the stock price minutely in a time range: df = ek.get_timeseries([".AXJO"], start_date = "2023-03-01", end_date = "2023-03-13", interval="minute") but it shows error: No data available for the requested time range When I remove the end_date, it shows the results, which I want to achieve but in…
-
AWS Eikon-python issue
Hello, I use AWS and got the error message when run the python code: import eikon as ek print (ek.__version__) ek.set_app_key("73c") Error message: 2024-04-23 15:26:44,018 P[2056] [MainThread 20712] Error on handshake url http://127.0.0.1:9060/api/handshake : EikonError(1, 'Status code 400: App key is incorrect') 1.1.18…
-
getting news with specific topics
Hello, I'm using Python with ek.get_news_headlines to get news from Eikon API I would like to ask if I want to get the news related to some specific topics (economics, finance, banking), is it the right query? "Language:EN in Australia AND (Topic:Economic or Topic:Finance or Topic:Economy or Topic:Banking or Topic:Politics…
-
Fetching Poll, Min, and Max data for 'USJOB=ECI'
How can I get the Actual as well as the Poll data for 'USJOB=ECI' that comes every week? Though I tried it this way (code snippet attached below), I'm only getting the Actual data, and not the Poll data. import refinitiv.data as rd rd.open_session() df=rd.get_history( universe='USJOB=ECI', start='2011-01-01',…