stable/freqtrade/tests/strategy/test_strategy.py

135 lines
4.4 KiB
Python
Raw Normal View History

2018-01-28 07:38:41 +00:00
# pragma pylint: disable=missing-docstring, protected-access, C0103
2018-01-15 08:35:11 +00:00
import logging
2018-03-17 21:44:47 +00:00
2018-03-24 17:11:21 +00:00
from freqtrade.strategy.resolver import StrategyResolver
2018-01-15 08:35:11 +00:00
def test_search_strategy():
assert StrategyResolver._search_strategy('DefaultStrategy') == '.'
assert StrategyResolver._search_strategy('TestStrategy') == 'user_data.strategies.'
assert StrategyResolver._search_strategy('NotFoundStrategy') is None
2018-01-15 08:35:11 +00:00
def test_strategy_structure():
2018-03-24 17:11:21 +00:00
assert hasattr(StrategyResolver, 'populate_indicators')
assert hasattr(StrategyResolver, 'populate_buy_trend')
assert hasattr(StrategyResolver, 'populate_sell_trend')
2018-01-15 08:35:11 +00:00
def test_load_strategy(result):
2018-03-24 17:11:21 +00:00
strategy = StrategyResolver()
2018-01-15 08:35:11 +00:00
strategy.logger = logging.getLogger(__name__)
2018-03-24 17:11:21 +00:00
assert not hasattr(StrategyResolver, 'custom_strategy')
strategy._load_strategy('TestStrategy')
2018-01-15 08:35:11 +00:00
2018-03-24 17:11:21 +00:00
assert not hasattr(StrategyResolver, 'custom_strategy')
2018-01-15 08:35:11 +00:00
assert hasattr(strategy.custom_strategy, 'populate_indicators')
assert 'adx' in strategy.populate_indicators(result)
def test_load_not_found_strategy(caplog):
2018-03-24 17:11:21 +00:00
strategy = StrategyResolver()
strategy.logger = logging.getLogger(__name__)
2018-03-24 17:11:21 +00:00
assert not hasattr(StrategyResolver, 'custom_strategy')
strategy._load_strategy('NotFoundStrategy')
error_msg = "Impossible to load Strategy '{}'. This class does not " \
"exist or contains Python code errors".format('NotFoundStrategy')
assert ('test_strategy', logging.ERROR, error_msg) in caplog.record_tuples
2018-01-15 08:35:11 +00:00
def test_strategy(result):
strategy = StrategyResolver({'strategy': 'DefaultStrategy'})
2018-01-15 08:35:11 +00:00
assert hasattr(strategy.custom_strategy, 'minimal_roi')
assert strategy.minimal_roi[0] == 0.04
2018-01-15 08:35:11 +00:00
assert hasattr(strategy.custom_strategy, 'stoploss')
assert strategy.stoploss == -0.10
assert hasattr(strategy.custom_strategy, 'populate_indicators')
assert 'adx' in strategy.populate_indicators(result)
assert hasattr(strategy.custom_strategy, 'populate_buy_trend')
dataframe = strategy.populate_buy_trend(strategy.populate_indicators(result))
assert 'buy' in dataframe.columns
assert hasattr(strategy.custom_strategy, 'populate_sell_trend')
dataframe = strategy.populate_sell_trend(strategy.populate_indicators(result))
assert 'sell' in dataframe.columns
def test_strategy_override_minimal_roi(caplog):
2018-01-31 17:37:38 +00:00
caplog.set_level(logging.INFO)
2018-01-15 08:35:11 +00:00
config = {
'strategy': 'DefaultStrategy',
2018-01-15 08:35:11 +00:00
'minimal_roi': {
"0": 0.5
}
}
2018-03-24 17:11:21 +00:00
strategy = StrategyResolver(config)
2018-01-15 08:35:11 +00:00
assert hasattr(strategy.custom_strategy, 'minimal_roi')
assert strategy.minimal_roi[0] == 0.5
2018-03-24 17:11:21 +00:00
assert ('freqtrade.strategy.resolver',
2018-01-15 08:35:11 +00:00
logging.INFO,
'Override strategy \'minimal_roi\' with value in config file.'
) in caplog.record_tuples
def test_strategy_override_stoploss(caplog):
2018-01-31 17:37:38 +00:00
caplog.set_level(logging.INFO)
2018-01-15 08:35:11 +00:00
config = {
'strategy': 'DefaultStrategy',
2018-01-15 08:35:11 +00:00
'stoploss': -0.5
}
2018-03-24 17:11:21 +00:00
strategy = StrategyResolver(config)
2018-01-15 08:35:11 +00:00
assert hasattr(strategy.custom_strategy, 'stoploss')
assert strategy.stoploss == -0.5
2018-03-24 17:11:21 +00:00
assert ('freqtrade.strategy.resolver',
2018-01-15 08:35:11 +00:00
logging.INFO,
'Override strategy \'stoploss\' with value in config file: -0.5.'
) in caplog.record_tuples
def test_strategy_override_ticker_interval(caplog):
2018-01-31 17:37:38 +00:00
caplog.set_level(logging.INFO)
config = {
'strategy': 'DefaultStrategy',
'ticker_interval': 60
}
2018-03-24 17:11:21 +00:00
strategy = StrategyResolver(config)
assert hasattr(strategy.custom_strategy, 'ticker_interval')
assert strategy.ticker_interval == 60
2018-03-24 17:11:21 +00:00
assert ('freqtrade.strategy.resolver',
logging.INFO,
'Override strategy \'ticker_interval\' with value in config file: 60.'
2018-01-15 08:35:11 +00:00
) in caplog.record_tuples
def test_strategy_fallback_default_strategy():
2018-03-24 17:11:21 +00:00
strategy = StrategyResolver()
2018-01-15 08:35:11 +00:00
strategy.logger = logging.getLogger(__name__)
2018-03-24 17:11:21 +00:00
assert not hasattr(StrategyResolver, 'custom_strategy')
2018-01-15 08:35:11 +00:00
strategy._load_strategy('../../super_duper')
2018-03-24 17:11:21 +00:00
assert not hasattr(StrategyResolver, 'custom_strategy')
2018-01-15 08:35:11 +00:00
2018-01-18 05:50:12 +00:00
2018-01-15 08:35:11 +00:00
def test_strategy_singleton():
strategy1 = StrategyResolver({'strategy': 'DefaultStrategy'})
2018-01-15 08:35:11 +00:00
assert hasattr(strategy1.custom_strategy, 'minimal_roi')
assert strategy1.minimal_roi[0] == 0.04
2018-01-15 08:35:11 +00:00
2018-03-24 17:11:21 +00:00
strategy2 = StrategyResolver()
2018-01-15 08:35:11 +00:00
assert hasattr(strategy2.custom_strategy, 'minimal_roi')
assert strategy2.minimal_roi[0] == 0.04