refactor: Ground Truth 산출물을 spot/futures 폴더로 분리

현물 GT JSON·차트를 spot/로 이동하고 선물 futures/ 디렉터리를 준비한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-09 18:51:30 +09:00
parent 75399ce79c
commit 8d53d1c0b4
22 changed files with 31 additions and 22 deletions

View File

@@ -108,39 +108,39 @@ def load_settings(env_path: Path | None = None) -> Settings:
db_path = _PROJECT_ROOT / db_path
gt_file = _resolve_project_path(
os.getenv("GROUND_TRUTH_FILE", "data/ground_truth/ground_truth_trades_v3.json")
os.getenv("GROUND_TRUTH_FILE", "data/ground_truth/spot/ground_truth_trades_v3.json")
)
gt_v1_file = _resolve_project_path(
os.getenv("GROUND_TRUTH_V1_FILE", "data/ground_truth/ground_truth_trades_v1.json")
os.getenv("GROUND_TRUTH_V1_FILE", "data/ground_truth/spot/ground_truth_trades_v1.json")
)
gt_v2_file = _resolve_project_path(
os.getenv("GROUND_TRUTH_V2_FILE", "data/ground_truth/ground_truth_trades_v2.json")
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/ground_truth_chart_v1.html")
os.getenv("GROUND_TRUTH_CHART_V1_FILE", "docs/02_ground_truth/spot/ground_truth_chart_v1.html")
)
gt_chart_v2 = _resolve_project_path(
os.getenv("GROUND_TRUTH_CHART_V2_FILE", "docs/02_ground_truth/ground_truth_chart_v2.html")
os.getenv("GROUND_TRUTH_CHART_V2_FILE", "docs/02_ground_truth/spot/ground_truth_chart_v2.html")
)
gt_chart_v3 = _resolve_project_path(
os.getenv("GROUND_TRUTH_CHART_V3_FILE", "docs/02_ground_truth/ground_truth_chart_v3.html")
os.getenv("GROUND_TRUTH_CHART_V3_FILE", "docs/02_ground_truth/spot/ground_truth_chart_v3.html")
)
gt_chart_sim_v1 = _resolve_project_path(
os.getenv(
"GROUND_TRUTH_CHART_SIM_V1_FILE",
"docs/02_ground_truth/ground_truth_chart_sim_v1.html",
"docs/02_ground_truth/spot/ground_truth_chart_sim_v1.html",
)
)
gt_chart_sim_v2 = _resolve_project_path(
os.getenv(
"GROUND_TRUTH_CHART_SIM_V2_FILE",
"docs/02_ground_truth/ground_truth_chart_sim_v2.html",
"docs/02_ground_truth/spot/ground_truth_chart_sim_v2.html",
)
)
gt_chart_sim_v3 = _resolve_project_path(
os.getenv(
"GROUND_TRUTH_CHART_SIM_V3_FILE",
"docs/02_ground_truth/ground_truth_chart_sim_v3.html",
"docs/02_ground_truth/spot/ground_truth_chart_sim_v3.html",
)
)