mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-05-04 23:52:14 +00:00
chore: remove deprecated read_csv options
This commit is contained in:
@@ -17,9 +17,9 @@ def read_csv(filename, converter_columns: list = ["side", "type"]):
|
|||||||
return pd.read_csv(
|
return pd.read_csv(
|
||||||
filename,
|
filename,
|
||||||
skipinitialspace=True,
|
skipinitialspace=True,
|
||||||
infer_datetime_format=True,
|
|
||||||
index_col=0,
|
index_col=0,
|
||||||
parse_dates=True,
|
parse_dates=True,
|
||||||
|
date_format="ISO8601",
|
||||||
converters={col: str.strip for col in converter_columns},
|
converters={col: str.strip for col in converter_columns},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user