Hi, I am trying to download historical price data for multiple stocks from 2015 to 2024. When I download data for a single stock, it starts from the earliest available date. However, when I download data for multiple stocks, whether using the normalize option or not, the data is trimmed. How can I download the stock price data so that each stock's data starts from the correct date? Thanks!
eikon_instruments = ['LIH.BX','ROSMTL.BX','ROCC.BX','RO2P.BX','NLMK.MM','ENPG.MM','VKCO.MM','BOK.RW','IMR.RW','MTNR.RW']
ek.get_timeseries(eikon_instruments[0], fields = 'Close',start_date = "2015-01-01", end_date = "2024-05-01", interval="daily")
ek.get_timeseries(eikon_instruments, fields = 'Close',start_date = "2015-01-01", end_date = "2024-05-01", interval="daily")
ek.get_timeseries(eikon_instruments, fields = 'Close',start_date = "2015-01-01", end_date = "2024-05-01", interval="daily",normalize=True)