From 7a44a1d1c184a82a51a404ccb86e1c0e823fd9d8 Mon Sep 17 00:00:00 2001 From: Samuel Husso Date: Tue, 21 Nov 2017 07:37:31 +0200 Subject: [PATCH] match example config to backtest_conf and update README to fix #124 --- README.md | 8 ++++---- config.json.example | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e6f9e53d7..398056079 100644 --- a/README.md +++ b/README.md @@ -34,10 +34,10 @@ in minutes and the value is the minimum ROI in percent. See the example below: ``` "minimal_roi": { - "50": 0.0, # Sell after 30 minutes if the profit is not negative - "40": 0.01, # Sell after 25 minutes if there is at least 1% profit - "30": 0.02, # Sell after 15 minutes if there is at least 2% profit - "0": 0.045 # Sell immediately if there is at least 4.5% profit + "40": 0.0, # Sell after 40 minutes if the profit is not negative + "30": 0.01, # Sell after 30 minutes if there is at least 1% profit + "20": 0.02, # Sell after 20 minutes if there is at least 2% profit + "0": 0.04 # Sell immediately if there is at least 4% profit }, ``` diff --git a/config.json.example b/config.json.example index e91b6772f..056b9201e 100644 --- a/config.json.example +++ b/config.json.example @@ -4,10 +4,10 @@ "stake_amount": 0.05, "dry_run": false, "minimal_roi": { - "50": 0.0, - "40": 0.01, - "30": 0.02, - "0": 0.045 + "40": 0.0, + "30": 0.01, + "20": 0.02 + "0": 0.04 }, "stoploss": -0.40, "bid_strategy": { @@ -38,4 +38,4 @@ "internals": { "process_throttle_secs": 5 } -} \ No newline at end of file +}