Update name to get non-optimized parameters

This commit is contained in:
Matthias 2021-06-14 20:42:54 +02:00
parent 8cdd1e3aef
commit 2310deec53
2 changed files with 2 additions and 2 deletions

View File

@ -310,7 +310,7 @@ class Hyperopt:
results_explanation = HyperoptTools.format_results_explanation_string(
strat_stats, self.config['stake_currency'])
not_optimized = self.backtesting.strategy.get_params_dict()
not_optimized = self.backtesting.strategy.get_no_optimize_params()
trade_count = strat_stats['total_trades']
total_profit = strat_stats['profit_total']

View File

@ -358,7 +358,7 @@ class HyperStrategyMixin(object):
else:
logger.info(f'Strategy Parameter(default): {attr_name} = {attr.value}')
def get_params_dict(self):
def get_no_optimize_params(self):
"""
Returns list of Parameters that are not part of the current optimize job
"""