-
How do i use the api to extract market overnight best and worst performers ?
I am coding in python with your desktop eikon api to try and extract the latest leaders and laggers across different asset classes inc fx, stocks, bonds, etf and crypto assets but failed I also trying to extract based on news but theres only broad economy news which i cannot zoom into asset specific .. how do i screen for…
-
I would like to automatically retrieve if possible via Eikon API in python the list of all the data
Hi, I would like to automatically retrieve if possible via Eikon API in python the list of all the datapoints involved in the calculation of E - S and G pillars (e.g TR.PolicyWaterEfficiency, etc). I need the whole list of datapoints used in the calculation for all kind of sectors
-
Raising obo a client: pulling data using LEI
Why does this code not work?? df, err = ek.get_data(['M312WZV08Y7LYUC71685@LEI' ,'5493004D82XDFVPWQJ91@LEI' ], ['TR.TotalAssetsReported','TR.TotalAssetsReported.currency']) df I need a script that fetches tickers or total assets/ratings/PD data from a list of LEIs (which may be non-public or small). There must be a way,…
-
need to connect to workspace via RStudio.
I need to connect to workspace via RStudio. Il installed Refinitivr package and i run this command with my API Key found in APPKEY : RD <- RDConnect(application_id = "<app key>", PythonModule = "JSON") I get this message : Erreur dans RefinitivJsonConnect() : Please supply Eikonapplication_id. Screenshots:
-
Help with Handling Timeout Errors in Python API Workspace
Hello, I'm using the API Workspace via Python, and sometimes I encounter the following error message: "An error occurred while requesting URL(). ReadTimeout('timed out')" I want to handle this error using except Exception or except TimeoutError, but it doesn't seem to be recognized as an error by Python. As a result, the…
-
'8729.T' RIC Historical Pricing issues
Why does import lseg.data as ld ld.open_session() start = '2024-09-23' end = '2025-03-24' ld.get_data( universe=['8729.T'], fields=['TR.ClosePrice', 'HST_CLOSE', 'CF_CLOSE', 'TR.PRICECLOSE', 'TRDPRC_1'], parameters = {'SDate': start, 'EDate': end}) and import lseg.data as ld ld.open_session() start = '2024-09-23' end =…
-
Exact API formulas / endpoints
What function is more suitable for retrieving historical prices? Gas hub futures & spot prices. PEG → PEGMc1 THE → THEMVc1 PVB → PVBMc1 PSV → PSVMc1 NBP → NBPMVc1 2. Exact API formulas / endpoints Which are the exact equivalent endpoints in the Codebook API (or Enterprise API, if different) that replace the historical…
-
How to retrieve MICs for single RICs
Hello, I have a dataframe comprising all the RICs for a number of ISINs, and I would like to know how I can retrieve the MIC of each RIC using Python. Using the search API I was only able to retrieve the LSEG codes for exchanges and trading venues, not the official MICs. Thank you!
-
Ownership Contact Email Address
Why are there certain companies wherein Contact Email Address is not aligned in Python. Sample companies are OILI.NS’ , ‘ASPN.NS. Data is aligned in both excel and product. Code used : import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['OILI.NS'], fields = [ 'TR.FirmInvestorId(SDate=2025-08-31)',…
-
When retrieving historical index constituents of the index SP500, there is only delivery of today's
When retrieving historical index constituents of the index SP500, there is only delivery of today's SP500 constituents irrespective of the date being enter as parameter, e.g. Google become SP constituent in 2006 but it is show as SP stock in previous years. This is misleading. Getting historical constituents is required to…
-
could you please provide me an function exemple in Python code for import EURUSD Spot price from 03
Further working on the query please find the below python script to get the data. import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['EUR='], fields = ['TR.BidPrice'], parameters = { 'SDate': '2024-01-03', 'EDate': '2025-09-15', 'Frq': 'D' } ) display(df) Client has got the below error. Can you…