Skip to content

Latest commit

 

History

History
86 lines (75 loc) · 9.41 KB

Project.md

File metadata and controls

86 lines (75 loc) · 9.41 KB

ASP Course Project

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

Presentation and Deadline

  • Presentation: 5.07 (Friday) 10 minutes by each group.
  • Pull request deadline: 5.9 (Sunday)

File requirements

  • Core implementation (.py): python class and functions
    • Make sure to add docstring in detail. Example: bsm.py
    • Integrate into the pyfeng folder. Make pull-requests (pr).
  • 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

Suggested Topics and Papers

  • Ju's Taylor expansion method for basket/Asian options
    • Team [Report]: @Feng-Yuze and @LantianXue.
    • Ju, N. (2002). Pricing Asian and Basket Options Via Taylor Expansion. Journal of Computational Finance, 5(3), 79–103. https://doi.org/10.21314/JCF.2002.088
    • (Performance Comparison) Krekel, M., de Kock, J., Korn, R., & Man, T.-K. (2004). An analysis of pricing methods for basket options. Wilmott Magazine, 2004(7), 82–89. See the notebook in PyfengForPapers.
    • Implement the method in a new class. In python notebook, summarize the method, write a quick help and report strength and weakness.
  • Johnson's SU distribution approximation for basket/Asian options
    • Team [Report]: @chenyingong.
    • Posner, S. E., & Milevsky, M. A. (1998). Valuing exotic options by approximating the SPD with higher moments. The Journal of Financial Engineering, 7(2).
    • Also see Ju (2002) for perfomance comparison
    • Nsvh1 is equivalent to the Johnson's SU distribution. See Nsvh1.calibrate_vsk is implemented.
  • Tight lower bound for Basket/Asian option
    • Team [Report]: @daifengqi
    • Rogers, L. C. G., & Shi, Z. (1995). The value of an Asian option. Journal of Applied Probability, 32(4), 1077–1088.
  • Exact Asian Option Pricing by expansions.
  • Conditional MC simulation for OUSV and Garch
    • Team [Report]: @PanyuLi and @jiangxunmu.
    • Ornstein Uhlenbeck Simulation. (Vasicek Model for interest rate)
    • Approximate price formula for uncorrelated GARCH model is implemented: 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
    • Fourier inversion formula for OUSV model is implemented.
  • Almost-Exact simulation for Heston model
  • Almost-Exact simulation for 3/2 model
  • Conditional MC simulation for Heston, 3/2 and 4/2 models with QE-M scheme
    • Team [Report]: @Delia810 and @XueyangHu.
    • (QE-M scheme) Andersen, L. (2008). Simple and efficient simulation of the Heston stochastic volatility model. The Journal of Computational Finance, 11(3), 1–42. https://doi.org/10.21314/JCF.2008.189
    • (Comparison for various simulation schemes) Van Haastrecht, A., & Pelsser, A. (2010). Efficient, almost exact simulation of the heston stochastic volatility model. International Journal of Theoretical and Applied Finance, 13(01), 1–43. https://doi.org/10.1142/S0219024910005668
    • (4/2 model) Grasselli, M. (2017). The 4/2 Stochastic Volatility Model: A Unified Approach for the Heston and the 3/2 Model. Mathematical Finance, 27(4), 1013–1034. https://doi.org/10.1111/mafi.12124

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
    • Spread/Basket/Asian option pricing
    • SABR other stochastic volatility models
    • Copula

* Simulations of Heston model

* Rough Volatility

* 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

* 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.
  • Basic model is completed. Need to check Greeks (Delta/Gamma/Vega/Theta)