From 263992e71c7f6f968611ffdb6acfe8e2fd61b53e Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 17 Feb 2019 15:47:18 +0100 Subject: [PATCH] Set a realistic stoploss of 10% (not 30-50%) --- user_data/strategies/strategy001.py | 2 +- user_data/strategies/strategy002.py | 2 +- user_data/strategies/strategy003.py | 2 +- user_data/strategies/strategy004.py | 2 +- user_data/strategies/strategy005.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/user_data/strategies/strategy001.py b/user_data/strategies/strategy001.py index 91654ab..6390334 100644 --- a/user_data/strategies/strategy001.py +++ b/user_data/strategies/strategy001.py @@ -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' diff --git a/user_data/strategies/strategy002.py b/user_data/strategies/strategy002.py index a6d6966..102472d 100644 --- a/user_data/strategies/strategy002.py +++ b/user_data/strategies/strategy002.py @@ -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' diff --git a/user_data/strategies/strategy003.py b/user_data/strategies/strategy003.py index ccc3780..4e74652 100644 --- a/user_data/strategies/strategy003.py +++ b/user_data/strategies/strategy003.py @@ -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' diff --git a/user_data/strategies/strategy004.py b/user_data/strategies/strategy004.py index 6a72862..1e79617 100644 --- a/user_data/strategies/strategy004.py +++ b/user_data/strategies/strategy004.py @@ -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' diff --git a/user_data/strategies/strategy005.py b/user_data/strategies/strategy005.py index b174e97..845bca4 100644 --- a/user_data/strategies/strategy005.py +++ b/user_data/strategies/strategy005.py @@ -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'