Fix hyperopt with ticker_interval from strategy

This commit is contained in:
Matthias 2019-12-05 20:31:02 +01:00
parent 8dd9b5c6fb
commit 4b0a4c936a

View File

@ -54,10 +54,10 @@ class Hyperopt:
def __init__(self, config: Dict[str, Any]) -> None:
self.config = config
self.custom_hyperopt = HyperOptResolver(self.config).hyperopt
self.backtesting = Backtesting(self.config)
self.custom_hyperopt = HyperOptResolver(self.config).hyperopt
self.custom_hyperoptloss = HyperOptLossResolver(self.config).hyperoptloss
self.calculate_loss = self.custom_hyperoptloss.hyperopt_loss_function