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

@@ -0,0 +1,10 @@
import sys, os
sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/..')
# 1. get_env_bool로 실제 읽히는 값 확인
from kis_trader.utils.env import get_env_bool, get_env_from_db
val = get_env_bool("WS_ORDERBOOK_SAVE_KIS", False)
print(f"[get_env_bool WS_ORDERBOOK_SAVE_KIS] = {val}")
val2 = get_env_from_db("WS_ORDERBOOK_SAVE_KIS", "NOT_FOUND")
print(f"[get_env_from_db WS_ORDERBOOK_SAVE_KIS] = {val2!r}")