[SQUASH] Fix parameter configs not loading.
This commit is contained in:
parent
424cd2a914
commit
bbe6ece38d
@ -146,7 +146,7 @@ class HyperStrategyMixin(object):
|
||||
strategy logic.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""
|
||||
Initialize hyperoptable strategy mixin.
|
||||
"""
|
||||
|
@ -141,6 +141,7 @@ class IStrategy(ABC, HyperStrategyMixin):
|
||||
self.config = config
|
||||
# Dict to determine if analysis is necessary
|
||||
self._last_candle_seen_per_pair: Dict[str, datetime] = {}
|
||||
super().__init__(config)
|
||||
|
||||
@abstractmethod
|
||||
def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
|
||||
|
Loading…
Reference in New Issue
Block a user