remove @abstractmethod as this method may not be present in new

strategies
This commit is contained in:
Matthias 2018-07-18 21:31:19 +02:00
parent 921f645623
commit 7300c0a0fe

View File

@ -70,7 +70,6 @@ class IStrategy(ABC):
def __init__(self, config: dict) -> None: def __init__(self, config: dict) -> None:
self.config = config self.config = config
@abstractmethod
def populate_indicators(self, dataframe: DataFrame) -> DataFrame: def populate_indicators(self, dataframe: DataFrame) -> DataFrame:
""" """
Populate indicators that will be used in the Buy and Sell strategy Populate indicators that will be used in the Buy and Sell strategy
@ -81,7 +80,6 @@ class IStrategy(ABC):
DeprecationWarning) DeprecationWarning)
return dataframe return dataframe
@abstractmethod
def populate_buy_trend(self, dataframe: DataFrame) -> DataFrame: def populate_buy_trend(self, dataframe: DataFrame) -> DataFrame:
""" """
Based on TA indicators, populates the buy signal for the given dataframe Based on TA indicators, populates the buy signal for the given dataframe
@ -93,7 +91,6 @@ class IStrategy(ABC):
dataframe.loc[(), 'buy'] = 0 dataframe.loc[(), 'buy'] = 0
return dataframe return dataframe
@abstractmethod
def populate_sell_trend(self, dataframe: DataFrame) -> DataFrame: def populate_sell_trend(self, dataframe: DataFrame) -> DataFrame:
""" """
Based on TA indicators, populates the sell signal for the given dataframe Based on TA indicators, populates the sell signal for the given dataframe