Hi team,
When using the method get_timeseries with normalize=True, a waning is raised with the following message :
FutureWarning: Could not cast to float64, falling back to object. This behavior is deprecated. In a future version, when a dtype is passed to 'DataFrame', either all columns will be cast to that dtype, or a TypeError will be raised.
df = pd.DataFrame(dict(Date=timestamp_column, Security=symbol_column,
Do you intend to fix this for the next release ?
To reproduce the error (eikon package version 1.1.14):
import eikon as ek
import datetime
date_format = "%Y%m%d"
start_date = datetime.datetime.strptime("20220413", date_format)
end_date = datetime.datetime.strptime("20220415", date_format)
ek.set_app_key(API_KEY)
ek.get_timeseries(["IBM"],
["OPEN", "CLOSE"],
start_date, end_date, raw_output= False, normalize= True)
Thank you