This commit is contained in:
creslin 2018-08-02 12:14:40 +00:00
parent 79b5125a3b
commit 9070cd1206

View File

@ -36,6 +36,7 @@ class candle_analyzed:
candle_row = property(get_candle_row, set_candle_row) candle_row = property(get_candle_row, set_candle_row)
class SignalType(Enum): class SignalType(Enum):
""" """
Enum to distinguish between buy and sell signals Enum to distinguish between buy and sell signals
@ -145,7 +146,7 @@ class IStrategy(ABC):
dataframe.loc['buy'] = 0 dataframe.loc['buy'] = 0
dataframe.loc['sell'] = 0 dataframe.loc['sell'] = 0
## Other Defs that want to see and run every ticker here: # Other Defs that want to see and run every ticker here:
# example = self.watch_ticker(do something) # example = self.watch_ticker(do something)
return dataframe return dataframe