optimized.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # 优化后的策略配置
  2. # 目标: 年化25-35%, 回撤<12%, 夏普>1.5
  3. risk:
  4. # 硬止损
  5. max_drawdown_stop: 0.11 # -11% 清仓 (接近-12%目标)
  6. max_daily_loss: 0.04 # -4% 单日减仓
  7. hard_stop_cooldown: 45 # 45天后重置
  8. # 仓位管理
  9. position_sizing:
  10. kelly_fraction: 0.35 # 提高凯利比例
  11. max_position: 0.7 # 提高最大仓位
  12. regime_multipliers:
  13. SPRING: 0.9
  14. SUMMER: 1.1 # 夏季允许超配
  15. AUTUMN: 0.4
  16. WINTER: 0.1
  17. agents:
  18. trend_hunter:
  19. ma_short: 8 # 更敏感的均线
  20. ma_long: 25
  21. adx_threshold: 18 # 降低ADX门槛
  22. rsrs_threshold: 0.55 # 降低RSRS门槛
  23. max_position: 0.9
  24. mean_reversion:
  25. bollinger_period: 20
  26. bollinger_std: 2.0
  27. max_position: 0.6
  28. momentum_surfer:
  29. breakout_period: 20
  30. volume_confirm: true
  31. max_position: 0.7
  32. routing:
  33. activation_threshold: 0.02 # 降低激活门槛
  34. lambda_risk: 0.5 # 平衡风险
  35. alpha_recent: 0.25 # 适度考虑近期表现