Add sell column to avoid runtime failures

This commit is contained in:
Matthias
2021-03-05 19:19:59 +01:00
parent bd45dcb313
commit edf77a1869
@@ -91,4 +91,6 @@ class CustomStoplossWithPSAR(IStrategy):
:param dataframe: DataFrame
:return: DataFrame with buy column
"""
# Deactivated sell signal to allow the strategy to work correctly
dataframe.loc[:, 'sell'] = 0
return dataframe