Fix some tests to use dataframe

This commit is contained in:
Matthias
2018-12-15 14:42:21 +01:00
parent 1c5031b468
commit 34ea214f7c
4 changed files with 8 additions and 4 deletions

View File

@@ -32,6 +32,7 @@ def parse_ticker_dataframe(ticker: list) -> DataFrame:
'volume': 'max',
})
frame.drop(frame.tail(1).index, inplace=True) # eliminate partial candle
logger.debug('Droppling last candle')
return frame