Merge pull request #2492 from hroff-1902/hyperopt-trailing-space

Add trailing stoploss hyperspace
This commit is contained in:
hroff-1902
2019-12-03 00:23:14 +03:00
committed by GitHub
6 changed files with 231 additions and 63 deletions

View File

@@ -184,11 +184,10 @@ AVAILABLE_CLI_OPTIONS = {
),
"spaces": Arg(
'--spaces',
help='Specify which parameters to hyperopt. Space-separated list. '
'Default: `%(default)s`.',
choices=['all', 'buy', 'sell', 'roi', 'stoploss'],
help='Specify which parameters to hyperopt. Space-separated list.',
choices=['all', 'buy', 'sell', 'roi', 'stoploss', 'trailing', 'default'],
nargs='+',
default='all',
default='default',
),
"print_all": Arg(
'--print-all',