The most recent content from our members.
I am raising this on behalf of client. Why does this script/parameter format does not work? import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['AAPL.O'], fields = ['TR.F.TotRevenue'], parameters={'ReportingState': 'Orig'}, ) Kindly note that I have given this below script (codebook) to the client…
Hi, We're using the Refinitiv Data library in a way similar to this example to create a subscription to SQS and poll news from the queue. Could you please let us know if there is a way to monitor created subscriptions or sessions across different machine IDs? There is a queue manager, but it only has access to…
You'll find below the error message generated. It seems there is a problem with Numpy dependency. The version of Numpy is 2.1.2 . ---------------------------------------------------- PS C:\Users\VVMD250\OneDrive - LA POSTE GROUPE\PYTHON> pip install lseg-data Requirement already satisfied: lseg-data in…
I have a list of firm LEIs and need to obtain PermIDs and Deal Advisor Codes for those LEIs to download basic information about the Equity Deals in which these firms were involved as Bookrunners, Co-Managers, or Financial Advisors. Can I do that in the CodeBook environment?
Hi, We're using the Refinitiv Data library in a way similar to this example to create a subscription to SQS. Could you please share the recommended approach to monitor the following aspects: * Verifying an active subscription to ensure we continue receiving news. * Confirming that the queue is operational and live. In…
Here is the code I did to pull but there is only one date: import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['ABI.BR'], fields = [ 'TR.NumEstRevisingUp', 'TR.NumEstRevisingDown', 'TR.PriceClose.date' ], parameters={ # 'Curn': 'CAD', # 'Frq': "1D" 'SDate': '-5', # "2023-11-01", 'EDate': '0', #…
I'm attempting to access historical data for a set of companies using the LSEG Data Library for Python, but I am struggling to find the right methods. Particularly, I'm looking to find cash flows for previous years given a company's name. Is this achievable via this API and if so, what is the correct methodology? Thank you!
import refinitiv.data as rd index_ric = '0#.KS200' summary = rd.get_history( universe = index_ric, fields = [ "TR.CompanyMarketCap", # "TR.GICSSector", ], start = "2024-06-01", end = "2024-06-30" ) summary When running the above I get the following error RDError: Error code -1 | Unable to resolve all requested identifiers…
Hello. I assume there is a bug in the method rd.dates_and_calendars.date_schedule . When the end date is a public holidays, it returns the day after, if start_date == end_date. Please, check the code below and advice. Thanks Expected behaviour: the list should be empty If I change the start_date to set it to a working day,…
Is there a list of all possible filters for a search on the LSEG Python Data API? It seems that all of the data items in the DIB don't exist via API. My goal is to execute a search for all of the subsidiary companies in a particular region but am having trouble finding the right filter to determine if a company has a…
It looks like you're new here. Sign in or register to get started.