Pricing a bond with different YTM (at cross sectional level)
2 ビュー (過去 30 日間)
古いコメントを表示
Dear Sir or Madam
I was wondering if there is a function in matlab that prices bonds with different YTM?. For example:
Bond price= coupon/(YTM_1) +coupon/(YTM_2)^2+.................+coupon/(YTM_n)^n
Thank you very much
S
0 件のコメント
回答 (3 件)
Oleg Komarov
2011 年 6 月 29 日
N = 100;
C = 5; %Semi-annual
YTM = rand(1,10)*.1;
P = sum([C./(1+YTM(1:9)).^(1:9), (N+C)/(1+YTM(10))^10]);
0 件のコメント
Saad
2011 年 6 月 30 日
1 件のコメント
Oleg Komarov
2011 年 7 月 6 日
You can still apply a vectorized solution from my example.
To be more precise you need to provide an example on how you stored all of that info.
参考
カテゴリ
Help Center および File Exchange で Price and Analyze Financial Instruments についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!