feat: initial project setup - Merton-KMV model, data pipeline, .agents workflows

This commit is contained in:
EDF Agent
2026-03-11 19:59:38 +09:00
commit a20a7207c4
28 changed files with 3212 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
# Architecture — EDF 프로젝트 구조
## 개요
주식 변동성 기반 한국 등급별 부도율 산출 (Merton-KMV 모형)
## 디렉토리 구조
```
EDF/
├── .agents/ # 에이전트 워크플로우 시스템
├── config/
│ └── settings.yaml # API 키, 모델 파라미터
├── src/
│ ├── data/
│ │ ├── krx_fetcher.py # KRX 주가/시총/변동성 수집
│ │ └── dart_fetcher.py # DART 재무제표 수집
│ ├── models/
│ │ └── merton.py # Merton DD/EDF 산출
│ ├── calibration/ # 보정, 블렌딩 (미구현)
│ └── validation/ # 백테스팅, 검증 (미구현)
├── data/ # 수집된 데이터
├── outputs/ # 결과물
├── docs/
│ ├── technical_methodology.md # 기술 문서
│ └── devlog/ # 세션별 작업 기록
└── requirements.txt
```
## 핵심 파이프라인
```
KRX 주가 → 변동성 계산 → Merton 풀이 → DD/EDF → Shadow Rating → 등급별 부도율
```