From korean-trading
DCF(Discounted Cash Flow) 밸류에이션 분석. "DCF", "적정가", "내재가치", "밸류에이션" 등에 자동 활성화
How this skill is triggered — by the user, by Claude, or both
Slash command
/korean-trading:dcf-valuationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
# 재무비율 (PER/PBR/ROE/EPS)
node plugins/korean-trading/dist/kis/financial-ratio.js {ticker}
# 현재가 (시총, 상장주수)
node plugins/korean-trading/dist/kis/current-price.js {ticker}
# 기업재무정보 (매출액, 영업이익, 순이익, 총자산, 총부채)
node plugins/korean-trading/dist/fsc/financial-statements.js {crno} {year} summary
# 한국 금리 (10년 국고채 = 무위험수익률)
node plugins/korean-trading/dist/ecos/indicators.js bond_10y
과거 재무 데이터 분석
5년 FCFF 프로젝션
성장률 시나리오
| 시나리오 | Year 1-2 | Year 3-5 | 영구성장률 |
|---|---|---|---|
| Bear | 과거 성장률 × 0.5 | 과거 × 0.3 | 1.5% |
| Base | 과거 성장률 | 과거 × 0.7 | 2.0% |
| Bull | 과거 성장률 × 1.3 | 과거 × 1.0 | 2.5% |
자기자본비용 (Ke) = Rf + β × ERP
타인자본비용 (Kd): 회사채 수익률 또는 업종 평균 차입금리 × (1 - 세율)
WACC = Ke × (E/V) + Kd × (1-t) × (D/V)
## DCF 밸류에이션 — {종목명} ({ticker})
### 핵심 가정
| 항목 | 값 |
|------|-----|
| 무위험수익률 (Rf) | {bond_10y}% |
| 주식위험프리미엄 (ERP) | 6.0% |
| 베타 (β) | {beta} |
| WACC | {wacc}% |
| 영구성장률 (g) | {g}% |
### 5년 FCFF 프로젝션
| 연도 | 매출액 | 성장률 | 영업이익 | FCFF |
|------|-------|--------|---------|------|
| Year 1 | ... | ...% | ... | ... |
| ... | ... | ... | ... | ... |
### 밸류에이션 결과
| 시나리오 | 적정주가 | 현재가 대비 |
|---------|---------|-----------|
| Bear | {bear_price}원 | {bear_upside}% |
| Base | {base_price}원 | {base_upside}% |
| Bull | {bull_price}원 | {bull_upside}% |
### 민감도 분석 (WACC × 영구성장률)
| WACC \ g | 1.5% | 2.0% | 2.5% |
|----------|------|------|------|
| WACC-1% | ... | ... | ... |
| WACC | ... | ... | ... |
| WACC+1% | ... | ... | ... |
node plugins/korean-trading/dist/dart/corp-codes.js → ticker로 검색npx claudepluginhub aydenden/cc-plugins --plugin korean-tradingPerforms discounted cash flow (DCF) valuation of companies, projects, or assets. Projects free cash flows, calculates WACC, estimates terminal value, runs sensitivity analysis, and documents assumptions.
Builds Discounted Cash Flow (DCF) models for US stocks with TTM metrics, revenue/FCF projections, three-scenario analysis, and sensitivity tables for intrinsic value.
Performs discounted cash flow valuation using DDM, FCFE, or FCFF models with configurable growth stages, equity bridge, and sensitivity analysis. Useful for intrinsic company valuation.