-
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…
-
How can I get German energy continuous intraday data using Eikon?
I want to get German continuous intraday spot prices using Eikon API. How can I do that?
-
Eikon customer unable to synchronize Power BI via Python.
Can't synchronize with Power BI via Python. Below is a simple example of the correct Python coding settings on my computer to synchronize with Power BI. "import pandas as pd data = [['Alex',10],['Bob',12],['Clarke',13]] df = pd.DataFrame(data,columns=['Name','Age']) print (df)" However, when I try to synchronize the code…
-
Retrieving historical bid-ask quotes for bonds
Is it possible to retrieve historical values for the fields "PRIMACT_1" (bid) and "SEC_ACT_1" (ask)? Currently i can only manage to retrieve the live value from those fields through the eikon API. I currently use R for this, but i could also use python, if there is better support for the API there.
-
I am being throttled by the usage limits for the Eikon Data API when I have played fairly
I am using the Eikon API with Python on Windows (with a desktop session). I am instantiating a historic_pricing.Definition class and calling .get_data() to retrieve a time series of hourly prices per RIC. query_definition = historical_pricing.summaries.Definition( universe=refined_rics, interval=interval,…
-
Retrieve historical bond yields for various maturities and governments
Hello, I am trying to retrieve the bond yields for various maturities per country (Germany, Switzerland, Netherlands). I am using the Eikon API in Python, Windows. Essentially, I want to derive the monthly Yield-to-maturity (YTM) for various maturities (1 month, 3 month, 6 month, 1 year, 2 year, 10 year, and 30 year) from…
-
How to use Eikon API to get the bond ric code?
I am using Eikon API to get bond RIC code via ISIN code. I got the correct result for some ISIN codes ( XS2599899064, XS2650765725, XS2657056268), But for several ISIN codes (XS2506532980, SGXZ38592606, XS2507733231, XS2544098127, XS2618052513,SGXZ84200740,XS2649260333), got nothing. Can you give some advice? Thanks. //…
-
get_history stopped working in API (Visual code studio)
Hi, since few weeks ( not sure but I think after upgrading some python libraries like pandas etc.) I have problems with getting data using refinitive API in Visual code studio. for example I get empty df with this simple code: import pandas as pd import refinitiv.data as rd rd.open_session()…
-
Extraction of all the companies dividend data without listing in instruments. Is it possible ?
Hi, I have been trying to extract dividend data for all of the companies in the database. However, it seems cannot be done without listing the instrument. Is there some way that I could do that ? Thanks in advance
-
Historical CDS Data for all S&P 500 firms
Hello, I want to export historical data on 3-year CDS spreads for firms included in the S&P 500 index, with an annual snapshot as of March 31st for each year from 2014 through 2023. As I am new to working with financial data sets, I would greatly appreciate a step-by-step guide on how to access and export this specific…