Set a realistic stoploss of 10% (not 30-50%)

This commit is contained in:
Matthias
2019-02-17 15:47:18 +01:00
parent 8b94b72d21
commit 263992e71c
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ class strategy001(IStrategy):
# Optimal stoploss designed for the strategy
# This attribute will be overridden if the config file contains "stoploss"
stoploss = -0.3
stoploss = -0.10
# Optimal ticker interval for the strategy
ticker_interval = '5m'
+1 -1
View File
@@ -31,7 +31,7 @@ class strategy002(IStrategy):
# Optimal stoploss designed for the strategy
# This attribute will be overridden if the config file contains "stoploss"
stoploss = -0.3
stoploss = -0.10
# Optimal ticker interval for the strategy
ticker_interval = '5m'
+1 -1
View File
@@ -31,7 +31,7 @@ class strategy003(IStrategy):
# Optimal stoploss designed for the strategy
# This attribute will be overridden if the config file contains "stoploss"
stoploss = -0.3
stoploss = -0.10
# Optimal ticker interval for the strategy
ticker_interval = '5m'
+1 -1
View File
@@ -30,7 +30,7 @@ class strategy004(IStrategy):
# Optimal stoploss designed for the strategy
# This attribute will be overridden if the config file contains "stoploss"
stoploss = -0.3
stoploss = -0.10
# Optimal ticker interval for the strategy
ticker_interval = '5m'
+1 -1
View File
@@ -33,7 +33,7 @@ class Strategy005(IStrategy):
# Optimal stoploss designed for the strategy
# This attribute will be overridden if the config file contains "stoploss"
stoploss = -0.5
stoploss = -0.10
# Optimal ticker interval for the strategy
ticker_interval = '5m'