chore: 작업 중 발생한 부수적 변경 사항 및 누락된 파일 전체 커밋

- 프론트엔드 UI 업데이트 (backtest.html, backtest.js) 엔진 라디오 버튼 통합 관련 반영
- Rust 플러그인(kis_rust_core) 및 컴파일 소스코드 추가
- CLI 백테스트 스크립트 수정 및 최신화
- 기타 스크래치 테스트 스크립트, 로그 요약 마크다운(.md) 등 누락 파일 일괄 반영
- 추가적으로 아직 발견되지 않은 엣지 케이스나 렌더링 오류가 포함되어 있을 가능성이 있음
This commit is contained in:
Your Name
2026-09-06 17:04:50 +09:00
parent 4dbb1387a1
commit e1ac8d119b
181 changed files with 8371 additions and 503 deletions

View File

@@ -38,6 +38,8 @@ _SCALP_BASE_KEYS: List[str] = [
"vol_mult",
"use_defense_filters",
"require_reversal_candle",
"use_macd_cross",
"skip_hts_scan_dupes",
"max_loss_krw",
"min_drop_pct_for_loss_cut",
"min_margin",
@@ -95,8 +97,12 @@ def suggest_scalp_params_tpe(trial: optuna.Trial) -> Dict[str, Any]:
combo["min_hold_sec"] = trial.suggest_int("min_hold_sec", 0, 300, step=10) # 확장: 120→300초
combo["max_daily"] = trial.suggest_int("max_daily", 5, 150, step=5) # 확장: 10→5, 100→150
combo["use_macd_cross"] = False
combo["skip_hts_scan_dupes"] = False
combo["use_macd_cross"] = trial.suggest_categorical(
"use_macd_cross", [False, True],
)
combo["skip_hts_scan_dupes"] = trial.suggest_categorical(
"skip_hts_scan_dupes", [False, True],
)
combo.update(suggest_orderbook_entry_tpe(trial))
combo.update(suggest_whipsaw_tpe(trial))
return combo