feat(Core/UI): 백테스트 전역 엔진 선택 버튼 추가 및 스캘핑 Rust 방어로직 포팅 1차 완료

This commit is contained in:
Your Name
2026-09-03 02:49:14 +09:00
parent ac1190f1fc
commit 3b7c21cde4
316 changed files with 56952 additions and 1 deletions

View File

@@ -65,6 +65,16 @@
<span id="live_source_status" class="text-muted" style="font-size:10px;white-space:nowrap;cursor:help" title="로딩 중…">시세: - | 호가: - | DB: -</span>
</div>
</div>
<!-- 백테스트 전역 엔진 선택 -->
<div id="bt_engine_nav" class="d-flex align-items-center gap-2 ms-3" title="모든 백테스트/옵투나에 적용될 엔진.">
<span class="text-muted" style="font-size:11px;white-space:nowrap">엔진</span>
<div class="btn-group btn-group-sm" role="group" aria-label="BT_ENGINE">
<input type="radio" class="btn-check" name="bt_engine_radio" id="bt_engine_python" value="python" checked>
<label class="btn btn-outline-secondary" for="bt_engine_python">Python</label>
<input type="radio" class="btn-check" name="bt_engine_radio" id="bt_engine_rust" value="rust">
<label class="btn btn-outline-secondary" for="bt_engine_rust">Rust</label>
</div>
</div>
</div>
</nav>