diff --git a/config.json.example b/config.json.example index 63530d936..eb81ef513 100644 --- a/config.json.example +++ b/config.json.example @@ -5,7 +5,7 @@ "fiat_display_currency": "USD", "dry_run": false, "trailing_stop": { - "positive" : 0.01 + "positive" : 0.005 }, "unfilledtimeout": 600, "bid_strategy": { diff --git a/freqtrade/analyze.py b/freqtrade/analyze.py index 7de3e95b2..2934d28dd 100644 --- a/freqtrade/analyze.py +++ b/freqtrade/analyze.py @@ -224,7 +224,7 @@ class Analyze(object): 'positive' in self.config['trailing_stop'] and \ current_profit > 0: - print("using positive stop loss mode: {} since we have profit {}".format( + logger.debug("using positive stop loss mode: {} since we have profit {}".format( self.config['trailing_stop']['positive'], current_profit)) stop_loss_value = self.config['trailing_stop']['positive']