Remove indicator_helpers.py and test

This commit is contained in:
hroff-1902
2019-10-05 11:51:27 +03:00
parent e93bbd3831
commit e1b8485b51
2 changed files with 0 additions and 55 deletions

View File

@@ -1,15 +0,0 @@
# pragma pylint: disable=missing-docstring
import pandas as pd
from freqtrade.indicator_helpers import went_down, went_up
def test_went_up():
series = pd.Series([1, 2, 3, 1])
assert went_up(series).equals(pd.Series([False, True, True, False]))
def test_went_down():
series = pd.Series([1, 2, 3, 1])
assert went_down(series).equals(pd.Series([False, False, False, True]))