Getting different results when fetching Prices using python code via the Fundamental and Reference module available under content layer in lseg.data, for the same params. What is going wrong? Please help in getting consistent and correct results. API used →…
I am trying to run the code below but I'm only getting blank result or a black square as a result: import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = [ 'FDBc1' ] , fields = [ 'CF_CLOSE', 'CF_VOLUME', 'HST_CLOSE', 'HST_VOLUME' ] ) display(df) and import refinitiv.data as rd rd.open_session() df =…
May I know is there a validation process on the pricing templates in the codebook? (e.g. FX forward, FX option, etc.)
I'm using the Python API. I'm looking to fetch a boolean whether ETF tracks an index or not. Tried ld.get_data(universe=['XLE'], fields=[ 'Index Tracking' ])
In Codebook, the Python commands import refinitiv.data as dl dl.open_session() RICs=['MMM.N','BAG.L','AOS.N','AAON.OQ','ABDP.L','ABT.N','ABSO.ST','ACN.N','ARBN.AS','ADSGn.DE','ADBE.OQ','ADYEN.AS','ABNB.OQ','ALRM.OQ']…
Hi ! How does one use the TR.CoRRevenueFraction I am trying to retrieve the % of revenue a list of companies make in a list of specific countries. My countries are stored in List_Of_Countries.xlsx, while my ISINs in List_Of_ISIN.xlsx. I've tried the usual way of retrieving data through the API and CodeBook, but it seems…
We use the below formulae to get the maturity of the RIC code using LSEG excel plug in. We would also like to understand how this could be downloaded via the API? =RDP.DateCalcPeriod($”29/07/2025),MID(USD3MD=,4,2),,LEFT(USD3MD=,3),"ENDDATE")
I trying to use lseg-data package in python i inserted my credentials and API Key : session = rd.session.platform.Definition( app_key = credentials.APP_KEY, grant = rd.session.platform.GrantPassword( username = credentials.RDP_LOGIN, password = credentials.RDP_PASSWORD ), signon_control=True ).get_session() And then…
Hi ! Hope this find you all well. What about looking for a specific list of countries and multiple ISINs. My code should work but in fact doesnt. Could someone kindly help me. import refinitiv.data as rd import pandas as pd rd.open_session() countries = pd.read_excel("List_Of_Countries.xlsx") isin=…
I'm using a Workspace session to connect to the Data Platform to collect fundamental data for a subset of 1000 firms in my sample. Below is the function call and code (Python) that I use: response = fundamental_and_reference.Definition( df['ISIN'].unique().tolist()[0:1000],…
It looks like you're new here. Sign in or register to get started.