I would like to retrieve a time series of economic events using Python. The following works for getting the most recent values.
fields= ['TR.IndicatorName', 'TR.IndicatorType', 'TR.IndicatorSource',
"ACT_STA_DT","ACT_END_DT","ECI_ACT_DT","ACT_VAL_NS","RELEVANCE","RTR_POLL",
"ECON_ACT","UNIT_PREFX","RPT_UNITS","ECON_PRIOR","PRIOR_REV","FCAST_LOW",
"FCAST_HIGH","FCAST_NUM","FCAST_SEST","FCAST_ACRY"]
df, e = ek.get_data('EUGDQY=ECI', fields=fields)
Is it possible to retrieve the available time series for a given indicator using the python api? Using the app it is possible to export the time series into an excel file.