Replace Nan with 0 or None in backtesting

part of #6224
This commit is contained in:
Matthias
2022-01-16 14:46:43 +01:00
parent dd37e5cfb8
commit 5bb48eaed0
2 changed files with 5 additions and 6 deletions

View File

@@ -57,10 +57,6 @@ def _build_backtest_dataframe(data):
# Ensure floats are in place
for column in ['open', 'high', 'low', 'close', 'volume']:
frame[column] = frame[column].astype('float64')
if 'enter_tag' not in columns:
frame['enter_tag'] = None
if 'exit_tag' not in columns:
frame['exit_tag'] = None
# Ensure all candles make kindof sense
assert all(frame['low'] <= frame['close'])