hi there,
I am trying to retrieve end of day OHLCV for some ETF instrument (XLV) from 01/01/2000 till today via the EIKON Python API. Unfortunately, i can only retrieve data up to 19/06/2018, which is not even 2 years?
I would like to understand why the history is limit to such a short period whereas the Excel API and the Eikon chart allow me to retrieve data up to the desired start date.
Here is the call below where ric='XLV', start_date='20000101', end_date='20200427'. Thank you
fields=["OPEN", "HIGH", "LOW", "CLOSE", "VOLUME"]
df = ek.get_timeseries(ric,
fields=fields,
calendar="tradingdays",
start_date=start_date,
end_date=end_date,
interval='daily')