Add freqtrade quant strategies and deploy docs

This commit is contained in:
wiki-agent
2026-08-23 04:11:24 +00:00
parent 09ecdbb654
commit 523483f26d
73 changed files with 10346 additions and 0 deletions
@@ -0,0 +1,34 @@
{
"candidate": "phase7a_top3",
"note": "Phase 7a #3: profit_line=0.05, lock_profit_rate=0.33, buy_stop_profit_offset=1.04. Walk-forward score=0.498957.",
"train_score": 0.498957,
"full_year_backtest": {
"totalReturn": 36.37,
"maxDrawdown": -13.21,
"totalTrades": 81,
"winRate": 19.75,
"profitFactor": 2.25,
"sharpeRatio": 1.50,
"profitable_months": 8,
"monthlyPnL": {
"2025-01": 198.66,
"2025-02": -337.33,
"2025-03": 108.28,
"2025-04": 1300.30,
"2025-05": 1080.87,
"2025-06": 364.09,
"2025-07": 1044.39,
"2025-08": 337.43,
"2025-09": 391.18,
"2025-10": 1733.91,
"2025-11": -76.07,
"2025-12": -1322.14
},
"exit_reasons": {
"lock_profit_stop_pct": 6.17,
"breakeven_stop_pct": 64.20,
"trailing_stop_pct": 23.46,
"time_stop_pct": 6.17
}
}
}
@@ -0,0 +1,24 @@
{
"strategy_lever_rate": 1.5,
"profit_line": 0.05,
"lock_profit_rate": 0.33,
"open_time_interval": 7,
"up_line_span": 504,
"up_line_offset": 1.8,
"buy_stop_profit_span": 240,
"buy_stop_profit_offset": 1.04,
"ma_span_long": 1,
"regime_slope_lookback": 48,
"regime_slope_threshold": 0.008,
"regime_displace_threshold": 0.14,
"regime_vol_ema_span": 24,
"regime_compression_threshold": 0.59,
"regime_expansion_threshold": 1.0,
"regime_hysteresis_bars": 5,
"entry_up_line_span_short": 60,
"entry_ma_span_short": 7,
"entry_pullback_bars_min": 8,
"exit_max_loss_pct": 0.03,
"exit_breakeven_buffer": 0.001,
"exit_max_hold_bars": 720
}