Fix typehint

This commit is contained in:
Matthias 2019-12-26 10:26:19 +01:00
parent 91c70a0e9c
commit dbe8f727cb
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ class IStrategy(ABC):
else:
return current_profit > roi
def tickerdata_to_dataframe(self, tickerdata: Dict[str, List]) -> Dict[str, DataFrame]:
def tickerdata_to_dataframe(self, tickerdata: Dict[str, DataFrame]) -> Dict[str, DataFrame]:
"""
Creates a dataframe and populates indicators for given ticker data
Used by optimize operations only, not during dry / live runs.