--print-all command line option added for hyperopt

This commit is contained in:
hroff-1902
2019-04-22 01:10:01 +03:00
parent ccc91403c5
commit 6b87d94bb0
3 changed files with 12 additions and 2 deletions

View File

@@ -283,7 +283,6 @@ class Arguments(object):
dest='position_stacking',
default=False
)
parser.add_argument(
'--dmmp', '--disable-max-market-positions',
help='Disable applying `max_open_trades` during backtest '
@@ -309,6 +308,13 @@ class Arguments(object):
nargs='+',
dest='spaces',
)
parser.add_argument(
'--print-all',
help='Print all results, not only the best ones.',
action='store_true',
dest='print_all',
default=False
)
def _build_subcommands(self) -> None:
"""