首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
program设计程序辅导、Python,C++,CSS编程讲解 讲解R语言编程|解析C/C++编程
项目预算:
开发周期:
发布时间:
要求地区:
Project 1 – Building a Pricing Platform
The project
Build a platform that can be helpful to price options on bonds for any maturity up to 30 years. You can do up to 10 years if it turns out to take computationally long time.
What is the purpose of this project?
In two sentences: Being able to develop a platform for options on interest rates using both the BDT and Vasicek models (as well as Hull and White model as a bonus). This project will allow you to understand how to get raw data from a data source, run bootstrap, build interest rate curves, and then use the curves to construct pricing functions.
Why this project?
Simply because
1)It covers everything from getting raw data, data quality check, understanding yields and spot rates, bootstrapping and interpolation to build pricing models
2)I want you to get your hands dirty and learn to build pricing models in a programming environment
3)Hopefully you will be able to understand how to perform a sensitivity analysis and stress test.
Project Guidance
Key Requirements
Proficiency in programming: You must learn to build functions for all the key tools and models which will be used in this assignment. Usage of Python is recommended for higher chances of getting job interviews, though R, MATLAB or others can be used. I would advise against using the built-in functions for these tasks as this would not provide you with sufficient understanding of the underlying methodology of these models as you may naively use the results generated.
I would encourage you to take help from online resources (e.g., Stack Overflow); however please do not simply copy-paste any code chunk you may find there, instead take inspiration from the examples there and build your own algo .
It is understandable that not everyone (in your team) will be proficient in coding. So, in case of team works, it will be prudent to ensure that all the responsibilities related to this assignment are properly distributed amongst the team members based on their skill sets and learning objectives.
Some Key Steps
1)Getting the raw data that you need from Federal Reserve, the Fed St Louis, the Fed New York, etc.
2)Check the data quality and clean them if data errors would be suspicious (e.g., outlier values, sudden big jumps)
3)Bootstrapping.
4)Interpolation (please use both Spline and Nelson Siegel methods).
5)Value the interest rate option using both Vasicek and BDT models. For the BDT model use monthly time series.
I just want everyone / team to:
Discuss which option to sell (Call or Put, for which maturity). Just be internally consistent with any assumptions you may make.
Develop a platform in your preferred language that allows you to price interest rate options.
Price the option using two methodologies. (We will cover Black-Derman-Toy Model and The Vasicek model in class. If time allows, we can cover Hull-White model as well)
The platform should be able to give on-time OTC quotes for different maturities
Compare the prices that you get with each model. Understand why they are different.
Explain the errors in valuation that comes from interpolation errors and which method is better for this exercise.
To be able to understand the exposure to your firm as well as coming up with a fair prices (OTC), your model should (ideally) be able to determine how your option prices are affected by
Interest rate volatility
The historical window you are choosing to compute the historical volatility (an important input for the BDT model)
The time step in BDT model
As a guideline, the project may be structured in three installments as below. You may choose the deadlines for each of the installments at your discretion (e.g., Installment 1 within a week from today, Installment 2 within three weeks, and Installment 3 within 6 weeks). These illustrative deadlines are not binding. The only binding deadline is 6 weeks from today (i.e., Thursday April 8, 2021)
Installment 1
Requirements
1)Getting the historical (last 10 years or so) Treasury yield weekly data series. There are many sources for this data, such as Federal Reserve (http://www.federalreserve.gov/releases/h15/data.htm), Fed St. Louis (http://research.stlouisfed.org/fred2/categories/115), the Fed NY, and etc.
2)Interpolating the yields, using linear or non-linear interpolation such as Cubic Spline interpolation.
3)Bootstrapping the spot rates for each data series.
Some Guidance
The yield data you get from the sources mentioned above are “Treasury Yield Curve Rates”. To be able to do this part of the project, make sure you know what they mean. You need at least understand the assumptions behind Yield Curve in its Frequently Asked Questions (http://www.treasury.gov/resource-center/faqs/Interest-Rates/Pages/faq.aspx).
The final output of this instalment should have bootstrapped spot rates for each weekly yield data series at each market-available maturity (1-month, 3-month, 6-month, 1-year, 2-year, 3-year, 5-year, 7-year, 10-year, 20-year, and 30-year).
Linear Interpolation vs. Cubic Spline Interpolation of YTMs
If you chose to use linear interpolation for the yields, the bootstrapped spot rates for each weekly data series at each market-available maturity (1-month, 3-month, 6-month, 1-year, 2-year, 3-year, 5-year, 7-year, 10-year, 20-year, and 30-year) will need to be interpolated in Instalment 2 to get the smoothed spot curves over monthly times intervals, using both Spline and Nelson Siegel methods. In this case, Installment 1 will require less time to complete while Installment 2 will require more.
If you chose to use Cubic Spline to interpolate the yield data (from which you will have smoothed yield curves), the resulting bootstrapped spot curves will be smooth. That means you will not need to run the Cubic Spline interpolation of spot rates in Installment 2 (just use the Spline parameters you have obtained in Instalment 1 to calculate the spot rate each month). In this case, Installment 1 will require more time to complete while Installment 2 will require less.
Hence it may be more time-efficient if you start with non-linear spline than linear interpolation from the beginning.
Installment 2
Requirements
1)Interpolation of Spot Rates
Interpolation results should be in monthly intervals, which is required for BDT model in Instalment 3.
Use both Cubic Spline and Nelson Siegel methods to interpolate the spot rates of each data series at each market available maturity (1-month, 3-month, 6-month, 1-year, 2-year, 3-year, 5-year, 7-year, 10-year, 20-year, and 30-year) you have bootstrapped in Instalment 1 to obtain smoothed spot curves.
Note: if you have used Spline method to interpolate the yields data in Installment 1, then you only need to run Nelson Siegel to interpolate the spot rates for this instalment. For Spline interpolation of spot rates, just use the Spline parameters you have obtained in Instalment 1 to calculate the spot rate each month.
2)For each maturity, calculate the Annual Volatility of the historical spot rates for that maturity.
Technical Note: Standard deviation of the spot rate is NOT the same as volatility. For continuous compounding spot rates, volatility is the standard deviation of natural logarithm of changes in spot rates, i.e., .
Some Guidance
Installment 2 should already include your Installment 1’s outputs because Installments are sequential.
Volatility calculation should be based on a certain historical time window (e.g. last 260 weeks). Ideally, the volatility calculation should be flexible to given time window input instead of being hard-coded. This will help you in Installment 3 where you will need to pick an appropriate window to calculate the volatility for pricing the option and potentially perform sensitivity analysis.
This instalment will likely take the longest time to do (according to past experiences). Make sure you start early.
Installment 3
Requirements
1)Value the interest rate option that you think is appropriate for your client’s hedging need, using both Vasicek and BDT models.
oUse both the analytic method and simulation method under Vasicek to price the option
oFor BDT, use monthly steps
2)Compare the prices that you get with each model. Understand why they are different.
3)Explain the errors in option valuation that comes from interpolation errors. Which method is better for this exercise?
4)Make a decision at what price you will be selling the option to the client. (Hedging your position has to be crucial to your team. Also remember that you are competing with other places, you cannot just be crazy and charge high prices. None of clients will buy over-valued products).
5)Perform sensitivity analysis.
Some Guidance
It must include all installments. This is the final product of the project that you grade will be based on.
This is where you perform all the qualitative analysis and come out with a final recommendation.
Make sure you start early.
Final Deliverables:
1)Your codes
2)Outputs in csv or Excel format
3)A report outlining the necessary steps you have done in your analysis, which may include:
a.Step-by-step brief description of the algorithms for the tools and models alongside the requirements for each section
b.Interpretation of your results (including tables and charts etc.)
c.Sensitivity Analysis
d.Final Recommendation
Bonus
If you want higher grades, then use The Hull-White Trinomial Tree instead of the BDT with monthly steps to price the bond option.
Use the same interest rate curves
As for volatility and mean reversion rate, you can use the values you obtained from calibrating your Vasicek model.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!