fix method docs

This commit is contained in:
gcarq 2018-03-25 20:24:56 +02:00
parent 157f7da8ce
commit f78044da6d
2 changed files with 2 additions and 4 deletions

View File

@ -33,7 +33,6 @@ class IStrategy(ABC):
Based on TA indicators, populates the buy signal for the given dataframe
:param dataframe: DataFrame
:return: DataFrame with buy column
:return:
"""
@abstractmethod
@ -41,5 +40,5 @@ class IStrategy(ABC):
"""
Based on TA indicators, populates the sell signal for the given dataframe
:param dataframe: DataFrame
:return: DataFrame with buy column
:return: DataFrame with sell column
"""

View File

@ -27,8 +27,7 @@ class StrategyResolver(object):
def __init__(self, config: Optional[Dict] = None) -> None:
"""
Load the custom class from config parameter
:param config:
:return:
:param config: configuration dictionary or None
"""
config = config or {}