Questions tagged [refinitiv-eikon-api]
18 questions
4
votes
5 answers
Accessing Reuters data in Python
I am currently successfully downloading live Bloomberg market prices, as well as historical series, using the service's COM API and win32com. Does anyone have any experience doing the same for Reuters live and historical data into Python?
I know…

Thomas Browne
- 23,824
- 32
- 78
- 121
1
vote
2 answers
How to retrieve all associated company RICs for a specified exchange RIC using the Refinitiv Eikon API?
Using the Refinitiv (formerly known as Thomson Reuters ) Eikon Data API, does anyone know how to quickly return all associated company RICs for exchanges such as Oslo Stock Exchange?
The RIC for Oslo Stock Exchange seems to be .OSEBX
And…

vestland
- 55,229
- 37
- 187
- 305
0
votes
0 answers
Refinitiv-Eikon python API returns 404 | client error
I have been trying to make a python script that get's data from Refinitiv-Eikon but i keep getting a 404. It looks like the page it tries to reach does not exist. But there is nothing i seem to do wrong. I use the wealth management version of…

Niek H.M
- 3
- 3
0
votes
0 answers
Refinitiv list of stock symbol
I am using Excel stock data in Mac and able to find the stock/mutual fund symbols. I understand stock data is coming from "Refinitiv".
I am not able to find the Mutual fund "Axis Nifty IT Index Fund" in the excel. Also, i am trying to find this…

Jey
- 2,137
- 4
- 22
- 40
0
votes
1 answer
How to get date as out of ek.get_data together with value in Refinitiv Eikon?
I am trying to retrieve historical Book Value per Share using the Refinitiv Eikon API. Apart from the value, I would also like to output the date corresponding to the value.
I am currently able to output the values:
import eikon as…

deblue
- 277
- 4
- 18
0
votes
0 answers
Streamlit issue when using eikon package : RuntimeError: There is no current event loop in thread 'ScriptRunner.scriptThread'
I have a code that retrieve data from the Eikon package, the code works just fine for what i want to do but the next step is to have a streamlit display and here the problem comes :
RuntimeError: There is no current event loop in thread…

Hugo MISZCZAK
- 13
- 2
0
votes
1 answer
Retrieve more than 10000 rows from refinitiv workspace
I'm trying to retrieve all the bonds from refinitiv workspace. I want to extract all the 250000+ bonds and actually I don't know how to do this. Here's the code I wrote:
import refinitiv.dataplatform as rdp
import refinitiv.dataplatform.eikon as…
0
votes
0 answers
Creating a mock server that will response with a specific data on a specific url/uri as if it arrived from external server, using python
I have a data provider server that response with some faulty json string to refresh token (HTTP). This cause my software to disconnect from the web-socket (different url).
The desired behavior is to retry refreshing and if fails than to reconnect…

Ori Kovacsi-Katz
- 11
- 3
0
votes
0 answers
Replace deprecated code from wincertstore package in python package
I am trying to work with the python library provided by Refinitiv on github. I came across the issue that the code in DS_Response.py [1] uses a deprecated package and I would like to fix the code, so that I could use it without resorting to the…

hannes101
- 2,410
- 1
- 17
- 40
0
votes
0 answers
Is there a way to filter out the data that isn't within the specified date range in python (eikon api)
I am extracting 10-year Rolling Return data from a universe of mutual funds from Eikon in the Jupyter Python environment, where some funds have partial date between the 10-year period (in this case 2012-09-30 to 2022-08-31) such as return data…

cj4641
- 1
0
votes
1 answer
Creating a Dataframe from an appended list (with datetime)
Due to API restraints I am sending a long list of Instruments to an API in batches and the appending the results to a list. When I only use the API call, the output is a dataframe I can work with. However when I try to split into batches and the…

FinQbeginner
- 3
- 1
0
votes
1 answer
Connect eikon/refinitiv from RStudio
I have not found a solution posted how to download data from eikon/Refinitiv (I have my login/password) from my RStudio session that runs on a Unix server?
"eikonapir" seems to not work since it seems to required to run on an Windows OS.
Any help is…

Grillo
- 75
- 6
0
votes
1 answer
Quickest Way to synchronously refresh TR-Formulas in VBA
Thanks to the help in this forum, I got my SQL-conncection and inserts working now.
The following TR-formula is used to retrieve the data from Excel Eikon:
@TR($C3,"TR.CLOSEPRICE (adjusted=0);
TR.CompanySharesOutstanding;
TR.Volume;
…

Christian Kühner
- 3
- 1
0
votes
1 answer
Eikon API - ek.get_data for indices
I would like to retrieve the following (historical) information while using the
ek.get_data()
function: ISIN, MSNR,MSNP, MSPI, NR, PI, NT
for some equity indices, take ".STOXX" as an example. How do I do that? I want to specify I am using the get…

user9875321__
- 195
- 12
0
votes
0 answers
How to correct python ValueError
This is most likely very simple to correct, unfortunately, I'm new to python and need a bit of help in how to go about it.
I run the following code...
import eikon as ek
import pandas as pd
import xlwings as…

rohrl77
- 3,277
- 11
- 47
- 73