I want to get all the events (for example, revenues or earnings releases) of the symbol LVMH.PA in the last two months, and I know that there should be an event on the 15th October 2020. In Python 3.7 I use:
tmp=eik.get_data(['LVMH.PA'], ["TR.EventType", "TR.EventStartDate", "TR.EventEndDate",
"TR.EventStartTime", "TR.EventEndTime", "TR.EventStartQualifier",
"TR.EventEndQualifier"], {'Scale':6,'SDate':str('2020-09-01'), 'EDate':str('2020-10-27'), 'EventType': 'RES'})[0]
But no value is shown. The same piece of codes works (and has been working for years) for all the american stocks and many european stocks, but misses a lot of values for other stocks like the one I mentioned above. Is it an issue related to the API, or is Eikon missing the data?