clear help added to stop losses arg

This commit is contained in:
misagh 2018-11-14 16:38:55 +01:00
parent dd47d7adb4
commit 0767718a17

View File

@ -202,7 +202,7 @@ class Arguments(object):
parser.add_argument( parser.add_argument(
'--stoplosses', '--stoplosses',
help='defines a range of stoploss against which edge will assess the strategy' 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, type=str,
dest='stoploss_range', dest='stoploss_range',
) )