デュレーション

Rで学ぶ債券の評価と分析

Clifford Ang

Senior Vice President, Compass Lexecon

デュレーションとは?

  • 利回りが100ベーシスポイント変動した際の推定価格変化
    • 同じデュレーションの2つの債券は推定価格変化が同じ
  • 金利感応負債のリスク管理手法
Rで学ぶ債券の評価と分析

デュレーションの計算

$$

$$D = \frac{P(\text{down})-P(\text{up})}{(2 \cdot P \cdot \Delta y)}$$

  • $D$ = デュレーション
  • $P(\text{down})$ = 利回り低下時の価格
  • $P(\text{up})$ = 利回り上昇時の価格
  • $P$ = 現在価格
  • $\Delta y$ = 利回り変化
Rで学ぶ債券の評価と分析

価格変化の推定

 

$$\frac{\Delta P}{P} = -D \cdot \Delta y$$

 

$$\Delta P = -D \cdot \Delta y \cdot P$$

$\dfrac{\Delta P}{P}$ = 価格の変化率

$D$ = デュレーション

$\Delta y$ = 利回り変化


$\Delta P$ = 価格の変化額

$P$ = 現在価格

Rで学ぶ債券の評価と分析

これらの式はどう使う?

  • 例:額面$100、クーポン5%、満期10年、初期利回り=4%、利回り上昇想定=1%
(p <- bondprc(100, .05, 10, .04))
108.1109
(p_down <- bondprc(100, .05, 10, .03))
117.0604
(p_up <- bondprc(100, .05, 10, .05))
100
Rで学ぶ債券の評価と分析

これらの式はどう使う?

(duration <- (p_down - p_up) / (2 * p * 0.01))
7.890234
(duration_pct_change <- - duration * 0.01)
-0.07890234
(duration_dollar_change <- duration_pct_change * p)
-8.530203
Rで学ぶ債券の評価と分析

利回りと価格

Rで学ぶ債券の評価と分析

Passons à la pratique !

Rで学ぶ債券の評価と分析

Preparing Video For Download...