Remove unused code on Strategy interface

This commit is contained in:
Gerald Lonlas
2018-01-28 13:21:25 -08:00
parent 9090715ae5
commit 9f8539f13e
2 changed files with 4 additions and 17 deletions

View File

@@ -17,13 +17,6 @@ class IStrategy(ABC):
stoploss -> float: optimal stoploss designed for the strategy
ticker_interval -> int: value of the ticker interval to use for the strategy
"""
@property
def name(self) -> str:
"""
Name of the strategy.
:return: str representation of the class name
"""
return self.__class__.__name__
@abstractmethod
def populate_indicators(self, dataframe: DataFrame) -> DataFrame: