Add trend MACD spot strategy

This commit is contained in:
Codex
2026-06-21 09:15:38 +03:00
parent f19856ca6e
commit 8a211acf98
18 changed files with 593 additions and 81 deletions
+8 -1
View File
@@ -21,8 +21,11 @@ def make_settings():
auto_select_symbols=True,
top_symbols_count=6,
symbols=(),
base_interval="1",
strategy_mode="legacy",
base_interval="60",
kline_limit=240,
trend_interval="D",
trend_kline_limit=260,
loop_interval_seconds=5,
fast_trading_enabled=False,
fast_loop_interval_seconds=1.0,
@@ -62,6 +65,10 @@ def make_settings():
kelly_sizing_enabled=True,
kelly_fraction=0.25,
kelly_max_fraction=0.20,
risk_per_trade_percent=0.01,
atr_trailing_multiplier=2.2,
trend_rsi_min=45.0,
trend_rsi_max=65.0,
time_series_forecast_enabled=True,
time_series_min_candles=120,
time_series_forecast_horizon=3,