-
Python Query
Hi! I am trying to develop a Python script to get the GPS position of ships from Eikon. I already have an API key, and the problem I am facing when running it is the following: Check if Eikon Desktop or Eikon API Proxy is running. 2024-12-26 08:51:57,091 P[21284] [MainThread 27348] Error on handshake url…
-
Historical data for bid/ask spread for stocks
Hello, I would like to retrieve bid/ask spread for a list of stocks on a specific date historically. But I found it is not possible to directly retrieve in the desktop. Therefore I am considering using Python. Could anyone help me with this? Thanks a lot in advance!
-
Use DSS api from a python call
hi, I have the below code to fetch EOD data via eikon api. I frequently end up with connectivity issues - sometimes no data retireved, sometime partial data retrieved. I have been asked to use DSS api instead. Can you please provide me with a alternate version of ek.get_data()? My code is:-…
-
'NoneType' object has no attribute 'get' error for API data
Hello all, I am trying to download a list of index constituents using the eikon data API, however, i am getting a 'NoneType' object has no attribute 'get' error for this code : import eikon as ek import pandas as pd from tqdm import tqdm # Import tqdm for progress tracking Your Datastream API keyapi_key = 'kEY ' Initialize…
-
error message: Error.EikonError: Error code 400 | Backend error. 400 Bad Request
Hi, I am running code that was once reliable, but now I get a backend error about half the time the code runs. ek.get_data('0#.AORD(2024-01-01)', other_fields+beneish_fields+altman_fields, {'Period': 2024}) other_fields+beneish_fields+altman_fields: ['TR.CompanyFYearEnd', 'TR.F.TotRevenue(Period=2024).periodenddate',…
-
Error code 403: Access Denied
Hi, I am trying to pull real time data via Eikon API using python. But I am getting an error message that states Access denied, although I am running my Eikon desktop parallelly. Can you suggest ways to fix it. SourceCode: ErrorMessage:
-
get data using Eikon Data APIs instead of Rhistory
I'm trying to get market data like using excel formula function(=RHistory), but I found Eikon Data APIs couldn't retrieve the same historical data as the =RHistory excel function. so I'm trying to get a few days of data("OPEN","HIGH","LOW","CLOSE","OFF_ASK") using Eikon Data APIs, but it doesn't work. I tried get_data…
-
How to use eikon's get_data function to get revenue data between a certain sdate and edate
I tried: import eikon as ek new_data_df, err = ek.get_data(['AANC.BO'], ['TR.TotalRevenue'], {"Curn": "USD", "SDate": '2024-01-01', "EDate": '2024-11-22', 'Frq': 'D', "Scale":8}) But the data it returns is very strange, there are only two kinds of numbers
-
How to configure CIAM RTO v2 URL in a RDP library using .net?
Client is doing CIAM RTO migration and cannot config v2 URL saying that it's not possible to edit the library he's using. Is there a new library we can send to them? (attached is some screen shots of client's config). Thanks in advance, Fernando Cunha
-
Is it possible to find the RIC of certain company with Eikon Data API if I only have company name...
Is it possible to find the RIC of certain company with Eikon Data API if I only have company name in hand?
-
How to obtain fiscal quarter period name, earnings release as well as period start and end dates
I am looking to obtain the fiscal period name, start and end date as well as earnings release date for a set of tickers. I can obtain the earnings release date and period end date using the code below, but I am unsure how to get the actual fiscal quarter/period (i.e. FY19 Q1)…
-
Getting Module Error
How to fix this issue
-
Issue with Inconsistent Data Retrieval. How do everyone get data steadily?
Hi everyone, I'm encountering a strange issue as I use RIC and PermID to get_data and then get different return, Please refer to the screenshot: as you can see the df2 is empty, it should be return as df1 since '4295884869' is the PermID of 'ASML.OQ' I tried several times and the PermID kept returning empty dataframe, does…
-
How to get percent change between two intraday values?
Hello Team, I have syntax below that gets data at exactly 6PM (df) and latest tick of EUR= (df2) I'd like to get the percentage between the two output. I tried df3 =((df2-df)/df*100) but it is not working. Also, how can I set a specific timezone? import refinitiv.data as rd rd.open_session() df = rd.get_history( universe =…
-
Tracking ESG scores updates over time for backtesting purposes
Hello, I would like to download the time series of ESG scores, but reading your documentation about ESG data I discovered that once a ESG score is published for a given year it can be update later for the subsequent next 5 years, e.g. an ESG score for the 2022 year can be updated until 2027. Is there a way to track the…