Add LTC to fixed Torch trading pairs

This commit is contained in:
Codex
2026-06-22 18:59:13 +03:00
parent 680475948b
commit 8ae6d4e3a5
6 changed files with 14 additions and 14 deletions
+3 -3
View File
@@ -75,7 +75,7 @@ def test_default_symbols_are_fixed_trend_pairs(tmp_path, monkeypatch) -> None:
settings = load_settings(env_file)
assert settings.auto_select_symbols is False
assert settings.top_symbols_count == 3
assert settings.top_symbols_count == len(FIXED_SPOT_SYMBOLS)
assert settings.symbols == FIXED_SPOT_SYMBOLS
assert settings.strategy_mode == "torch_forecast"
assert settings.base_interval == "60"
@@ -84,7 +84,7 @@ def test_default_symbols_are_fixed_trend_pairs(tmp_path, monkeypatch) -> None:
assert settings.time_series_forecast_enabled is True
def test_torch_forecast_forces_fixed_three_symbols(tmp_path, monkeypatch) -> None:
def test_torch_forecast_forces_fixed_symbols(tmp_path, monkeypatch) -> None:
for key in (
"AUTO_SELECT_SYMBOLS",
"TOP_SYMBOLS_COUNT",
@@ -111,6 +111,6 @@ def test_torch_forecast_forces_fixed_three_symbols(tmp_path, monkeypatch) -> Non
settings = load_settings(env_file)
assert settings.auto_select_symbols is False
assert settings.top_symbols_count == 3
assert settings.top_symbols_count == len(FIXED_SPOT_SYMBOLS)
assert settings.symbols == FIXED_SPOT_SYMBOLS
assert settings.time_series_forecast_enabled is True