fixed flake

hmm, even in the comments?
This commit is contained in:
hroff-1902 2019-02-10 22:23:00 +03:00 committed by GitHub
parent 7ed15c64ba
commit d6c0c107ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ def parse_ticker_dataframe(ticker: list, ticker_interval: str,
infer_datetime_format=True)
# Some exchanges return int values for volume and even for ohlc.
# Convert them since TA-LIB indicators used in the strategy assume floats
# Convert them since TA-LIB indicators used in the strategy assume floats
# and fail with exception...
frame = frame.astype(dtype={'open': 'float', 'high': 'float', 'low': 'float', 'close': 'float',
'volume': 'float'})