fix method docs
This commit is contained in:
parent
157f7da8ce
commit
f78044da6d
@ -33,7 +33,6 @@ class IStrategy(ABC):
|
|||||||
Based on TA indicators, populates the buy signal for the given dataframe
|
Based on TA indicators, populates the buy signal for the given dataframe
|
||||||
:param dataframe: DataFrame
|
:param dataframe: DataFrame
|
||||||
:return: DataFrame with buy column
|
:return: DataFrame with buy column
|
||||||
:return:
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
@ -41,5 +40,5 @@ class IStrategy(ABC):
|
|||||||
"""
|
"""
|
||||||
Based on TA indicators, populates the sell signal for the given dataframe
|
Based on TA indicators, populates the sell signal for the given dataframe
|
||||||
:param dataframe: DataFrame
|
:param dataframe: DataFrame
|
||||||
:return: DataFrame with buy column
|
:return: DataFrame with sell column
|
||||||
"""
|
"""
|
||||||
|
@ -27,8 +27,7 @@ class StrategyResolver(object):
|
|||||||
def __init__(self, config: Optional[Dict] = None) -> None:
|
def __init__(self, config: Optional[Dict] = None) -> None:
|
||||||
"""
|
"""
|
||||||
Load the custom class from config parameter
|
Load the custom class from config parameter
|
||||||
:param config:
|
:param config: configuration dictionary or None
|
||||||
:return:
|
|
||||||
"""
|
"""
|
||||||
config = config or {}
|
config = config or {}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user