From 4ef901e5e37a72a61207388e67f0ebb62dc66417 Mon Sep 17 00:00:00 2001 From: Joe Schr <8218910+TheJoeSchr@users.noreply.github.com> Date: Mon, 23 Oct 2023 11:00:38 +0200 Subject: [PATCH] add back DEFAULT_ORDERFLOW_COLUMNS --- freqtrade/constants.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 3bf0179a8..060f2e53c 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -48,7 +48,9 @@ MATH_CLOSE_PREC = 1e-14 # Precision used for float comparisons DEFAULT_DATAFRAME_COLUMNS = ['date', 'open', 'high', 'low', 'close', 'volume'] # Don't modify sequence of DEFAULT_TRADES_COLUMNS # it has wide consequences for stored trades files -DEFAULT_TRADES_COLUMNS = ['timestamp', 'id', 'type', 'side', 'price', 'amount', 'cost'] +DEFAULT_TRADES_COLUMNS = ['timestamp', 'id', + 'type', 'side', 'price', 'amount', 'cost'] +DEFAULT_ORDERFLOW_COLUMNS = ['level', 'bid', 'ask', 'delta'] TRADES_DTYPES = { 'timestamp': 'int64', 'id': 'str',