Don't sell with 0 profit in samplestrategy

This commit is contained in:
Matthias 2019-10-14 20:42:08 +02:00
parent 790e6146f5
commit a320d4ccba
1 changed files with 2 additions and 3 deletions

View File

@ -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
}