refactor: Ground Truth 산출물을 spot/futures 폴더로 분리
현물 GT JSON·차트를 spot/로 이동하고 선물 futures/ 디렉터리를 준비한다. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -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",
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user