drop minimum_date from get_ticker_history

This commit is contained in:
gcarq
2017-11-06 00:06:59 +01:00
parent 60e651cb4c
commit 810f2f9243
4 changed files with 9 additions and 17 deletions

View File

@@ -81,8 +81,7 @@ def analyze_ticker(pair: str) -> DataFrame:
add several TA indicators and buy signal to it
:return DataFrame with ticker data and indicator data
"""
minimum_date = arrow.utcnow().shift(hours=-24)
data = get_ticker_history(pair, minimum_date)
data = get_ticker_history(pair)
dataframe = parse_ticker_dataframe(data)
if dataframe.empty: