From a320d4ccbae737b7103fa788644d19d395c42fb7 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 14 Oct 2019 20:42:08 +0200 Subject: [PATCH] Don't sell with 0 profit in samplestrategy --- user_data/strategies/sample_strategy.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/user_data/strategies/sample_strategy.py b/user_data/strategies/sample_strategy.py index 84ff9ec2c..6d544c667 100644 --- a/user_data/strategies/sample_strategy.py +++ b/user_data/strategies/sample_strategy.py @@ -34,9 +34,8 @@ class SampleStrategy(IStrategy): # Minimal ROI designed for the strategy. # This attribute will be overridden if the config file contains "minimal_roi". minimal_roi = { - "40": 0.0, - "30": 0.01, - "20": 0.02, + "60": 0.01, + "30": 0.02, "0": 0.04 }