-
Empty data using TR.FundNAV and TR.BIDPRICE for the fund IL0051297708 using the Python API?
Why I am getting an empty dataframe when getting the NAVs data using the TR.FundNAV and the Bid Price using the TR.BIDPRICE for the Israeli fund <IL0051297708> using the Python API?
-
Workspace API using LSEG Data Library does not show any result
Trying to pull data by Worksapce API (LSEG Data Libarry, desktop session) returns "Company Common Name", instead of "Toyota Motor Corp" by rics = ['7203.T'] fields = ['TR.CommonName'] df, err = ld.get_data(universe=rics, fields=fields) lseg-data version is 2.1.1 python code, log file and result screenshot is as attached.…
-
Financial data quarterly wrong date?
When doing some data quality checks I found some instances where the "Original Announcement Date" was before the date of some values like Total Assets. I came to reproduce that error in a simple request: from lseg.data.content import fundamental_and_reference fundamental_and_reference.Definition( ["4295859017"],…
-
When should I expect Shares Outstanding to be populating on a new IPO
Hello, I'm in the support organization with AlphaDesk — we use the C# libraries for RDP to retrieve pricing and other fields for securities. Recently we saw that for RIC GOu.TO, which IPO'd on July 24th, calls to TR.CompanySharesOutstanding would not return a value. Shares Outstanding began being populated on Aug 5th —…
-
TR.EPSSmartYield parameters
Hi, I cannot seem to find more information on the parameters for this field and other similar fields. Specifically for "Roll Periods" parameter, what is the effect or True/False. Also for the methodology parameter, what is the effect of the different options IntermSum, StubLTM etc. Some examples to illustrate would be…
-
Python code for 3K ISIN
What I want is to download the data for 3K ISINs. That can be done using Python.if I use python I don't get auto-imputed data. Below is the Python code client is refering import refinitiv.data as rdfrom tqdm import tqdmfor isin in tqdm(isins):try:response =…
-
Are delayed ("/") RICs are supported in RDP company fundamentals requests?
Are any delayed RICs can be used in the RDP Fundamentals requests. For example, can I use a delayed RIC in the endpoint https://api.refinitiv.com/data/company-fundamentals/v1/financial-statements/global/balance-sheet?package=base&universe=/1010.SE ? Thanks
-
Could you please try running the code below on your end to see if the same issue occurs?
Hi Team, Client have raised the below query. Could you please assist on the request. Query: May I ask you to try my code on your side, and see if the bug appears for you as well? It seems from your explanation that RDP is a more reliable backend platform. Why does this bug appear there then? My code again, for your…
-
Different results for same code
Hi team, df = ld.get_data('CK25^2', fields = [f'TR.SETTLEMENTPRICE(SDate={"2025-1-3"})'] ) also, if i run it again it returns correct results any solutions for this? Many thanks!
-
download partial data and error handling
start_date = '2021-12-31' end_date = '2025-07-31' isin = ['INNPCIL2826=', 'INMOFSA1618=', 'INAXBKF0621=', 'INKRNFV1125=', 'INPOTMK3034=', 'INNEEVM3034='] bond_flds = ["TR.ASKPRICE.date","TR.ASKPRICE", "TR.BIDPRICE", "TR.ASKYIELD", "TR.BIDYIELD", "TR.YIELDTOMATURITY", "TR.MODIFIEDDURATION", "TR.AVERAGELIFE",…
-
Prices not available sometimes for the same API and param
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 →…
-
What is the field name whether an ETF tracks an index or not?
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' ])
-
Documentation of all potential field names for more effective lookup of items
Documentation of all potential field names for more effective lookup of items, i am looking mainly for fundamental and price data of equities accessible over Python API.
-
Standardized Fundamentals are Appearing in Company profile but not appearing in Screener & in Exce
I have access to Refinitiv Workspace via my academic account. I can view financials (e.g., Revenue from Business Activities - Total) from company profiles such as RVSB.O. However, when I attempt to retrieve the same standardized fundamental fields using the Screener tool or Excel Add-in formulas, the values do not appear.…
-
Historical Index Membership for RICs
Dear all, I am currently working on retrieving historical data for a set of RICs. While I am able to successfully obtain fundamental data, such as revenue information, I am facing challenges in retrieving historical Index membership Information. Below is the code I have implemented: df = rd.get_data(unique_ric_list,…