Skip to content

Latest commit

 

History

History
90 lines (78 loc) · 10.3 KB

Project.md

File metadata and controls

90 lines (78 loc) · 10.3 KB

ASP Course Project

  • Course project is due on 11.15 (Friday) night.

Presentation

11.05 Tue

11.08 Fri

Do do

  • Create new project wiht title, short description, and team.

Topics

  • Among the topics and HWs covered in the class, choose an in-depth research on one topic. You are also welcome to do the project on your own original idea. Otherwise, pick one from my suggestions which are basically understanding and implementing literatures. Topics includes
    • BSM (lognormal) vs Bachelier (normal) model
    • Spread/Basket/Asian option pricing
    • SABR model and other stochastic volatility models

File requirements

  • Core implementation (.py): python class and functions
    • Make sure to comment in detail. Example: bsm.py
    • Integrate into the pyfe folder. Do not mix with testing/manual notebook files.
  • Documentation/Test (.ipynb): one Jupyter notebook file briefly describing the method (base theory, equations, SDE, strength/weakness, etc), the function prototype and arguments (manual style) and the usage examples
    • The best examples are from numpy documentation: example
    • Also include examples and tests of your class (e.g., test against reference parameters)
    • Put into the test folder. The file name should be Test_YOURPROJECT.ipynb

Other guidelines

  • Make sure to show the contribution via github desktop commits (not online upload).
  • The project doesn't have to be complete by the presentation. If you need more time, show your plan, understanding, progress so far, e.g. function prototypes & arguments, etc and the tests to put on.

Suggested Topics and Papers

* Simulations of Heston model

* GARCH-diffusion model

  • Barone-Adesi, G., Rasmussen, H., Ravanelli, C., 2005. An option pricing formula for the GARCH diffusion model. Computational Statistics & Data Analysis, 2nd CSDA Special Issue on Computational Econometrics 49, 287–310. https://doi.org/10.1016/j.csda.2004.05.014
  • PhD Thesis of Ravanelli, C., University of Lugano, Switzerland, https://doc.rero.ch/record/4229/files/1_2003ECO001.pdf
  • Papadopoulos, Y.A., Lewis, A.L., 2018. A First Option Calibration of the GARCH Diffusion Model by a PDE Method. arXiv:1801.06141 [q-fin].

* Exact Simulation Scheme

* Rough Volatility

* Unfinished Projects

  • [BSM Implied Volatility] Analytic approximation of BSM implied volatility (Jackel 2016): implement the method, include it to BSM class and write a thorough test code. In python notebook, summarize the method, write a quick help and report strength and weakness.

Completed Papers

  • [Normal Implied Volatility] Analytic approximation of normal implied volatility (Choi et al 2007): (Contact me if you want to take this project) implement the method, include it to Normal class and write a thorough test code. In python notebook, summarize the method, write a quick help and report strength and weakness.
  • [Normal Implied Volatility] Analytic approximation of normal implied volatility (Le Floc'h 2016, some discussion): implement the method, include it to Normal class and write a thorough test code. In python notebook, summarize the method, write a quick help and report strength and weakness.
  • [Spread option] Very accurate analytic approximation for spread options by Li et al, 2006. Also implement Kirk's approximation covered in class and (Bjersund, Stensland 2014). Implement each method in a new class. In python notebook, summarize the method, write a quick help and report strength and weakness. Compare the three methods.
  • [Basket+Asian option] Pick one method in the following 3 methods in survey of basket option pricing (Krekel at al, 2004, Wilmott magazine, July, 82-89): Implement the method in a new class. In python notebook, summarize the method, write a quick help and report strength and weakness.
    • a) Beisser's conditional expectation
    • c) Levy's log-normal moment matching
    • d) Ju's Taylor expansion
  • [Basket/Spread/Asian Option] A unified numerical method for both spread and basket options: Choi (2017): Contact me
  • [CEV Model] Option pricing under Constant Elasticity of Variance (CEV) model (formula available many on-line sources): implement the method, include it to Normal class and write a thorough test code. In python notebook, summarize the method, write a quick help and report strength and weakness.
  • [SABR Option Pricing] Arbitrage-free pricing method by Kennedy et al, 2011 (Download): simpler approach introduced in class is enough. Implement the method, create a new class ModelKennedy in sabr.py, and write a thorough test code. In python notebook, summarize the method, write a quick help and report strength and weakness.
  • [SABR Calibration] Efficient first guess for SABR calibrations to 3 option prices by Le Floc’h and Kennedy, 2014 (see also here): Implement the method, add to sabr.py, and write a code comparing the efficient against the dumb initial guess. In python notebook, summarize the method, write a quick help and report strength and weakness.
  • [Vanna-Volga method] a smile interpolation method (Wiki, BSM, Normal)
  • [SABR Simulation] Efficient SABR simulation by Leitao et al
  • [SABR approximations] Various improvement to Hagan's original paper: Paulot, Obloj, Balland , etc. Contact me for more information.
  • [SABR Simulation/Interpolation] SABR simulation by stochastic collocation Monte Carlo method ( paper 1, paper 2 )