Merge pull request #2123 from freqtrade/hyperoptloss_help

[minor] Improve hyperopt-loss docs
This commit is contained in:
Matthias
2019-08-12 14:08:32 +02:00
committed by GitHub
3 changed files with 13 additions and 6 deletions

View File

@@ -226,7 +226,9 @@ AVAILABLE_CLI_OPTIONS = {
'--hyperopt-loss',
help='Specify the class name of the hyperopt loss function class (IHyperOptLoss). '
'Different functions can generate completely different results, '
'since the target for optimization is different. (default: `%(default)s`).',
'since the target for optimization is different. Built-in Hyperopt-loss-functions are: '
'DefaultHyperOptLoss, OnlyProfitHyperOptLoss, SharpeHyperOptLoss.'
'(default: `%(default)s`).',
metavar='NAME',
default=constants.DEFAULT_HYPEROPT_LOSS,
),