eikon python importing all historical data of a stock into dataframe

i am trying to importing historical data of a stock into a python dataframe

df = ek.get_timeseries([AAPL.O], start_date="1990-01-01" ,end_date="2018-06-25", interval="daily", debug=False)

but it only import data from 2006 not all historical data

Best Answer