-
Historical CDS Data for all S&P 500 firms
Hello, I want to export historical data on 3-year CDS spreads for firms included in the S&P 500 index, with an annual snapshot as of March 31st for each year from 2014 through 2023. As I am new to working with financial data sets, I would greatly appreciate a step-by-step guide on how to access and export this specific…
-
retrieve bond ISIN issued by a list of firm RICs
Hi! I have a list of RICs around 700 firms. I am trying to find ISIN of their issued bond for a typical year (for example 2020). How can I use API for this issue? Many thanks!
-
Fetching Intraday Data
How can I fetch the intraday data (say, 1 hour or 1 minute) for a given RIC (ex- '1SN4^1'). I tried the below code snippet, but it appears to be incorrect. Please help me figure out this issue. req = ek.get_timeseries(["1SN4^1"], start_date="2013-04-17T00:00:00", end_date="2014-07-10T00:00:00", interval="minute")
-
don't get any data for a funds
don't get any data for a funds (as ex. instrument: NO0011151797) using ek.get_data. I run the check for the most used items from DIB. the result is None, refer to excel file
-
I am attempting to get data on a set of RICs and getting error.
I am attempting to get data on a set of rics for these variables (['TR.InvestorFullName', 'TR.InvestorFullName.investorid','TR.InvestorFullName.investorpermid','TR.CategoryOwnershipPct','TR.InvestorType','TR.InvParentType', 'TR.PctOfSharesOutHeld', 'TR.PctofSharesOutHeld.Date', 'TR.InvAddrCountry', 'TR.OwnTrnverRating',…
-
ISIN codes through deal screener
Hi, I am currently using excel add-in to getter data on M&A deals. I am using the deal screener but I am not able to pull the ISIN code for the acquirer and the target. I am currently preparing for another (very scarce) timeslot in the Refinitiv database provided by my university and I would like to know which steps I…
-
Does Eikon API support C# or anything other than Python?
Hi! Is Eikon API only possible with Python? Would it be possible to use it with C# or any other?
-
How can I obtain the Debtor Domicile from fixed-income funds using the Refinitiv Data API?
In the workspace, there is a section with the summary holding > debtor domicile, for fixed income funds, like TIP, it shows country and the allocation in percentage. How can I retrieve this data? I couldn't find any data item that links to this specific information: ```python df = rd.get_data( universe=['TIP'], fields=[ #…
-
download stock index price by a list of RICs
Hi! I am trying to download daily price of stock index from a list of RICs by the following code. But it does not work. Can you please help me on this? df, e = ek.get_data(["MERV","SP500","ATX"], ['TR.PriceClose(Curn=USD)','TR.PriceClose.calcdate'], {'SDate': '2012-01-01', 'EDate': '2023-02-10','Frq':'D'}) df
-
Retrieving a time-series of news headlines
hi, I have recently been migrated to Workspace (from Eikon). Using a python api, is it possible to retrieve the news headlines over, say, the last 1 year? I would like to ad some filters like, "most impactful"/ "inflation" / "interest rates"/ "country" like US or Japan etc. I am guessing this was possible using eikon api…