Merge pull request #7258 from freqtrade/feat/hyp_optinal_indicator

Add flag to move hyperopt populate_indicators to epoch
This commit is contained in:
Matthias
2022-08-27 09:21:16 +02:00
committed by GitHub
10 changed files with 105 additions and 22 deletions

View File

@@ -255,6 +255,13 @@ AVAILABLE_CLI_OPTIONS = {
nargs='+',
default='default',
),
"analyze_per_epoch": Arg(
'--analyze-per-epoch',
help='Run populate_indicators once per epoch.',
action='store_true',
default=False,
),
"print_all": Arg(
'--print-all',
help='Print all results, not only the best ones.',