GT MTF 프로필·캘리브레이션과 04 매칭/시뮬/실거래 파이프라인을 추가한다.

3분~일봉 GT 타점 분석(03c), leg 체결 순서 수정, 총자산 90% 검증 루프,
walk-forward Go/No-Go 시뮬, monitor·live_trader 및 reference 문서를 포함한다.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-31 11:27:50 +09:00
parent b52d61b777
commit 2cb67c42b3
47 changed files with 5956 additions and 209 deletions

View File

@@ -1,29 +1,30 @@
# DeepCoin 로드맵 (WLD)
## 완료
## 완료 (기반)
| 단계 | 내용 | 실행 |
|------|------|------|
| 01 데이터 | 1년치 3분~일봉 `coins.db` 적재 | `python scripts/01_download.py` |
| 02 Ground Truth | 매수·매도 정답 타점 JSON | `python scripts/02_ground_truth.py` |
| 03 분석 준비 | 8TF 기술적 지표·패턴 enrich | `python scripts/03_analyze_enrich.py` |
| 01~03c | DB, GT, enrich, GT MTF 스냅샷, **전 TF 프로필(매수/매도 대조)** | `01`~`03_gt_mtf_profile.py` |
| 04 | GT 프로필 + leg_gt EV + holdout | `04_match_rules.py` |
| 05 | 텔레그램 알림 (주문 없음) | `05_run_monitor.py` |
## 진행 예정
## 남은 작업 (합의 순서)
| 단계 | 내용 | 패키지 | 실행 (예정) |
|------|------|--------|-------------|
| 03b | GT 타점 3분~일봉 기술적 상태 분석 (CLI 준비, 전량 CSV 재실행 필요) | `deepcoin/analysis/` | `python scripts/03_analyze_trades.py` |
| 04 | GT에 가장 근접한 기술적 상태 선택 | `deepcoin/matching/` | `python scripts/04_match_rules.py` |
| 05 | 1분 단위 상태 확인·실거래 | `deepcoin/ops/` | `python scripts/05_run_monitor.py` |
| 순서 | 단계 | 내용 | 실행 |
|------|------|------|------|
| **1** | 시뮬레이션 | walk-forward·민감도·Go/No-Go | `04_simulation_report.py` |
| **2** | 문서화 | SIMULATION, LIVE, RISK, OPERATIONS | `docs/reference/` |
| **3** | 오픈 | **실거래** (소액) | `06_execute_live.py` |
| **4** | 검증 | 실계좌 1~2주 | `docs/05_ops/live_verification_*.md` |
| **5** | 지속 | 실거래 유지·월간 재시뮬 | 06 상시 |
가이드: [SIMULATION.md](SIMULATION.md) · [LIVE_TRADING.md](LIVE_TRADING.md)
## 디렉터리
구조: [STRUCTURE.md](STRUCTURE.md)
```text
scripts/01~05_*.py 단계별 CLI
data/ coins.db, ground_truth/, ops/
docs/reference/ 가이드·명세
docs/02~05, charts/ 단계별 산출물 (HTML·CSV)
deepcoin/ 단계별 Python 패키지
scripts/01~06_*.py
data/coins.db, ground_truth/, ops/live_trades.jsonl
docs/04_matching/simulation_report.*
docs/reference/
```