refactor: GT 타점 차트를 docs/02_ground_truth/gt로 분리

1단계 GT 차트(v1~v3)와 2단계 현물 sim 차트를 gt/spot 폴더로 구분하고 설정 경로를 갱신한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-09 18:58:19 +09:00
parent 8d53d1c0b4
commit 435717f4de
11 changed files with 10 additions and 7 deletions

View File

@@ -117,13 +117,13 @@ def load_settings(env_path: Path | None = None) -> Settings:
os.getenv("GROUND_TRUTH_V2_FILE", "data/ground_truth/spot/ground_truth_trades_v2.json")
)
gt_chart_v1 = _resolve_project_path(
os.getenv("GROUND_TRUTH_CHART_V1_FILE", "docs/02_ground_truth/spot/ground_truth_chart_v1.html")
os.getenv("GROUND_TRUTH_CHART_V1_FILE", "docs/02_ground_truth/gt/ground_truth_chart_v1.html")
)
gt_chart_v2 = _resolve_project_path(
os.getenv("GROUND_TRUTH_CHART_V2_FILE", "docs/02_ground_truth/spot/ground_truth_chart_v2.html")
os.getenv("GROUND_TRUTH_CHART_V2_FILE", "docs/02_ground_truth/gt/ground_truth_chart_v2.html")
)
gt_chart_v3 = _resolve_project_path(
os.getenv("GROUND_TRUTH_CHART_V3_FILE", "docs/02_ground_truth/spot/ground_truth_chart_v3.html")
os.getenv("GROUND_TRUTH_CHART_V3_FILE", "docs/02_ground_truth/gt/ground_truth_chart_v3.html")
)
gt_chart_sim_v1 = _resolve_project_path(
os.getenv(