From 0767718a179aac64f2ef059cc96f62f8974d4b2d Mon Sep 17 00:00:00 2001 From: misagh Date: Wed, 14 Nov 2018 16:38:55 +0100 Subject: [PATCH] clear help added to stop losses arg --- freqtrade/arguments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/arguments.py b/freqtrade/arguments.py index d8a8bf472..594a01e78 100644 --- a/freqtrade/arguments.py +++ b/freqtrade/arguments.py @@ -202,7 +202,7 @@ class Arguments(object): parser.add_argument( '--stoplosses', help='defines a range of stoploss against which edge will assess the strategy' - 'the format is "min, max, step". example: -0.01, -0.1, -0.001', + 'the format is "min,max,step" (without any space). example: --stoplosses=-0.01,-0.1,-0.001', type=str, dest='stoploss_range', )