Fix backtesting bug
This commit is contained in:
parent
6b93c71d15
commit
cb4889398b
@ -233,8 +233,11 @@ class Backtesting:
|
||||
|
||||
if not pair_data.empty:
|
||||
# Cleanup from prior runs
|
||||
# TODO-lev: The below is not 100% compatible with the interface compatibility layer
|
||||
if 'enter_long' in pair_data.columns:
|
||||
pair_data.loc[:, 'enter_long'] = 0
|
||||
pair_data.loc[:, 'enter_short'] = 0
|
||||
if 'exit_long' in pair_data.columns:
|
||||
pair_data.loc[:, 'exit_long'] = 0
|
||||
pair_data.loc[:, 'exit_short'] = 0
|
||||
pair_data.loc[:, 'long_tag'] = None
|
||||
|
Loading…
Reference in New Issue
Block a user