Allow use of config in custom hyperopt methods

This commit is contained in:
hroff-1902
2019-09-26 11:59:21 +03:00
parent b994f5c273
commit 9db915853a
2 changed files with 7 additions and 4 deletions

View File

@@ -36,6 +36,12 @@ class IHyperOpt(ABC):
"""
ticker_interval: str
def __init__(self, config: dict) -> None:
self.config = config
# Assign ticker_interval to be used in hyperopt
IHyperOpt.ticker_interval = str(config['ticker_interval'])
@staticmethod
@abstractmethod
def populate_indicators(dataframe: DataFrame, metadata: dict) -> DataFrame: