fix rebase problem

This commit is contained in:
Matthias
2018-07-19 19:41:42 +02:00
parent 760c79c5e9
commit 4fb9823cfb
4 changed files with 7 additions and 9 deletions

View File

@@ -88,13 +88,12 @@ class IStrategy(ABC):
:param dataframe: DataFrame
:return: DataFrame with sell column
"""
return self.strategy.populate_sell_trend(dataframe=dataframe)
def get_strategy_name(self) -> str:
"""
Returns strategy class name
"""
return self.strategy.__class__.__name__
return self.__class__.__name__
def analyze_ticker(self, ticker_history: List[Dict]) -> DataFrame:
"""