freqtrade_origin/tests/strategy/test_strategy_loading.py

507 lines
18 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
from base64 import urlsafe_b64encode
2018-11-24 19:39:16 +00:00
from pathlib import Path
2018-03-24 20:56:20 +00:00
2018-03-25 14:28:04 +00:00
import pytest
from pandas import DataFrame
2018-03-25 14:28:04 +00:00
2023-01-17 19:05:18 +00:00
from freqtrade.configuration import Configuration
from freqtrade.exceptions import OperationalException
from freqtrade.resolvers import StrategyResolver
2018-03-24 20:56:20 +00:00
from freqtrade.strategy.interface import IStrategy
from tests.conftest import CURRENT_TEST_STRATEGY, log_has, log_has_re
2018-01-15 08:35:11 +00:00
def test_search_strategy():
2024-05-12 13:45:55 +00:00
default_location = Path(__file__).parent / "strats"
2019-07-12 20:45:49 +00:00
s, _ = StrategyResolver._search_object(
directory=default_location,
object_name=CURRENT_TEST_STRATEGY,
2020-09-17 05:38:56 +00:00
add_source=True,
2018-03-24 21:16:42 +00:00
)
assert issubclass(s, IStrategy)
2019-07-12 20:45:49 +00:00
s, _ = StrategyResolver._search_object(
directory=default_location,
2024-05-12 13:45:55 +00:00
object_name="NotFoundStrategy",
2020-09-17 05:38:56 +00:00
add_source=True,
2019-07-12 20:45:49 +00:00
)
assert s is None
2018-01-15 08:35:11 +00:00
2020-02-15 01:32:10 +00:00
def test_search_all_strategies_no_failed():
2020-02-18 19:12:10 +00:00
directory = Path(__file__).parent / "strats"
2022-10-14 14:41:25 +00:00
strategies = StrategyResolver._search_all_objects(directory, enum_failed=False)
2019-12-24 14:35:38 +00:00
assert isinstance(strategies, list)
assert len(strategies) == 13
2019-12-24 14:35:38 +00:00
assert isinstance(strategies[0], dict)
2020-02-15 01:32:10 +00:00
def test_search_all_strategies_with_failed():
2020-02-18 19:12:10 +00:00
directory = Path(__file__).parent / "strats"
2022-10-14 14:41:25 +00:00
strategies = StrategyResolver._search_all_objects(directory, enum_failed=True)
2020-02-15 01:32:10 +00:00
assert isinstance(strategies, list)
assert len(strategies) == 14
# with enum_failed=True search_all_objects() shall find 2 good strategies
2020-02-15 03:54:18 +00:00
# and 1 which fails to load
2024-05-12 13:45:55 +00:00
assert len([x for x in strategies if x["class"] is not None]) == 13
2024-05-12 13:45:55 +00:00
assert len([x for x in strategies if x["class"] is None]) == 1
2020-02-15 01:32:10 +00:00
directory = Path(__file__).parent / "strats_nonexistingdir"
2022-10-14 14:41:25 +00:00
strategies = StrategyResolver._search_all_objects(directory, enum_failed=True)
assert len(strategies) == 0
2020-02-15 01:32:10 +00:00
2022-09-19 18:59:40 +00:00
def test_load_strategy(default_conf, dataframe_1m):
2024-05-12 13:45:55 +00:00
default_conf.update(
{
"strategy": "SampleStrategy",
"strategy_path": str(Path(__file__).parents[2] / "freqtrade/templates"),
}
)
strategy = StrategyResolver.load_strategy(default_conf)
assert isinstance(strategy.__source__, str)
2024-05-12 13:45:55 +00:00
assert "class SampleStrategy" in strategy.__source__
2020-09-17 05:38:56 +00:00
assert isinstance(strategy.__file__, str)
2024-05-12 13:45:55 +00:00
assert "rsi" in strategy.advise_indicators(dataframe_1m, {"pair": "ETH/BTC"})
2018-01-15 08:35:11 +00:00
2022-09-19 18:59:40 +00:00
def test_load_strategy_base64(dataframe_1m, caplog, default_conf):
2024-05-12 13:45:55 +00:00
filepath = Path(__file__).parents[2] / "freqtrade/templates/sample_strategy.py"
encoded_string = urlsafe_b64encode(filepath.read_bytes()).decode("utf-8")
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": f"SampleStrategy:{encoded_string}"})
2019-07-25 05:17:25 +00:00
strategy = StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
assert "rsi" in strategy.advise_indicators(dataframe_1m, {"pair": "ETH/BTC"})
# Make sure strategy was loaded from base64 (using temp directory)!!
2024-05-12 13:45:55 +00:00
assert log_has_re(
r"Using resolved strategy SampleStrategy from '"
r".*(/|\\).*(/|\\)SampleStrategy\.py'\.\.\.",
caplog,
)
2024-04-25 09:02:34 +00:00
def test_load_strategy_invalid_directory(caplog, default_conf, tmp_path):
2024-05-12 13:45:55 +00:00
default_conf["user_data_dir"] = tmp_path
2024-04-25 09:02:34 +00:00
2024-05-12 13:45:55 +00:00
extra_dir = Path.cwd() / "some/path"
2022-10-14 14:59:55 +00:00
with pytest.raises(OperationalException, match=r"Impossible to load Strategy.*"):
2024-05-12 13:45:55 +00:00
StrategyResolver._load_strategy(
"StrategyTestV333", config=default_conf, extra_dir=extra_dir
)
2024-05-12 13:45:55 +00:00
assert log_has_re(r"Path .*" + r"some.*path.*" + r".* does not exist", caplog)
2018-03-25 14:28:04 +00:00
2024-04-25 09:02:34 +00:00
def test_load_not_found_strategy(default_conf, tmp_path):
2024-05-12 13:45:55 +00:00
default_conf["user_data_dir"] = tmp_path
default_conf["strategy"] = "NotFoundStrategy"
with pytest.raises(
OperationalException,
match=r"Impossible to load Strategy 'NotFoundStrategy'. "
r"This class does not exist or contains Python code errors.",
):
StrategyResolver.load_strategy(default_conf)
2019-09-21 17:54:44 +00:00
def test_load_strategy_noname(default_conf):
2024-05-12 13:45:55 +00:00
default_conf["strategy"] = ""
with pytest.raises(
OperationalException,
2024-05-12 15:51:21 +00:00
match="No strategy set. Please use `--strategy` to specify the strategy class to use.",
2024-05-12 13:45:55 +00:00
):
StrategyResolver.load_strategy(default_conf)
2019-09-21 17:54:44 +00:00
2024-05-12 13:45:55 +00:00
@pytest.mark.filterwarnings("ignore:deprecated")
@pytest.mark.parametrize("strategy_name", ["StrategyTestV2"])
2022-09-19 18:59:40 +00:00
def test_strategy_pre_v3(dataframe_1m, default_conf, strategy_name):
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": strategy_name})
2018-01-15 08:35:11 +00:00
strategy = StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
metadata = {"pair": "ETH/BTC"}
assert strategy.minimal_roi[0] == 0.04
2024-05-12 13:45:55 +00:00
assert default_conf["minimal_roi"]["0"] == 0.04
2018-01-15 08:35:11 +00:00
assert strategy.stoploss == -0.10
2024-05-12 13:45:55 +00:00
assert default_conf["stoploss"] == -0.10
2024-05-12 13:45:55 +00:00
assert strategy.timeframe == "5m"
assert default_conf["timeframe"] == "5m"
2018-01-15 08:35:11 +00:00
2022-09-19 18:59:40 +00:00
df_indicators = strategy.advise_indicators(dataframe_1m, metadata=metadata)
2024-05-12 13:45:55 +00:00
assert "adx" in df_indicators
2018-01-15 08:35:11 +00:00
2021-09-22 18:42:31 +00:00
dataframe = strategy.advise_entry(df_indicators, metadata=metadata)
2024-05-12 13:45:55 +00:00
assert "buy" not in dataframe.columns
assert "enter_long" in dataframe.columns
2018-01-15 08:35:11 +00:00
2021-09-22 18:42:31 +00:00
dataframe = strategy.advise_exit(df_indicators, metadata=metadata)
2024-05-12 13:45:55 +00:00
assert "sell" not in dataframe.columns
assert "exit_long" in dataframe.columns
2021-08-08 09:38:34 +00:00
2018-01-15 08:35:11 +00:00
def test_strategy_can_short(caplog, default_conf):
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update(
{
"strategy": CURRENT_TEST_STRATEGY,
}
)
strat = StrategyResolver.load_strategy(default_conf)
assert isinstance(strat, IStrategy)
2024-05-12 13:45:55 +00:00
default_conf["strategy"] = "StrategyTestV3Futures"
with pytest.raises(ImportError, match=""):
StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
default_conf["trading_mode"] = "futures"
strat = StrategyResolver.load_strategy(default_conf)
assert isinstance(strat, IStrategy)
2019-07-25 05:17:25 +00:00
def test_strategy_override_minimal_roi(caplog, default_conf):
2018-01-31 17:37:38 +00:00
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": CURRENT_TEST_STRATEGY, "minimal_roi": {"20": 0.1, "0": 0.5}})
strategy = StrategyResolver.load_strategy(default_conf)
2018-01-15 08:35:11 +00:00
assert strategy.minimal_roi[0] == 0.5
2021-06-13 09:34:44 +00:00
assert log_has(
2024-05-12 13:45:55 +00:00
"Override strategy 'minimal_roi' with value in config file: {'20': 0.1, '0': 0.5}.", caplog
)
2018-01-15 08:35:11 +00:00
2019-07-25 05:17:25 +00:00
def test_strategy_override_stoploss(caplog, default_conf):
2018-01-31 17:37:38 +00:00
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": CURRENT_TEST_STRATEGY, "stoploss": -0.5})
strategy = StrategyResolver.load_strategy(default_conf)
2018-01-15 08:35:11 +00:00
assert strategy.stoploss == -0.5
assert log_has("Override strategy 'stoploss' with value in config file: -0.5.", caplog)
def test_strategy_override_max_open_trades(caplog, default_conf):
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": CURRENT_TEST_STRATEGY, "max_open_trades": 7})
strategy = StrategyResolver.load_strategy(default_conf)
assert strategy.max_open_trades == 7
assert log_has("Override strategy 'max_open_trades' with value in config file: 7.", caplog)
2019-07-25 05:17:25 +00:00
def test_strategy_override_trailing_stop(caplog, default_conf):
2019-01-05 06:10:25 +00:00
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": CURRENT_TEST_STRATEGY, "trailing_stop": True})
strategy = StrategyResolver.load_strategy(default_conf)
2019-01-05 06:10:25 +00:00
assert strategy.trailing_stop
assert isinstance(strategy.trailing_stop, bool)
assert log_has("Override strategy 'trailing_stop' with value in config file: True.", caplog)
2019-01-05 06:10:25 +00:00
2019-07-25 05:17:25 +00:00
def test_strategy_override_trailing_stop_positive(caplog, default_conf):
2019-01-05 06:10:25 +00:00
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update(
{
"strategy": CURRENT_TEST_STRATEGY,
"trailing_stop_positive": -0.1,
"trailing_stop_positive_offset": -0.2,
}
)
strategy = StrategyResolver.load_strategy(default_conf)
2019-01-05 06:10:25 +00:00
assert strategy.trailing_stop_positive == -0.1
2024-05-12 13:45:55 +00:00
assert log_has(
"Override strategy 'trailing_stop_positive' with value in config file: -0.1.", caplog
)
2019-01-05 06:10:25 +00:00
assert strategy.trailing_stop_positive_offset == -0.2
2024-05-12 13:45:55 +00:00
assert log_has(
"Override strategy 'trailing_stop_positive' with value in config file: -0.1.", caplog
)
2019-01-05 06:10:25 +00:00
2020-06-01 18:47:27 +00:00
def test_strategy_override_timeframe(caplog, default_conf):
2018-01-31 17:37:38 +00:00
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update(
{"strategy": CURRENT_TEST_STRATEGY, "timeframe": 60, "stake_currency": "ETH"}
)
strategy = StrategyResolver.load_strategy(default_conf)
assert strategy.timeframe == 60
2024-05-12 13:45:55 +00:00
assert strategy.stake_currency == "ETH"
assert log_has("Override strategy 'timeframe' with value in config file: 60.", caplog)
2018-07-18 19:45:04 +00:00
2019-07-25 05:17:25 +00:00
def test_strategy_override_process_only_new_candles(caplog, default_conf):
2018-08-09 18:12:45 +00:00
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": CURRENT_TEST_STRATEGY, "process_only_new_candles": False})
strategy = StrategyResolver.load_strategy(default_conf)
2018-08-09 18:12:45 +00:00
assert not strategy.process_only_new_candles
2024-05-12 13:45:55 +00:00
assert log_has(
"Override strategy 'process_only_new_candles' with value in config file: False.", caplog
)
2018-08-09 18:12:45 +00:00
2018-08-09 18:17:55 +00:00
2019-07-25 05:17:25 +00:00
def test_strategy_override_order_types(caplog, default_conf):
caplog.set_level(logging.INFO)
order_types = {
2024-05-12 13:45:55 +00:00
"entry": "market",
"exit": "limit",
"stoploss": "limit",
"stoploss_on_exchange": True,
}
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": CURRENT_TEST_STRATEGY, "order_types": order_types})
strategy = StrategyResolver.load_strategy(default_conf)
assert strategy.order_types
2024-05-12 13:45:55 +00:00
for method in ["entry", "exit", "stoploss", "stoploss_on_exchange"]:
assert strategy.order_types[method] == order_types[method]
2024-05-12 13:45:55 +00:00
assert log_has(
"Override strategy 'order_types' with value in config file:"
" {'entry': 'market', 'exit': 'limit', 'stoploss': 'limit',"
" 'stoploss_on_exchange': True}.",
caplog,
)
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": CURRENT_TEST_STRATEGY, "order_types": {"exit": "market"}})
2018-11-17 12:12:11 +00:00
# Raise error for invalid configuration
2024-05-12 13:45:55 +00:00
with pytest.raises(
ImportError,
match=r"Impossible to load Strategy '" + CURRENT_TEST_STRATEGY + "'. "
r"Order-types mapping is incomplete.",
):
StrategyResolver.load_strategy(default_conf)
2018-11-17 12:12:11 +00:00
2019-07-25 05:17:25 +00:00
def test_strategy_override_order_tif(caplog, default_conf):
2018-12-10 18:17:56 +00:00
caplog.set_level(logging.INFO)
order_time_in_force = {
2024-05-12 13:45:55 +00:00
"entry": "FOK",
"exit": "GTC",
2018-12-10 18:17:56 +00:00
}
2024-05-12 13:45:55 +00:00
default_conf.update(
{"strategy": CURRENT_TEST_STRATEGY, "order_time_in_force": order_time_in_force}
)
strategy = StrategyResolver.load_strategy(default_conf)
2018-12-10 18:17:56 +00:00
assert strategy.order_time_in_force
2024-05-12 13:45:55 +00:00
for method in ["entry", "exit"]:
assert strategy.order_time_in_force[method] == order_time_in_force[method]
2018-12-10 18:17:56 +00:00
2024-05-12 13:45:55 +00:00
assert log_has(
"Override strategy 'order_time_in_force' with value in config file:"
" {'entry': 'FOK', 'exit': 'GTC'}.",
caplog,
)
2018-12-10 18:17:56 +00:00
2024-05-12 13:45:55 +00:00
default_conf.update(
{"strategy": CURRENT_TEST_STRATEGY, "order_time_in_force": {"entry": "FOK"}}
)
2018-12-10 18:17:56 +00:00
# Raise error for invalid configuration
2024-05-12 13:45:55 +00:00
with pytest.raises(
ImportError,
match=f"Impossible to load Strategy '{CURRENT_TEST_STRATEGY}'. "
"Order-time-in-force mapping is incomplete.",
):
StrategyResolver.load_strategy(default_conf)
2018-12-10 18:17:56 +00:00
2022-04-05 18:07:58 +00:00
def test_strategy_override_use_exit_signal(caplog, default_conf):
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update(
{
"strategy": CURRENT_TEST_STRATEGY,
}
)
strategy = StrategyResolver.load_strategy(default_conf)
2022-04-05 18:07:58 +00:00
assert strategy.use_exit_signal
assert isinstance(strategy.use_exit_signal, bool)
# must be inserted to configuration
2024-05-12 13:45:55 +00:00
assert "use_exit_signal" in default_conf
assert default_conf["use_exit_signal"]
2024-05-12 13:45:55 +00:00
default_conf.update(
{
"strategy": CURRENT_TEST_STRATEGY,
"use_exit_signal": False,
}
)
strategy = StrategyResolver.load_strategy(default_conf)
2022-04-05 18:07:58 +00:00
assert not strategy.use_exit_signal
assert isinstance(strategy.use_exit_signal, bool)
assert log_has("Override strategy 'use_exit_signal' with value in config file: False.", caplog)
def test_strategy_override_use_exit_profit_only(caplog, default_conf):
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update(
{
"strategy": CURRENT_TEST_STRATEGY,
}
)
strategy = StrategyResolver.load_strategy(default_conf)
assert not strategy.exit_profit_only
assert isinstance(strategy.exit_profit_only, bool)
# must be inserted to configuration
2024-05-12 13:45:55 +00:00
assert "exit_profit_only" in default_conf
assert not default_conf["exit_profit_only"]
2024-05-12 13:45:55 +00:00
default_conf.update(
{
"strategy": CURRENT_TEST_STRATEGY,
"exit_profit_only": True,
}
)
strategy = StrategyResolver.load_strategy(default_conf)
assert strategy.exit_profit_only
assert isinstance(strategy.exit_profit_only, bool)
assert log_has("Override strategy 'exit_profit_only' with value in config file: True.", caplog)
def test_strategy_max_open_trades_infinity_from_strategy(caplog, default_conf):
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update(
{
"strategy": CURRENT_TEST_STRATEGY,
}
)
del default_conf["max_open_trades"]
strategy = StrategyResolver.load_strategy(default_conf)
# this test assumes -1 set to 'max_open_trades' in CURRENT_TEST_STRATEGY
2024-05-12 13:45:55 +00:00
assert strategy.max_open_trades == float("inf")
assert default_conf["max_open_trades"] == float("inf")
def test_strategy_max_open_trades_infinity_from_config(caplog, default_conf, mocker):
caplog.set_level(logging.INFO)
2024-05-12 13:45:55 +00:00
default_conf.update(
{"strategy": CURRENT_TEST_STRATEGY, "max_open_trades": -1, "exchange": "binance"}
)
configuration = Configuration(args=default_conf)
parsed_config = configuration.get_config()
2024-05-12 13:45:55 +00:00
assert parsed_config["max_open_trades"] == float("inf")
strategy = StrategyResolver.load_strategy(parsed_config)
2024-05-12 13:45:55 +00:00
assert strategy.max_open_trades == float("inf")
2024-05-12 13:45:55 +00:00
@pytest.mark.filterwarnings("ignore:deprecated")
2022-04-05 18:43:39 +00:00
def test_missing_implements(default_conf, caplog):
default_location = Path(__file__).parent / "strats"
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": "StrategyTestV2", "strategy_path": default_location})
2022-04-05 18:43:39 +00:00
StrategyResolver.load_strategy(default_conf)
log_has_re(r"DEPRECATED: .*use_sell_signal.*use_exit_signal.", caplog)
2024-05-12 13:45:55 +00:00
default_conf["trading_mode"] = "futures"
with pytest.raises(
OperationalException, match=r"DEPRECATED: .*use_sell_signal.*use_exit_signal."
):
2022-04-05 18:43:39 +00:00
StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
default_conf["trading_mode"] = "spot"
2022-04-05 18:43:39 +00:00
default_location = Path(__file__).parent / "strats/broken_strats"
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": "TestStrategyNoImplements", "strategy_path": default_location})
with pytest.raises(
OperationalException, match=r"`populate_entry_trend` or `populate_buy_trend`.*"
):
StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
default_conf["strategy"] = "TestStrategyNoImplementSell"
2024-05-12 13:45:55 +00:00
with pytest.raises(
OperationalException, match=r"`populate_exit_trend` or `populate_sell_trend`.*"
):
StrategyResolver.load_strategy(default_conf)
2022-03-12 10:15:27 +00:00
# Futures mode is more strict ...
2024-05-12 13:45:55 +00:00
default_conf["trading_mode"] = "futures"
2024-05-12 13:45:55 +00:00
with pytest.raises(OperationalException, match=r"`populate_exit_trend` must be implemented.*"):
StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
default_conf["strategy"] = "TestStrategyNoImplements"
with pytest.raises(OperationalException, match=r"`populate_entry_trend` must be implemented.*"):
StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
default_conf["strategy"] = "TestStrategyImplementCustomSell"
with pytest.raises(
OperationalException, match=r"Please migrate your implementation of `custom_sell`.*"
):
2022-03-12 10:15:27 +00:00
StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
default_conf["strategy"] = "TestStrategyImplementBuyTimeout"
with pytest.raises(
OperationalException, match=r"Please migrate your implementation of `check_buy_timeout`.*"
):
StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
default_conf["strategy"] = "TestStrategyImplementSellTimeout"
with pytest.raises(
OperationalException, match=r"Please migrate your implementation of `check_sell_timeout`.*"
):
StrategyResolver.load_strategy(default_conf)
def test_call_deprecated_function(default_conf):
default_location = Path(__file__).parent / "strats/broken_strats/"
2024-05-12 13:45:55 +00:00
del default_conf["timeframe"]
default_conf.update({"strategy": "TestStrategyLegacyV1", "strategy_path": default_location})
with pytest.raises(
OperationalException, match=r"Strategy Interface v1 is no longer supported.*"
):
StrategyResolver.load_strategy(default_conf)
2019-08-26 17:44:33 +00:00
2022-09-19 18:59:40 +00:00
def test_strategy_interface_versioning(dataframe_1m, default_conf):
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": "StrategyTestV2"})
strategy = StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
metadata = {"pair": "ETH/BTC"}
2019-08-26 17:44:33 +00:00
assert strategy.INTERFACE_VERSION == 2
2022-09-19 18:59:40 +00:00
indicator_df = strategy.advise_indicators(dataframe_1m, metadata=metadata)
2018-11-25 18:03:28 +00:00
assert isinstance(indicator_df, DataFrame)
2024-05-12 13:45:55 +00:00
assert "adx" in indicator_df.columns
2022-09-19 18:59:40 +00:00
enterdf = strategy.advise_entry(dataframe_1m, metadata=metadata)
2021-08-18 10:19:17 +00:00
assert isinstance(enterdf, DataFrame)
2021-08-24 04:45:09 +00:00
2024-05-12 13:45:55 +00:00
assert "buy" not in enterdf.columns
assert "enter_long" in enterdf.columns
2021-08-08 09:38:34 +00:00
2022-09-19 18:59:40 +00:00
exitdf = strategy.advise_exit(dataframe_1m, metadata=metadata)
2021-08-18 10:19:17 +00:00
assert isinstance(exitdf, DataFrame)
2024-05-12 13:45:55 +00:00
assert "sell" not in exitdf
assert "exit_long" in exitdf
def test_strategy_ft_load_params_from_file(mocker, default_conf):
2024-05-12 13:45:55 +00:00
default_conf.update({"strategy": "StrategyTestV2"})
del default_conf["max_open_trades"]
mocker.patch(
"freqtrade.strategy.hyper.HyperStrategyMixin.load_params_from_file",
return_value={"params": {"max_open_trades": {"max_open_trades": -1}}},
)
strategy = StrategyResolver.load_strategy(default_conf)
2024-05-12 13:45:55 +00:00
assert strategy.max_open_trades == float("inf")
assert strategy.config["max_open_trades"] == float("inf")