mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-02-05 05:40:25 +00:00
add back DEFAULT_ORDERFLOW_COLUMNS
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user