Hello everyone, I’m attempting to retrieve historical mutual fund holdings using the following code: However, the table appears as follows: As you can see, the code returns only the RICs from the most recent holdings, not those from earlier dates. I have two questions: How can I retrieve historical RICs for my mutual fund…
I'm trying to extract a few Balance Sheets. I was wondering if i automate this using CodeBook? I saw that I can download them individually, but is there a way to download them all at once ? import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = [ 'JPM', 'BAC', 'C', 'WFC', 'GS', 'MS' ], fields =…
Client query from *** REMOVED *** The below example is only giving me data from 22/07/2024, where XXXXXXXXXX is an appkey set up from APPKEY in eikon. import eikon as ekif __name__ == "__main__":ek.set_app_key(XXXXXXXXXXXXXXXXXXXXX)data = ek.get_timeseries('NOKOIS1YZ=R', start_date='2020-12-31', end_date='2025-04-01',…
Client is using the script intraday_data = ld.get_data(universe=etf_tickers, fields=["TRADE_DATE", "SALTIM","TRDPRC_1", "HST_CLOSE"]) intraday_data.rename(columns={"SALTIM":"TRADE_TIME", "Instrument": "ETF Ticker", "TRDPRC_1": "Intraday", "HST_CLOSE": "Prior_day"}, inplace=True) However, it the time was stuck and did not…
I need time-series data of news sentiment scores for a particular industry. How can I use Refinitiv Data Platform API to get it?
Through the CODEBOOK, we were able to download the FILING REPORT of the companies using Python. However, CODEBOOK no longer works now. It appears the following error AAA ID: GEDTC-904487 What can we do?
I'm needing to extract time series data to update our correlations, and I have got the invalid printing digits 500 error, can you please assist? I'm basically pulling time series data for the last 3 years - I understand that it might be a lot of data, so I will pull it less frequently, I need my API to be unblocked though.…
Hello, I would like to access upcoming sovereign credit rating review dates for certain countries (e.g., "Germany – Fitch – Review scheduled for July 11, 2025") via the Eikon Data API (refinitiv.dataplatform.eikon), if possible. Could you help me with it? Thank you for your support. Best regards,
Hi Dev.Teaam , May I request for your assistance on this Client's query please? Thank you. eikon_data_extractor.py (v4)import datetime as dt import pandas as pd import eikon as ek ---------------------------------------------------------------------1. Conexión (usa tu App Key)ek.set_app_key("") ek.set_timeout(120) Si tu…
How can I get a list of RICs/Companies that have earnings announcements as of a particular date using Eikon API / RDP API? Are there other APIs where this is available?
It looks like you're new here. Sign in or register to get started.