From 20457808100159f653b05b6967f18c5e9d099bfe Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 13 Oct 2022 11:57:36 +0000 Subject: [PATCH] Reinstate default of 1000% for roi closes #7583 --- freqtrade/strategy/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/strategy/interface.py b/freqtrade/strategy/interface.py index 8f803045f..96e3065c4 100644 --- a/freqtrade/strategy/interface.py +++ b/freqtrade/strategy/interface.py @@ -49,7 +49,7 @@ class IStrategy(ABC, HyperStrategyMixin): _ft_params_from_file: Dict # associated minimal roi - minimal_roi: Dict = {} + minimal_roi: Dict = {"0": 10.0} # associated stoploss stoploss: float