Hi All,
How do you display the timestamp when caling minute interval time series data?
I'd like to use the code below-
date_time = pd.to_datetime(df.pop('Date Time'), format='%d.%m.%Y %H:%M:%S')
But require the date in a column
df= ek.get_timeseries(['EUR='],
start_date=datetime.timedelta(-90),
end_date=datetime.timedelta(0),
interval='minute')
list(df.columns.values)
['HIGH', 'LOW', 'OPEN', 'CLOSE', 'COUNT']