I am currently using the following code to extract the RICs of the ETF index IEAC.L: indices = ["IEAC.L"] # ========================= # SECTION 3: GET CONSTITUENTS # =========================def get_constituents(index_rics): all_constituents = [] for index in index_rics: print(f'Extracting constituents for {index}') result…
I am creating a historical database to track track the relationships between fund managers and the ultimate parent of a fund. To do this, I am using the LSEG Python API. I have been testing this procedure using the rd.get_data() function. This allows me to retrieve the name and PermID of the ultimate parent for a list of…
Government bonds, for example RIC = 'GB10YT=RR', which is the 10 Year Government Bonds of the UK. I am trying to grab its daily data. At first, I am using fields=['TR.OpenPrice.date','TR.OpenPrice','TR.HighPrice','TR.LowPrice','TR.ClosePrice'] in my code. But The close price showed nothing. Then, I changed the fields to…
Hi, I am trying to use the EDP API and have created the .json file with credentials. However, I keep getting the same error: KeyError: 'sessions.platform.rdp' NameError: Cannot open session platform.rdp This session is not defined in the configuration file Please refer to attached snippets. In the .json file, I also tried…
I have been reviewing the documentation titled LSEG_API_VESSEL_INFO.pdf in shipping APP-tool, and I came across a section that I would appreciate some clarification on. Specifically, on page 9, the example code related to the ld.discovery.search function appears to be incomplete—approximately half of the code snippet is…
Hello, Is it possible to get Auction fields: OPN_AUC and OPN_AUCVOL from Summaries request as follows? is it possible to get OPN_AUC and OPN_AUCVOL from Summaries request as follows? stream = Summaries.Definition("1COVG.DE") .Fields("DATE, OPEN_PRC, INT_AUC, OPN_AUC, CLS_AUC, CLS_AUCVOL, OPN_AUCVOL, INT_AUCVOL")…
I am starting to use ChatGPT. The problem with ChatGPT is that it has most of the time not the accurate data (e.g. unemployment rate us, etc.). Question: is it possitlbe to link ChatGPT to the datas within WS? (on behalf of client)
Hello all, I am running the following query: price_df = ld.get_data( universe = instrument_list, fields = ['TR.PriceClose.Date','TR.PriceClose'], parameters = {'SDate':start_date, 'EDate':end_date, } ) # Transform to polars price_pl = pl.from_pandas(price_df) where instrument_list = ['.SPX'] I am getting this strange…
Please find attached a full screenshot of the issue I encountered while attempting to retrieve 1-minute OHLCV data for the RIC AMC.N using the Refinitiv Data Library for Python. The error message NA may indicate missing data permissions, despite a successful session connection. User id - S2739087@ed .ac.uk
It looks like you're new here. Sign in or register to get started.