From 8461eacf34db648dfca3371a8bc0a3b9e4beee5f Mon Sep 17 00:00:00 2001 From: Gert Wohlgemuth Date: Tue, 1 May 2018 15:39:16 -0700 Subject: [PATCH] adjusted ROI to speed up runtime --- user_data/strategies/Quickie.py | 7 ++----- user_data/strategies/Simple.py | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/user_data/strategies/Quickie.py b/user_data/strategies/Quickie.py index d40dffa0b..cb60bd652 100644 --- a/user_data/strategies/Quickie.py +++ b/user_data/strategies/Quickie.py @@ -22,11 +22,8 @@ class Quickie(IStrategy): # Minimal ROI designed for the strategy. # This attribute will be overridden if the config file contains "minimal_roi" minimal_roi = { - "100": 0.01, - "45": 0.02, - "30": 0.03, - "15": 0.06, - "10": 0.15, + "60": 0.005, + "10": 0.01, } # Optimal stoploss designed for the strategy diff --git a/user_data/strategies/Simple.py b/user_data/strategies/Simple.py index 2c989fcf7..a279dcb19 100644 --- a/user_data/strategies/Simple.py +++ b/user_data/strategies/Simple.py @@ -25,7 +25,7 @@ class Simple(IStrategy): # since this strategy is planned around 5 minutes, we assume any time we have a 5% profit we should call it a day # This attribute will be overridden if the config file contains "minimal_roi" minimal_roi = { - "0": 0.5 + "0": 0.01 } # Optimal stoploss designed for the strategy