Hi, I am using Eikon Python API to retrieve time series data. The code has been working well but today it reports an error msg:
HTTPError: Backend error. 500 Internal Server Error
My code is this:
df = ek.get_timeseries( [ 'LCOc1' ], fields = None,
start_date = dt.datetime(2016, 1, 29, 7, 0, 0, 0 ),
end_date = dt.datetime.today(),
interval='monthly', count = None, calendar = None, corax = None,
normalize = False, raw_output = False, debug = False)
Could you please advise any reason for the breakdown? Thanks.