feat(UI/Core): DB 디버거 팝업 리스트화, Optuna 적용 연동 및 Rust tail 코어 안정화

This commit is contained in:
Your Name
2026-09-03 02:29:30 +09:00
parent 93c6f711fa
commit ac1190f1fc
13 changed files with 529 additions and 34 deletions

View File

@@ -42,6 +42,11 @@ def tail_backtest_use_tick_exit(params: Optional[Dict[str, Any]] = None) -> bool
return _param_bool(params, "backtest_use_tick_exit", "TAIL_BACKTEST_USE_TICK_EXIT", True)
def tail_backtest_use_spill_fallback(params: Optional[Dict[str, Any]] = None) -> bool:
"""백테 틱 로드 시 3사 폴백(3초 지연 컷 간택) 시뮬레이션 사용 (기본 ON)."""
return _param_bool(params, "backtest_use_spill_fallback", "TAIL_BACKTEST_USE_SPILL_FALLBACK", True)
def tail_backtest_tick_fallback_ohlc(params: Optional[Dict[str, Any]] = None) -> bool:
"""해당 구간 틱 없을 때 3분봉 OHLC 폴백 (기본 OFF — 유령거래 방지)."""
return _param_bool(params, "backtest_tick_fallback_ohlc", "TAIL_BACKTEST_TICK_FALLBACK_OHLC", False)