error with bndprice command
2 ビュー (過去 30 日間)
古いコメントを表示
Jens Petit-jean
2021 年 3 月 27 日
コメント済み: Jens Petit-jean
2021 年 3 月 27 日
Hello,
I always got the error 'CouponRate is required for all Bond instruments.' when using the bndprice command and I don't know what is wrong.
A=[0.02:0.005:0.05]
B=zeros(numel(A),2)
for i=1:numel(A)
[intrinsicValue,accruedInterest]=bndprice(0.045,A(i),'01-Mei-2016','30-Jun-2021')
B(i,1)=intrinsicValue
B(i,2)=accruedInterest
end
plot(B(1),B(2))
Thanks in advance
0 件のコメント
採用された回答
Walter Roberson
2021 年 3 月 27 日
Your spelling of May was not being recognized.
A=[0.02:0.005:0.05]
B=zeros(numel(A),2);
for i=1:numel(A)
[intrinsicValue,accruedInterest]=bndprice(0.045,A(i),'01-May-2016','30-Jun-2021');
B(i,1)=intrinsicValue;
B(i,2)=accruedInterest;
end
B
plot(B(:,1),B(:,2))
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Financial Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!