-
How Long After a Company is Listed Does It Appear in the System?
Hi everyone, I am trying to determine how long it takes for a newly listed company to appear in the LSEG system. Specifically, after a company is officially listed on an exchange, how much time typically passes before its identifiers (e.g., ISIN, RIC, PermID, etc.) are available through LSEG APIs? Is there a standard…
-
API Related Query
Hi Team, please can you answer the below questions from my client. I have a couple of questions on the recommended Python package and required credentials please. There are three Python packages available: https://pypi.org/project/refinitiv-data/ https://pypi.org/project/refinitiv-dataplatform/…
-
How to retrieve bond rating and sector credit curve data - using Python API
Hello, I have a datasheet with a list of bond ISINs for which I have a start date, end date, the sector classification, currency and rating information. For each bons in the dataset I would like to retrieve the currency-sector-rating specific credit yield curve starting at its specific start and end date. I am facing the…
-
Wrong Financial Data for AMD from Python API
I use python eikon api to get financial data, the data is accurate for most of the companies, but for AMD, the data is terribly wrong.
-
Date Field contains indexed numbers
Hi, I am using the following script to download tresury yields. TESOROS = ['US2YT=RR','US3YT=RR','US5YT=RR','US7YT=RR','US10YT=RR','US30YT=RR'] start_date = "2000-12-12" end_date = "2024-12-31" ts_tesoros,e1 = ek.get_data(TESOROS, ["TR.MIDYIELD.date","TR.MIDYIELD"], {'SDate':start_date,'EDate':end_date,'Frq':'D'}) UST10Y =…
-
Provide Shipping Flows Python Script
Looking for someone to help put together a script to pull shipping data for clean products (gasoline, gasoline component, naphtha, Gasoline / Gasoline Component) as imports/exports out of all US PADDS.
-
How to run a SCREENER formula in Excel to CODEBOOK?
What is wrong with this screening code? df, err = ek.get_data('SCREEN(U(IN(Equity(active,public))/UNV:Public/), IN(TR.InstrumentTypeCode,"ADR","BDR"), IN(TR.ExchangeMarketIdCode,"BVMF","XBSP")',['…
-
TEXTUAL ANALYSIS PYTHON
Hello everyone! I would like to understand how to obtain the headlines of all companies, for example, U.S. companies, on Python by inserting keywords, from 2020 to today. The code I used only works with 100 rows. Thank you!
-
Data item for industry incld delisted stocks
I am looking to retrieve the industry of stocks, but the data item browser does not show me which ones have also information about delisted stocks. Neither TR.ICBIndustry nor TR.ICBSector work for past delisted stocks.
-
Delayed prices using LSEG Workspace API
Hello, I'm trying to collect bids for LCOc1 as soon as the bid change in realtime. My main issue is that I have a 10 min delay. _________________________________ import time import pandas as pd import eikon as ek import os # Set Eikon API Key for access to financial data ek.set_app_key('API_KEY_HERE') # Define the…