-
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…
-
Time out error when downloading bonds from the govsrch
Dear community, I am trying to download bonds information data from the govsrch using the following code: # Define the start and end dates start_date = '2025-01-01' end_date = '2025-06-30' # Generate a list of dates between the start and end dates date_range = pd.date_range(start=start_date, end=end_date) # Convert to a…
-
THE CODEBOOK NO LONGER WORKS
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?
-
How can I open a new python project
How can I open a new python project Unexpected error while saving file: Examples/07. Portfolio Analytics/untitled.py [Errno 30] Read-only file system: '/home/jovyan/Examples/07. Portfolio Analytics/untitled.py When I try to open a new python project, this prompt message shows up Raised on behalf of external client
-
Retrieve historical Ultimate Parent given a LEI
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…
-
Jupyter notebook on Codebook
Hi Dev Team, I would like to receive an updated Jupyter notebook on Codebook for bonds whereby I can extract the historical price and yield with the associate events. Thank you for your assistance.
-
News story summary
Hi, I am trying to download country specific news data using codebook and have gotten to the stage of storing the news story in either dictionary or dataframe format. My question is, is there a function that allows for summaries of news to be downloaded? Or do I have to perform manual filtering for each news story and…
-
Access to Portfolio - Error
Hello, I am trying to access through Codebook a portfolio I created but am failing. I am not even sure whether I can access any portfolio at all. Could you help me with this problem ? I have already made sure that the ID given is spelled correctly. Thank you, Garance
-
Can you covert the below excel formula to Codebook query?C
Can you covert the below excel formula to Codebook query? =@RDP.Data("SYBA.DE","TR.FundHoldingName;TR.FundHoldingRIC;TR.FundLatestFilingDate;TR.FundNumberOfShares;TR.FundNumberOfSharesChanged;TR.FundPercentageOfFundAssets","EndNum=2000 CH=Fd RH=IN")
-
How can I download from the api CWE energy fundamentals?
EC ens op0 and the rest fundamentals: Wind Solar Demand, and so on. With CODEBK.
-
Is this possible?
I am from helpdesk and checked with our Specialist. We do not see a way to have this done through codebook. Then, I was advised by our Specialist to check this with Dev Team instead, please see below for the query: I would like to produce a daily earnings calendar for S&P 500 companies in codebook. The calendar would show…
-
How I can download the following data for multiple companies (approximately 60,000) over a period o
I am reaching out to ask how I can download the following data for multiple companies (approximately 60,000) over a period of 20 years in an automated way using the Codebook. I want to download information on Institutional Ownership. More specifically the information marked in yellow in the screenshot bellow. Could you…
-
How to use symbol_conversion.Definition for a specific date?
I'm using the following to convert from ISIN to RIC: ld.open_session() response = symbol_conversion.Definition(symbols = ['TH8319010Z06'], from_symbol_type = symbol_conversion.SymbolTypes.ISIN, to_symbol_types = symbol_conversion.SymbolTypes.RIC, asset_class = symbol_conversion.AssetClass.EQUITIES, ).get_data() eikon_map =…
-
Convert Bonds Issued Amounts in EUR using exchange rate at Issue Date
Hi all, I would like to API request to retrieve a list of bonds, with the outstanding amounts converted to EUR based on the exchange rate as of the issue date. Currently, the GOVSRCH function in Workspace performs conversions using the exchange rate as of the previous close. Can you help me? Best Giacomo
-
Quesstion about RIC code of JGB
I cannnot take bid ask price of JGB by the code attached below. I would appreciate it if you could tell me the reason and solotions to correct this problem. I think this may happen because I cannot take appropriate RIC code of JGB. import lseg.data as ld from lseg.data.content import symbol_conversion ld.open_session()…