Can you please help with python code to pull data series for each of the below:
Hi anonymous user ,
This forum is more forprogramming-type queries, rather than content queries. I would recommend you contact the Eikon support team directly via MyRefinitiv. You can ask for the =TRformula in Eikon Excel which can be used to retrieve the data and if theformula is available, we can apply it to the get_data method in Eikon Data API.That way a content specialist can work closely with you to find a way to getthe required data.
Hope this could help and please let me know in case you have any further questions.
You can use CodeCreator (CODECR) application in Eikon Desktop/Refinitiv Workspace to find the fields you're interested
For example, the code from the screenshot above returns the response below
import refinitiv.data.eikon as ekek.set_app_key('DEFAULT_CODE_BOOK_APP_KEY')df, err = ek.get_data( instruments = ['.STOXX50E'], fields = [ 'TR.Volatility10D', 'TR.Volatility30D' ])display(df)
You can also raise a content ticket via MyRefinitiv to confirm the fields to be used to retrieve the data you required.
Thank you for the realized Volatility data, however this is for one data point i.e, only latest value. I need series of data, example like data series for last 6 months or 1 year or 5 years for each day.Also, I do not see implied volatility field for each time horizon in code creator app. I also require this in data series like above for realized volatility. Can you please help ?
Thank you for the realized Volatility data, however this is for one data point i.e, only latest value. I need series of data, example like data series for last 6 months or 1 year or 5 years for each day.
Also, I do not see implied volatility field for each time horizon in code creator app. I also require this in data series like above for realized volatility.
Can you please help ?