diff --git a/user_data/strategies/custom_stoploss_with_psar.py b/user_data/strategies/custom_stoploss_with_psar.py index 73cb46d..6ba070e 100644 --- a/user_data/strategies/custom_stoploss_with_psar.py +++ b/user_data/strategies/custom_stoploss_with_psar.py @@ -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