21 lines
748 B
Markdown
21 lines
748 B
Markdown
# scripts — 단계별 CLI
|
|
|
|
프로젝트 루트에서 실행하세요. 각 스크립트는 `_bootstrap.py`로 `.env`와 `config`를 로드합니다.
|
|
|
|
```bash
|
|
python scripts/01_download.py
|
|
python scripts/02_ground_truth.py
|
|
python scripts/03_analyze_enrich.py
|
|
python scripts/03_analyze_trades.py
|
|
python scripts/04_match_rules.py
|
|
python scripts/04_simulation_report.py # 1단계 Go/No-Go
|
|
python scripts/05_run_monitor.py # 알림만
|
|
python scripts/06_verify_live_dryrun.py # Phase A dry-run·tier 점검
|
|
python scripts/06_execute_live.py # 3단계 실거래
|
|
python scripts/05_chart_truth.py
|
|
python scripts/05_chart_bb.py
|
|
python scripts/verify_env.py
|
|
```
|
|
|
|
상세 구조: [docs/reference/STRUCTURE.md](../docs/reference/STRUCTURE.md)
|