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 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:
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…
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 =…
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…
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!
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 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…
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…
I am using workspace, is there way i can query the news headline using python ?
Hi I am trying to get a list of all equities in the US - primary listings only - and excluding OTC stocks. Below is what I have now: DB4 = rd.discovery.search( view = rd.discovery.Views.EQUITY_QUOTES, top = 10,…
It looks like you're new here. Sign in or register to get started.