-
Is it possible to get information of all share classes of a company using Refinitiv.Data on Python
Hi, I'm wondering if it's possible to get the information (e.g. price, volume) of another share class given a specific share class. say, GOOGL.O, Google, on GOOGL.O BUS page, there are 6 types of shares, and they're GOOGL.O, GOOG.O, GOGL34.SA, GOGL35.SA, GOOGLm.BA say given the RIC code - GOOGL.O, is it possible to obtain…
-
How to accurately get data between your customised periods specified
Hi everyone, One thing that I am confused with regarding get_data_async, is that, depending on the datapoints I try and retrieve, I can't seem to get data within the scope of years that I specify. Say I have this for example: current_year = datetime.today().year start_year = current_year - 8 async with semaphore: #…
-
Obtaining Years alongside retrieval of Fundamental Data Asynchronously
Hi everyone, I have a question regarding the Date column not coming with get_data_async function calls. When I am making calls like so: roa_datapoints = await content.fundamental_and_reference.Definition(universe=[f'{ric}'],fields=["TR.F.IncBefDiscOpsExordItems","TR.F.TotCurrAssets","TR.CommonName"],parameters={"SDate":…
-
Python refinitiv fundamental returning wrong data -- very weird an incoherent behavior
I'm using the Refinitiv package in python, following code, and receive wrong data back, also depending on the parameters. The code: import refinitiv.data as rd from refinitiv.data.content import fundamental_and_reference rd.open_session() fields = [ 'TR.F.TotRevenue.fperiod', 'TR.F.TotRevenue', 'TR.F.COGSTot.fperiod',…
-
Industry Median fields not working
Fields related to the median industry (found in Codecreator) are giving me error 414. Is it something related to these fields or what is the reason? Any alternative would be appreciated. from refinitiv.data.content import fundamental_and_reference fields = [ 'TR.MedianIncAvailToComExclExordItemsMargPct',…
-
API for get_data not working
Hi, the following query is not working at the moment: rd.get_data( universe=['LSEG.L', 'VOD.L'], fields=["TR.AdjmtFactorAdjustmentDate", "TR.AdjmtFactorAdjustmentFactor", "TR.AdjmtFactorAdjustmentType", "TR.AdjmtFactorUnderlyingEventId", "TR.CACorpActEventType"], parameters = {'SDate': '2010-01-01', 'EDate': '2024-06-1'} )…
-
ReadTimeout('The read operation timed out')
I want to get the constituents of the ETF IEUS.DE with this part of a Jupyter Notebook: rd.open_session() # Get constituents for ETF response2 = fundamental_and_reference.Definition( universe = "IEUS.DE", fields = ["TR.ETPConstituentRIC,TR.ETPConstituentName"], ).get_data() response2.data.df I get the error An error…
-
Missing data for SP500 using fundamental_and_reference.Definition get_data
Am looking to download the following fields (list below) for SP500 index constituents, from 1995 to yesterday, daily data. Am using the following import refinitiv.data as from refinitiv.data.content import fundamental_and_reference import datetime rd.open_session() growth_fields = ["TR.EPSMeanEstLastToNextYrGrowth",…
-
EPS Fundamental data to retrieve via Workspace
hi, previously we used eikon excel formula to retrieve these data:…
-
How to access all portfolios, monitors, lists through RDP API (in python)
I may have overlooked some documentation but ... here is what I do and try to do * I manage my portfolios, monitors and watch lists in WORKSPACE (app, on Windows and Mac OS) * I'd like to access a complete list of all those items in python, that is something like: ek.get_data('PORTFOLIO([ ALL ],[PORTFOLIO.CURRENCY,…