I am currently trying to get the data for multiple time series between the year 1995 and now at a monthly level.
rics =
['aPLCEMPO/A',
'aPLCPIB',
'aPLNOT/C',
'aPLHPERMCP',
'aPLRETTOS/CA',
'aPLUNR',
'aPLCINDG/A',
'aPLPPIAT/C',
'aPLWSTOTH/C',
'aPLCONACT',
'aPLIMPP',
'aPLEXPP',
'aPLCPICXFE',
'aPLBINTR',
'aPLXRUSD']
eikon_df_m = ek.get_timeseries(rics, interval = 'monthly', start_date = '1995-01-01')
It returns missing data on quite a few of them where there is data and the earliest it goes back is 2006, however when requesting them individually I can get data going back as far as I want.
Basically very few of the rows below should be NA and data should go back to 1995 for quite a few of selected seris.