mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-02-08 07:10:28 +00:00
fix: remove obsolete infer_datetime
This commit is contained in:
@@ -203,7 +203,7 @@ def public_trades_to_dataframe(trades: list, timeframe: str, pair: str, *,
|
||||
cols = DEFAULT_TRADES_COLUMNS
|
||||
df = DataFrame(trades, columns=cols)
|
||||
df['date'] = pd.to_datetime(
|
||||
df['timestamp'], unit='ms', utc=True, infer_datetime_format=True)
|
||||
df['timestamp'], unit='ms', utc=True)
|
||||
|
||||
# Some exchanges return int values for Volume and even for OHLC.
|
||||
# Convert them since TA-LIB indicators used in the strategy assume floats
|
||||
|
||||
Reference in New Issue
Block a user