-
Jupyter Notebook Errors
The Jupyter Notebook is running on the Refinitiv server side. Jupyter is not even installed locally and never has been, yet CODEBOOK was working fine on the machine up to a few days ago. This also does not explain the errors with permission or authorization. Here are the errors I'm seeing: 403: Forbidden The error was:…
-
RDError: Error code -1 | The access to fields(s) denied.
Hi Team, I'm assisting User regarding an error in API. I'm suspecting this is permission issue but would need further explanation on seeing inconsistencies when using a 'desktop' session. The client is accessing the refinitiv API through a platform session. When she try and pull data on managed funds and ETFs I receive a…
-
ReadTimeouts when Running In .py file and not in Jupyter Notebook
Hi everyone, When I run the following requests in the syntax that you see below , in a Jupyter Notebook, the requests do not timeout, however, if this is run from a Python file, I see that it is more prone to ReadTimeout errors. Is there a way that I can go about fixing this error, and know why this is occurring? tasks =…
-
Corporate Bonds: Retrieving Dates of Coupons paid this year, and other bond data
Hi everyone, I have 2 questions regarding the retrieval of Corporate Bond data with the Refinitiv Data Library in Python. I am currently trying to retrieve the coupon rate, next payment date, and coupon payment frequency, with the following formulae: 'TR.CouponRate','TR.FiNextPayDate','TR.FiCouponFrequency' I checked that…
-
How to efficiently and briskly retrieve datapoints for all SNP 500 RICs
Hi everyone, I am trying to retrieve some Fundamental and Reference data for all of the SNP 500 stocks. These datapoints include values such as Income before Extraordinary Items, EBIT, Capital, etc. Now, I am trying to asynchronously retrieve all of this data. At first, I tried to loop ethrough the list of the RICs of the…
-
Certain Refinitiv Data requests work individually, but not concurrently (Python)
Hi everyone, I have an issue regarding concurrency with functions using get_data(). My workflow is as such where I have multiple requests of get_data() and get_history() in different asyncrhonous functions that I am executing concurrently using Python's `asyncio` library. Now, the issue is, when these functions are…
-
ReadTimeout on simple requests
I'm just getting started with the Refinitiv Data Library and trying to go through some of the examples contained here: https://github.com/LSEG-API-Samples/Example.DataLibrary.Python/blob/main/Examples/2-Content/2.04-ESG/EX-2.04.01-ESG.ipynb However, I get stuck on even the most basic ones like: response =…
-
How to get company name, GICS Industry Group Name, 260 day volatility, and market cap of Russell ...
...3000 constituents using API? Hi team. I have a client who needs to pull company name, GICS Industry Group Name, 260 day volatility, and market cap of Russell 3000 constituents using API. I tried to pull this data using Codebook and was successful. Please see screenshot below. However, when client tried it using Python…
-
Trying to Access Refinitiv API through JupyterNotebook, get "Port number not identified" error
I am trying to access the Refinitiv API through Python, using JupyterNotebook. However, when I try to do so, I get the error message "Port number was not identified". I followed the instructions in this link: https://developers.lseg.com/en/article-catalog/article/eikon-data-api-python-troubleshooting-refinitiv When I get…
-
Besides CodeCreator, is there an overview of all kinds of different data that can be accessed usi...
...ng the Eikon Data API with Python? I'm a complete beginner in programming and I'm generally still struggling with Python and the programming environment, but I've been able to pull some data using the Get started guide. However, I still lack a complete overview of all possible data that I can query via Eikon. The…
-
Problems and disagreements when extracting data in Jupyter outside the Codebook environment.
Hi! I notice a problem when I pull data in my Jupyter notebook, and when I pull the same data with the same way on the CodeBook environment, this problem does not appear. However, for more flexibility in my work, I need to get these data outside the CodeBook environent. Below you can see two prints that ilustrate the…
-
cannot find etf ticker in codebk
I am attempting to download the historical prices for the following assets: GDAXIEX.DE, IBTLl.DAp^G21, LP68048431. I am using the usual command: rd.get_history(universe=asset_name, fields="BID", interval="1D", start=start_date, end=end_date) However, I am encountering an issue. It seems that the asset names I need to use…
-
Extracting and Matching Data from an Excel file with Eikon API
I have an excel file containing a companies/employee names, their patent applications and year of filing. However, now I need the financial information for these firms for the given year (from eikon), as listed in the excel sheet. The main problem i have is that the names in the excel sheet are not an exact match with…
-
Error: 'NoneType' object has no attribute 'jason'
Hi Team, I'm running the following script in Codebook and works fine: ----- import refinitiv.dataplatform as rdp import plotly.graph_objects as go import pandas as pd import numpy as np from datetime import datetime from dateutil.relativedelta import relativedelta…
-
Pricing a bond with a modified yield curve
Hello, I have downloaded the yield curve of a bond benchmark using the following import refinitiv.data.eikon as ek curve = ek.get_data('0#ITXZ=R',['MATUR_DATE','PRIMACT_1']) Then I modify the yield curve by applying a parallel shift of 25bp via: curve['Shifted_Rate'] = curve['PRIMACT_1ì] + 0.25 Now I want to reprice a bond…