-
Getting error for TR.IndexJLConstituentRIC data item
Over the weekend, the outputs to TR.IndexJLConstituentRIC are no longer accessible and produce an LDError, such as "LDError: Unable to collect data for the field 'TR.INDEXJLCONSTITUENTRIC.CHANGE' and some specific identifier(s)." Please have this looked into at the earliest and provide an update.
-
Codebook Python missing results
In Codebook Python the command df=rd.get_data(['AAPL.OQ','LVMH.PA','APX.AX'], ['TR.ISINCode','TR.CompanyMarketCap.currency','TR.EV.currency'], parameters={'curn':'NATIVE', 'NULL':'Blank'}) returns <NA> for field TR.EV.currency. This was working all the time without problem until today when it failed. The problem was…
-
rd.get_data returning None
Hello I have properly opened a session with rd.open_session (desktop session) but my code is not returning anything. import refinitiv.data as rd rd.open_session(app_key = MY_APP_KEY) data = rd.get_data(universe = ['0#SPXW*.U'], fields = ['PUTCALLIND']) On the other hand, the eikon api returns me data…
-
I started having this issue recently
I started having this issue recently, and I do not know why. price_df = ld.get_data( universe=ric_list, fields=['TR.PriceClose.Date', 'TR.PriceClose'], parameters={ 'SDate': '2010-01-01', 'EDate': '2025-01-01', } ) LDError: 'dict' object has no attribute 'url'. I am also having trouble to start a new session (it normally…
-
Workspace Codebook - Brokers Estimate Data
Hello team, I'm using Codebook to retrieve Brokers Estimate data for companies. With reference of DIB, I get some codes like this below,.. df=ld.get_data( universe=universe, fields=[ 'TR.EPSEstValue(SDate=0,EDate=2,Period=FY1,Frq=FY)', 'TR.EPSEstValue(SDate=0,EDate=2,Period=FY1,Frq=FY).rfperiod',…
-
Historical RICs on Mutual fund holdings
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…
-
How to get all data from Corporate actions calendar by using Python
-
CodeBook Crontab or something similar for scheduling Python scripts
Hi everyone, could you please let me know if there is a way in CodeBook or anywhere else in Workspace to configure a task that would run a Python script at a specific time every day? Currently, I download the data manually by running the code, but I would like this process to be automated and executed daily at the same…
-
How to download documents from Research Filings?
Hello team, raising this query on behalf of client Llohann Dallagnol Speranca I have gotten a handful of URLs though the "TR.CSRReporting.esgsourceurl" field. However, most of the recent ones are files in http://filings.research.refinitiv.com. I would like to be able to download those reports as well. How can I do that?…
-
Scheduled Runs in Codebook
Is it possible to schedule runs at specific times in codebook? Alternatively, can I access get_data in refinitiv.data.eikon outside of codebook or is that only possible within notebook? With get_data I get exactly the data I need from within notebook, now I am looking for a way to schedule this process, either within…