-
SDate parameter when collecting company events
My goal is to get company event data for a universe of firms. I am using Eikon API version 1.1.18. I am using the following python code to access the Earnings Call and Earnings Release Events data , err = ek.get_data([RICs],['TR.EventType','TR.EventType.date'],{'SDate':'2001-01-01','EDate': '-1AW','EventType':'ECALL:RES'})…
-
Difference between Dividend Currency field from Composite and Corporate Action Template
Hello, I'm inquiring what the difference between the fields from the two templates. Currently, our code base requests data from these two templates, most of our securities dividend's our requesting 'dividend currency' from composite template and successfully gets the dividend currency correctly. While some securities can't…
-
Is it possible to pull up a capital change event (Buyback, Stock Split, etc) in Python with the E...
...vent ID used as a search criteria? We have a user who is trying to pull all the Buyback and Stock Split events for RIC 7203.T but it appears that the script is just outright pulling the data from 2000-latest for each field. For instance, a Buyback event with event ID <73016304666 > is returning values for…
-
earnings call from ADVEV
Follow this thread, Anyone can introduce how get the detail content of earnings call by python? Appreciate in advance
-
Download corporate event data from Refinitiv workspace using python API
Hi Team, 1. I am working with refintiv Workspace and I would like to download data via an api access. Would you mind letting me know where I can find a list of all the possible data fields that I can access via api? In the example on the homepage there is only a limited number of fields, such as e.g., “TR.Revenue”. 2. And…
-
Where can I extract such event information for a given RIC using python APIs?
Hi, The ETF C090.DE "Lyxor Bloomberg Eq-weight Commod ex-Agr UCITS ETF" is being merged with LYTR.DE "Amundi Blbrg Equlwght Commdt ex-Agricl UCITS ETF A". Where can I extract such event information for a given RIC using python APIs? Will be grateful if this issue could be addressed as soon as possible. Since it is an…
-
Retrieve Earnings Call Transcripts via Eikon API
Hello, I am wondering as to whether or not it is possible to retrieve the transcripts of earnings calls via the Eikon API. I know that retrieving the earnings call event details (time, date, etc) is possible, but I am looking for a way to have the actual transcript be returned as well. Thank you.
-
Python API Fund Name Change
I need to download name change events for a list of Funds ISINs. For example, for LU0167295319 I need to retrieve the following information: Old Name: UBS (Lux) Strategy Fund - Yield (EUR) (change made on 11/15/2021) New Name: UBS (Lux) Strategy Fund - Yield Sust (EUR) N-acc Can I do this with the Eikon Python API? Thank…
-
Last DIvidend DSS with API
Dear all, how are you? I´m using the the ExtractionRequests.CorporateActionsStandardExtractionRequest function in order to get the last dividend for IVV.P, but the service don’t reply with the last dividend. The correct dividend value and date is: "Identifier": "IVV.P", "Period End Date": "2020-09-30", "Dividend…
-
Get Target RIC for Demerger from DataScope Select
Hello, When retrieving corporate action details for Demergers, is there a way to get the target RIC for a given action? You can retrieve the details within the 'Corporate Action Notes' column, but that requires parsing the entire paragraph of text. For example, on 06/03/2019 DUPONT DE NMOURS (DD.N) had a Demerger of:…
-
How to get the latest earnings event
How can I restrict the events to only earnings release in this API call ? Here it shows that EventType = ALL, where is the documentation or text for different types that can be used here ? df = ek.get_data(["AAPL.O"], ["TR.EventStartDate", "TR.EventType", "TR.EventTitle"],{"SDate":"2015-08-01","EventType":"ALL",…
-
Extract Buybacks
hi, I would like to extract buybacks informations about specific compagnies with python, to be able to do that i would have to screen the M&A deals about this company and select deal type as "repurchase". Does someone know how to do it? it works well on Excel with the following command:…
-
Earnings release dates and time (BMO/AMC) using R Eikon
I am trying to retrieve historical earnings release dates and time using R. At the moment I use the package https://github.com/CharlesCara/DatastreamDSWS2R/blob/master/README.md to connect to Eikon Datastream. Here is the code I use: # Get quantmod if (!require("quantmod")) { install.packages("quantmod") library(quantmod)…
-
Corporate Actions Fetching from RDATA based on Ex Date filter.
We want to pull Corporate Actions from RDATA based on Ex Date We are using code MyRData = MyDex2Mgr.CreateRData(MyDex2Cookie); MyRData.RequestParam = = "DT:ED " + fromDate.ToString("ddMMMyy") + ";" + toDate.ToString("ddMMMyy") + " CURR:USD"; MyRData.DisplayParam = "RH:In;D"; We are getting data by above code but filtered…