-
volume data across venue
Hello, I recently noticed a discrepancy in trading volume from Eikon Data API for Canadian stocks. In particular, when comparing the consolidated volume for a ticker (say, 'TD') using the RIC = 'TD.CCP' with the aggregated volume for the ticker across all trading venues, I found that before 2024 they are quite close to…
-
Integration of Data Item Browser into Eikon API
Is there an existing method of accessing the Data Item Browser within the Eikon API for Python? If not, is it possible to get this integrated? This would drastically save time and energy versus flipping back and forth, sorting, and manually entering codes. Thanks.
-
Extract index constituents as of a particular date
I am using this formula to extract the index constituents details which In my opinion represent the latest available constituents. How Do i extract the constituents as of a particular date? I tried to extract it via df = ld.get_data(['.nifty200'],['TR.IndexConstituentRIC','TR.IndexConstituentName'], {'SDate':…
-
The code was working earlier without issues. Today not getting any error , getting None in return
from datetime import datetime import os import numpy as np import eikon as ek import pandas as pd # Initialize Eikon with your API key ek.set_app_key('xyz') # Define parameters ric = 'EScv1' fields=['TIMESTAMP', 'OPEN', 'HIGH', 'LOW', 'CLOSE', 'VOLUME'] start = '2024-11-01T00:00:00' end = '2024-11-01T23:59:00' interval =…
-
company ID from company name by eikon data api
Hi Dev Portal team good morning. May I request for your assistance. Client wants to convert company name list into PermID list in API. Some are private, some are public on the lists. Sample companies: TOMY COMPANY SOCIETY FOR IMAGING SCIENCE AND TECHNOLOGY (IS&T;) TOKINA CORPORATION TAMRON SEA & SEA SUN PACK CO.,LTD. Thank…
-
LSEG Data Library for Python - 'Connection Refused'
"I am trying to use the LSEG Data Library for Python. I am getting 'Connection Refused' and my CodeBook returns 'Insufficient Permissions.' Please verify my User ID is entitled for 'Eikon Data APIs'. Please confirm I have the Full Desktop Installation (not the Web/OpenFin thin client) that includes the Local API Proxy."…
-
Error code 403 - a padding to disable MSIE and Chrome friendly error page
Hi, I’m currently having a problem retrieving data via Python using the EIKON API. I’m getting the following error message when running the Python script: eikon.eikonError.EikonError: Error code 403 | Client Error: <html> <head><title>403 Forbidden</title></head> <body> <center><h1>403 Forbidden</h1></center> </body>…
-
getting Null Value for TR.HIGHPRICE and TR.LOWPRICE for 0179.HK using this code for today
On behalf of external client - Issue- Client is getting Null value for 0179.HK RIC for TR.HIGHPRICE and TR.LOWPRICE today. The code worked fine until yesterday. The data is available on the RIC on the product and in excel. so the issue is with the code. ek.TR_Field('TR.HIGHPRICE') ek.TR_Field('TR.LOWPRICE') We have advised…
-
Quick Question: get_timeseries for SZZF
Quick question: when I run the following python API call for ticker SZZF: Sub_ticker = ['SZZFM5^2', 'SZZFN5^2', 'SZZFQ5^2', 'SZZFU5', 'SZZFV5', 'SZZFX5', 'SZZFZ5', 'SZZFF6', 'SZZFG6', 'SZZFH6', 'SZZFJ6', 'SZZFK6', 'SZZFM6', 'SZZFN6', 'SZZFQ6', 'SZZFU6', 'SZZFV6', 'SZZFX6', 'SZZFZ6', 'SZZFF7', 'SZZFG7', 'SZZFH7', 'SZZFJ7',…
-
Eikon API - Expiry date of expired rics
in order to retrieve the expiry/last trading date for a given future i have been using df, err = ek.get_data( 'LCOK2^2', ['EXPIR_DATE', 'TR.FOFirstNoticeDay', 'TR.FOLastTradingDate']) however for older RICs (older than 2010 , e.g. Jun 2005) it does not work. E.g. : df, err = ek.get_data('LCOM5^0', ['EXPIR_DATE',…
-
Corporate Event unique identifier
Is there a unique identifier in Eikon for each corporate action of each company, so that all registered corporate actions could be distinguished from each other?
-
Adding story text to output using Python API
Hi I currently have the following code that is fetching specific new articles using Python API. However I am not sure how to add the story text to the output. I currently have the Headline, StoryId, and Link to the article. Code: df = ek.get_news_headlines( 'Topic:GB AND (SOURCE:CMPNY OR SOURCE:MCE OR SOURCE:GEN)',…
-
Eikon Data API (or “The Data Library”) via Python is a way to have multiple sessions open
I am currently experimenting with Eikon Data API (or “The Data Library”) via Python. Do you know a way to have multiple sessions open? When I run my Python script, I always have to close my running instance of LSEG-Workspace or the code won’t proceed (Python Code and Workspace running on the same machine). It would even be…
-
Accessing Upcoming Sovereign Rating Review Calendar via Eikon API
Hello, I would like to access upcoming sovereign credit rating review dates for certain countries (e.g., "Germany – Fitch – Review scheduled for July 11, 2025") via the Eikon Data API (refinitiv.dataplatform.eikon), if possible. Could you help me with it? Thank you for your support. Best regards,
-
Difference in Intraday Timestamp between rd.get_history vs ek.get_timeseries
Hi team, Hanna here from the Specialist team - helpdesk. A question in difference in timestamp for intraday interval between rdp, ek and lseg. There is a one hour difference. Now we know and see this difference in our Charts due to the difference in logic, as discussed in our Knowledge Article: Why are the timestamps for…