-
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=[ #…
-
Index constituents items in Data Item Browser (DIB)
Hello, I am trying to get some index constituents details of some indices using Eikon data API. I can get some basic data using "TR.IndexConstituentxxxx" items like the query below. However, I cannot find these fields using DIB in my Workspace. There is no item if I search using "TR.IndexConstituent". If I type…
-
Computstat Item Names in Refinitiv
Hello, is there any list of what the Compustat items are called in Refinitiv? I need the items Investments and Advances (32) and Debt in Current Liabilities (34). Thank you and best regards
-
Can't retrieve fields visible in DIB using Eikon Data API
For some instruments such as LU1649332886, the DIB shows that the TR.NETASSETVALUE field has data, but when using a get_data request on both the Lipper RIC and the ISIN, the series isn't retrieved for either. I've experienced similar issues with other instruments. Is there a reason this is occurring? Thanks in advance
-
Data Item Code for "US GDP Final*"
I want to extract data on "US GDP Final*" using the eikon Data API. How can I find the corresponding instruments, fields and parameters? I tried with Data Item Browser, but I didn't know how to search.
-
Can python to download TR.YieldtoCallDateAnalytics & TR.DiscountMarginAnalytics?
Hi team, Can python to download TR.YieldtoCallDateAnalytics & TR.DiscountMarginAnalytics? If so, could provide sample code. If no, is it any workaround it codebook? thanks. Regards, Sunny
-
How to find data fields for python api? Data Item Browser and Formula Builder are incomplete.
The api docs direct us to either the Data Item Browser (DIB) or the Excel add in to discover the fields and parameters available for use in the api (specifically the get_data method). However take for example the field "TR.IndexConstituentRIC" which frequently appears on this forum, I cannot find this field in either the…
-
data item browser cannot open (Mac)
Hi, My data item browser cannot open all the time like this. Could you help me to fix?
-
Data items to get historical prices using ISIN for multiple asset classes
Hi, I'm currently trying prices = ek.get_data(codes, ['AVAIL(TR.PRICECLOSE.date,TR.FIPRICE.date,TR.NETASSETVAL.date), AVAIL(TR.PRICECLOSE,TR.FIPRICE,TR.NETASSETVAL)'], {'SDate':'2020-10-01', 'EDate':'2020-10-05'}) to get historical prices for equities, bonds, etfs and funds. Above codes is an array of ISIN codes. All I get…
-
Data Item Browser is not working
Until recently, the data item browser from the Eikon API Proxy worked perfectly fine, however, today I am not able to retrieve any information of data fields with the data item browser because it starts loading but does not show anything. The connection is working because when I am searching for instruments the pop-up…
-
EIKON API Proxy on MacOS : DIB keeps loading
Hi, I have an issue since yesterday On my Eikon API Proxy on MacOS. The DIB keeps loading and I can't search for any data items Thanks for your help, .
-
How to get all Eikon Python API fields into an excel spreadsheet?
I am looking for a way to get all Data Item Codes (e.g. TR.VWAPVOLUME) into an Excel spreadsheet. I am aware that the Data Item Browser contains all Data Item Codes. I am looking for a way to consolidate all fields in an excel spreadsheet for programmatic use.
-
Further documentation on TRDPRC_1 and related formulas.
Hi, I would like to know where I can find a deeper description on TRDPRC_1. I'm aware, according to the Item Data Browser info, that related factors to TRDPRC_1 are SALTIM (which gives you time of such trade) and TRADE_DATE (which gives you the date of such trade, complementing the info of SALTIM). Do you have…
-
Extracting related securities from all quotes app
Hi all, Any ideas on how to get the related securities / primary RICs for equities using the api? It doesnt look like there is a DIB field either. Thanks, Danny
-
Individual estimates not matching series
Hello Eikon QA,I seem to have some consistency problems when im retriving data (TR.PtoEPSMeanEst and TR.FwdPtoEPSSmartEst) from the API individually, as a series or from the data item browser. For example: Retrieve all in a single call as a series: df = ek.get_data('AAPL.OQ', ['TR.PtoEPSMeanEst'],…