stable/freqtrade/tests/test_talib.py

17 lines
418 B
Python
Raw Normal View History

import talib.abstract as ta
import pandas as pd
2018-08-05 21:52:06 +00:00
def test_talib_bollingerbands_near_zero_values():
inputs = pd.DataFrame([
{'close': 0.00000010},
{'close': 0.00000011},
{'close': 0.00000012},
{'close': 0.00000013},
{'close': 0.00000014}
])
bollinger = ta.BBANDS(inputs, matype=0, timeperiod=2)
2018-08-05 21:52:06 +00:00
assert (bollinger['upperband'][3] != bollinger['middleband'][3])