Hello, I'm new to the TR API and have been using Python to perform API queries. My script has been running smoothly for about two years. However, when I attempted to run it this week, I encountered various errors. After reviewing the code in my backup (codebk), it appears that the function get_data([list], 'Instrument')…
I had this weird issue from the new Python API for workspaces. Error using get_history_func>get_history (line 206) Python Error: RDError: Error code -1 | [WinError 10061] No connection could be made because the target machine actively refused it It doesn't happen all the time but frequently and last for 2-3 days (maybe…
...kspace API Python import refinitiv.data as rd rd.open_session() df = rd.get_data( universe = ['USDSOFR='], fields = ['TR.FIXINGVALUE'], parameters = { 'SDate': '2024-07-01', 'EDate': '1D', 'Frq': 'D', 'CH': 'IN;Fd', 'RH': 'date' } ) display(df) When using the above code instead of returning the values for 24/07/2023 it…
Hi, im trying to create a request using this code: ek.set_app_key(refinitiv_key) rd.open_session() start_date = "2023-1-1" end_date = (date.today() - BDay(1)).strftime("%Y-%m-%d") tickers = pd.read_excel(ruta_insumos+"\Diccionario_Eikon.xlsx",sheet_name='Mercado')["Ticker"].to_numpy() tickers = tickers.tolist()…
I want to be able to use Python for extracting options data from a database. For our project focused on modeling implied volatility surfaces, we require historical end-of-day (EOD) data for US options spanning the last two to three decades, including major well-traded symbols, as well as less traded symbols with sparse…
for example, can I download option Chain data for SPY call/put options on Jan 10, 2024? Thanks.
Hello, On a companies overview page when going to the Officers Detail Page (ESG->Officers) the PersonID for each officer can be retrieved from the URL. See the Example Link below. But those PersonIDs only sometimes work to retrieve data via the Python API. Even if the data is always available. Is this a bug or is my query…
function getTeslaPrice() { // Eikon API의 올바른 엔드포인트 URL을 확인하세요. const url = "https://api.refinitiv.com/marketdata/price"; // 예시 URL, 실제 URL로 교체 필요 const options = { method: "GET", headers: { "Authorization": "Bearer 22a107f781ba4bffa71d80362e8e5c188f1f1d49", // API 키를 Authorization 헤더에 포함 "Content-Type": "application/json"…
I want to use refinitiv.data api to get some data in Django app, when i open session An error occurred while requesting URL('http://localhost:9060/api/status'). ConnectError('[WinError 10061] No connection could be made because the target machine actively refused it') An error occurred while requesting…
Hello, I was referred to the forum via Codebook support (Case 13704675, if helpful). I am using Python 3 in Codebook within the Workspace app (1.24.159). I have been obtaining different results in Codebook for the same query. This occurs even when the query is re-run on the same day. For example, I ran the query twice (the…
It looks like you're new here. Sign in or register to get started.