-
Hi, does anyone know how i could retrieve Implied and historical volatility for Soybean futures c...
...hain? Tks Hi, does anyone know how i could retrieve Implied and historical volatility for Soybean futures chain? Tks
-
Get stock list into readable format for API price download
Hi, got a list of 250 stocks - trying to call the API using the formula: get_pricing = ek.get_timeseries(RIC_IDS, fields='CLOSE',start_date='2023-09-28',end_date='2023-09-28') How do I get RIC_IDS into a readable list? Is it the wrong formula? API keeps delivering error message
-
Eikon to Workspace API
Hi, i currently use Eikon Desktop and have a C# application that communicates with the API. The following code is used: EikonDesktopDataAPI.EikonDesktopDataAPI m_edapi = new EikonDesktopDataAPI.EikonDesktopDataAPI(); EEikonDataAPIInitializeResult l_apiInitResult = m_edapi.Initialize(); Right now I'm trying to migrate to…
-
Analyst estimates on semiannual basis.
I'm getting the correct data for quarterly estimates. df,err = ek.get_data( instruments = ['MSFT.O'], fields = ['TR.EPSMean.periodenddate','TR.EPSMean','TR.EPSMean.date','TR.RevenueMean', 'TR.NetProfitMean'], parameters={'SDate':'2023-01-01','EDate':'2023-10-23','Period':'FQ1'} ) df But for UK companies which are giving…
-
Retrieve PAR_AMT field from Refinitiv Eikon API via Phyton
Dear support, I'm trying to recover the PAR_AMT field from Refinitiv Eikon API using Phyton as language. I could recover any record by using the instrument ISIN code as input. Thus, as suggested by Refinitiv support, I try to retrieve the RIC Code to be used as input to query the PAR_AMT field, but the result is the…
-
different stuff coming back from eikon.get_data() vs. refinitiv.data.get_data() ... why oh why?
I'd really like to move on from eikon as it is very temperamental ... (400, 500 errors randomly). But, first thing i want to move away from, getting contents from portfolios, any which way i try, i cannot get the CF_CURR or CURRENCY back from refinitiv.data when downloading my portfolios (or watchlists). All packages up to…
-
EPS Mean by date
Hi I'd like some help on Earnings Per Share (EPS) Mean please. I'm running the below, which is returning Mean EPS, but it doesn't appear to be returning a date value for each row (snapshot below). Any idea how to solve for this? I've looked in DIB, but no luck. eps2_df = rd.get_data( universe = ['DGE.L'], fields =…
-
Can I get Investor portfolio history report (INVPORT) via Eikon API
I want to pull out data in the snapshot using Eikon API. Thanks in advance
-
How to automatically download a list of domestic investment trusts using python
Hi,I want to automatically download a list of domestic investment trusts list everyday using task scheduler. I'd like to run it by python. so I got embeddable python. I think local batch.bat files should call that local test.py. <C/:Tmp/test.py> import refinitiv.dataplatform.eikon as ek import numpy as np…
-
Accessing Equity Deals from DSCREEN
I'm able to pull in M&A transactions from DSCREEN using the below API call: df, err = ek.get_data('SCREEN(U(IN(DEALS)), BETWEEN(TR.MnAAnnDate,19991031,20001031), CURN=USD)', fields=['TR.MnASDCDealNumber', 'TR.MnAAnnDate', 'TR.MnARankDate', 'TR.MnARankValueIncNetDebt(Curn=USD,Scale=6)', 'TR.MnATarget,TR.MnATargetPermId',…