Our example should also set position_adjustment_enable

This commit is contained in:
Reigo Reinmets 2022-01-12 05:02:42 +02:00
parent e50b07ecb4
commit db3483c827

View File

@ -597,15 +597,18 @@ from freqtrade.persistence import Trade
class DigDeeperStrategy(IStrategy): class DigDeeperStrategy(IStrategy):
position_adjustment_enable = True
# Attempts to handle large drops with DCA. High stoploss is required. # Attempts to handle large drops with DCA. High stoploss is required.
stoploss = -0.30 stoploss = -0.30
# ... populate_* methods
# Example specific variables
max_dca_orders = 3 max_dca_orders = 3
# This number is explained a bit further down # This number is explained a bit further down
max_dca_multiplier = 5.5 max_dca_multiplier = 5.5
# ... populate_* methods
# This is called when placing the initial order (opening trade) # This is called when placing the initial order (opening trade)
def custom_stake_amount(self, pair: str, current_time: datetime, current_rate: float, def custom_stake_amount(self, pair: str, current_time: datetime, current_rate: float,
proposed_stake: float, min_stake: float, max_stake: float, proposed_stake: float, min_stake: float, max_stake: float,