Hi team, is there an excel template or python script that I can run to see if my list of companies are having any sorts of corporate actions? It there is, can you please share it with me? Thanks.
I use this code to retrieve CNH data, but it seems to be unavailable at the moment. Any suggestions? Code: import refinitiv.dataplatform.eikon as ek import matplotlib.pyplot as plt from matplotlib import rcParams import datetime import matplotlib.pyplot as plt import pandas as pd rcParams['font.family'] = 'Helvetica'…
I'm using the Eikon Data API (Python eikon library) via the desktop proxy. During development, I accidentally sent a burst of ~400 get_news_story() calls without proper rate limiting, which triggered a 429 "Too many requests" error. The 429 now blocks all API calls, including simple ones like ek.get_data("ZAR=",…
I am interested in getting a timeseries of 50D moving average and price close for a list of stocks We have the tickerlist_str = "'AADA.NS','ABB.NS','ABOT.NS','ABUJ.NS','ACC.NS','ACEL.NS','ACMO.NS','ADAG.NS','ADAI.NS','ADAN.NS'" technical_averages = ['TR.Price50DayAverage', 'TR.PriceClose'] tech_avg_df =…
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 =…
ek.get_timeseries('AAPL.O', interval='minute')
Hi all, is it possible extracting earnings call transcripts directly via the LSEG Workspace by using an API?
Hi, Could you please check the client question in the attachment and comment.
I am trying to fetch historical ETF holding of EWG ric using below python code but not getting valid entries. kindly suggest required changes to be done to fetch historical holdings of EWG ETF df, err = ek.get_data( ['EWG'], fields=[ 'TR.ETPConstituentWeightPercent.constituentric', 'TR.ETPConstituentWeightPercent' ],…
Hi support team I want to download unadjusted stock price data. TESLA had a stock split on 2022-08-23. - Workspace is running while I download data via API If I use refinitiv.data API: import refinitiv.data as rd ... df3 = rd.get_history( universe=["TSLA.O"], fields=["tr.PriceClose", "tr.Volume", "tr.Turnover"],…
It looks like you're new here. Sign in or register to get started.