-
Get list of RICs trading on a stock exchange segment in a specific time window
Hello, I'm trying to find a list of all RICs trading on a particular stock exchange segment within a specific time window. For example, the London Stock Exchange has the following segments: the Main Market and the Alternative Investment Market (AIM). I'm trying to download a list of RICs that were listed on the AIM at any…
-
ERROR - Remote server did not reply in a timely fashion
ERROR pyeikon:json_requests.py:_raise_for_status()- Error code 500 | Server Error: {"code":500,"message":"Remote server did not reply in a timely fashion. Got no response after 60000 ms"} I've been getting these in the past 2 days. I cannot retrieve any data using python eikon API. How can I fix it?
-
How to get ISIN codes from Chain RIC
We try to get ISIN codes from ChainRIC in Python.When we run following code but returned error. Does Python support get data by ChainRIC ? ----------------------------------------------------------------------- data,err = ek.get_data('0#GBBMK','TR.ISIN') data.head()…
-
SDate parameter when collecting company events
My goal is to get company event data for a universe of firms. I am using Eikon API version 1.1.18. I am using the following python code to access the Earnings Call and Earnings Release Events data , err = ek.get_data([RICs],['TR.EventType','TR.EventType.date'],{'SDate':'2001-01-01','EDate': '-1AW','EventType':'ECALL:RES'})…
-
How to Check Transcript Availability for Company Events Using the Eikon Data API
Hello everyone, I am retrieving company events through Python using the following code: data, err = ek.get_data( ["COPEC.SN"], [ "TR.EventTitle.Date", "TR.EventTitle", "TR.EventType" ], { "SDate": "-20Y", "EDate": "0D", "EventType": "ECALL" } ) data I would like to know whether there is a field or parameter that allows me…
-
How to pull data from VCHAINS app via Python API ?
One of our users needs value chain customer data for approximately 538 listed companies. In the Workspace interface, she can easily view this data for individual companies via the VCHAINS app and export it to Excel. However, manually exporting data for all 538 companies one by one is not practical. She tried to retrieve…
-
Eikon API (or equivalent) without desktop application
I'd like to be able to use ek.get_timeseries() or ek.get_data() methods without the constraint of the application running in the local desktop. Is there a way? Would RDP be more suitable for the task? If so, can I obtain with RDP the same data as with the eikon API? thank you
-
Historical Implied Volatility Surface - EIKON API or RDP
Hello, I would like to pull IV timeseries as a function of moneyness using some Python API package like eikon or RDP.
-
Error on handshake
My code starts like this: import eikon as ek ek.set_app_key("my_key") I never got any errors. However, lately it hasn't been working anymore and I'm getting the following error: 2026-02-05 10:15:43,992 P[32556] [MainThread 44800] Error: no proxy address identified. Check if Eikon Desktop or Eikon API Proxy is running.…
-
Eikon Data API key not working
I have just installed the LSEG Workspace app for MacOS, and I am trying to connect to the Eikon Data API through Python (3.14). I seem to have a connection error. Initially, the error message said "No proxy address identified". I then followed the trouble shooting instructions…
-
How do I get historical management earnings per share forecasts?
Hi all, I want to analyze historical (quarterly) earnings per share forecasts from the management. How and where do I find them in the workspace or in Datastream? Thanks in advance and best!
-
Hello team how to bypass the TOP=10,000 limit in Workspace API CODEBK?
import refinitiv.data as rd rd.open_session() rd.discovery.search( view = rd.discovery.Views.GOV_CORP_INSTRUMENTS, top = 10000, filter = "((DbType eq 'GOVT' or DbType eq 'CORP' or DbType eq 'AGNC' or DbType eq 'OMUN' or DbType eq 'OTHR') and IsActive eq true and (RCSCountryGenealogy in ('G:DE')))", select =…
-
Eikon Messenger not working
Hi, The messenger app is not working - talking to other traders and not working for them as well. BR, Joshua
-
Corporate Event unique identifier
Is there a unique identifier in Eikon for each corporate action of each company, so that all registered corporate actions could be distinguished from each other?
-
Historical Leavers and Joiners of .SPX
I need a list of Leavers and Joiners at the beginning let say at 01-01-1990 and then have the in and out for the following years in Phyton API. So this need to be done in 2 times : First having the list at special date let’s say 01/01/1990 Second the IN and Out the following years. For sample RIC : .GDAXI To have a…