├── .binder ├── .zshrc ├── .zshrc:Zone.Identifier ├── Dockerfile ├── Dockerfile:Zone.Identifier ├── apt.txt ├── apt.txt:Zone.Identifier ├── build_myst_local.sh ├── build_myst_local.sh:Zone.Identifier ├── package.json ├── package.json:Zone.Identifier ├── postBuild ├── postBuild:Zone.Identifier ├── pyproject.toml ├── pyproject.toml:Zone.Identifier ├── requirements.txt ├── requirements.txt:Zone.Identifier ├── runtime.txt └── runtime.txt:Zone.Identifier ├── .gitattributes ├── .github └── workflows │ └── deploy-pages.yml ├── .gitignore ├── DEPLOYMENT_CHECKLIST.md ├── LICENSE ├── README.md ├── academic-paper.html ├── academic-paper.md ├── assets └── custom.css ├── custom.css ├── documentation ├── Option Pricing in Levy Models - Feng et al - Academic Paper(1).pdf:Zone.Identifier ├── Option Pricing in Levy Models - Feng et al - Academic Paper.pdf ├── Project Research Proposal.pdf ├── Project Research Proposal.pdf:Zone.Identifier ├── R-Finance Presentation Slides.pdf ├── R-Finance Presentation Slides.pdf:Zone.Identifier ├── README.md └── misc │ ├── Comparing_Computational_Efficiency.xlsx │ ├── LossJoseph_RFinance_Presentation.pptx │ ├── R-Finance 2019 - Agenda.jpg │ ├── Slide1.PNG │ ├── Slide2.PNG │ ├── Slide3.PNG │ ├── Slide4.PNG │ ├── Slide5.PNG │ ├── Slide6.PNG │ └── Slide7.PNG ├── index.html ├── index.md ├── myst.yml ├── presentation-slides.html ├── presentation-slides.md └── source ├── Source Code Walkthrough.pdf ├── algo1_NIG_final.r └── algo2_InverseTransform_final.R /.binder/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/.zshrc -------------------------------------------------------------------------------- /.binder/.zshrc:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/.zshrc:Zone.Identifier -------------------------------------------------------------------------------- /.binder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/Dockerfile -------------------------------------------------------------------------------- /.binder/Dockerfile:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/Dockerfile:Zone.Identifier -------------------------------------------------------------------------------- /.binder/apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/apt.txt -------------------------------------------------------------------------------- /.binder/apt.txt:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/apt.txt:Zone.Identifier -------------------------------------------------------------------------------- /.binder/build_myst_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/build_myst_local.sh -------------------------------------------------------------------------------- /.binder/build_myst_local.sh:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/build_myst_local.sh:Zone.Identifier -------------------------------------------------------------------------------- /.binder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/package.json -------------------------------------------------------------------------------- /.binder/package.json:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/package.json:Zone.Identifier -------------------------------------------------------------------------------- /.binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/postBuild -------------------------------------------------------------------------------- /.binder/postBuild:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/postBuild:Zone.Identifier -------------------------------------------------------------------------------- /.binder/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/pyproject.toml -------------------------------------------------------------------------------- /.binder/pyproject.toml:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/pyproject.toml:Zone.Identifier -------------------------------------------------------------------------------- /.binder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/requirements.txt -------------------------------------------------------------------------------- /.binder/requirements.txt:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/requirements.txt:Zone.Identifier -------------------------------------------------------------------------------- /.binder/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9 -------------------------------------------------------------------------------- /.binder/runtime.txt:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.binder/runtime.txt:Zone.Identifier -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.github/workflows/deploy-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/.gitignore -------------------------------------------------------------------------------- /DEPLOYMENT_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/DEPLOYMENT_CHECKLIST.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/README.md -------------------------------------------------------------------------------- /academic-paper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/academic-paper.html -------------------------------------------------------------------------------- /academic-paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/academic-paper.md -------------------------------------------------------------------------------- /assets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/assets/custom.css -------------------------------------------------------------------------------- /custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/custom.css -------------------------------------------------------------------------------- /documentation/Option Pricing in Levy Models - Feng et al - Academic Paper(1).pdf:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/Option Pricing in Levy Models - Feng et al - Academic Paper(1).pdf:Zone.Identifier -------------------------------------------------------------------------------- /documentation/Option Pricing in Levy Models - Feng et al - Academic Paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/Option Pricing in Levy Models - Feng et al - Academic Paper.pdf -------------------------------------------------------------------------------- /documentation/Project Research Proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/Project Research Proposal.pdf -------------------------------------------------------------------------------- /documentation/Project Research Proposal.pdf:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/Project Research Proposal.pdf:Zone.Identifier -------------------------------------------------------------------------------- /documentation/R-Finance Presentation Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/R-Finance Presentation Slides.pdf -------------------------------------------------------------------------------- /documentation/R-Finance Presentation Slides.pdf:Zone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/R-Finance Presentation Slides.pdf:Zone.Identifier -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/misc/Comparing_Computational_Efficiency.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/Comparing_Computational_Efficiency.xlsx -------------------------------------------------------------------------------- /documentation/misc/LossJoseph_RFinance_Presentation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/LossJoseph_RFinance_Presentation.pptx -------------------------------------------------------------------------------- /documentation/misc/R-Finance 2019 - Agenda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/R-Finance 2019 - Agenda.jpg -------------------------------------------------------------------------------- /documentation/misc/Slide1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/Slide1.PNG -------------------------------------------------------------------------------- /documentation/misc/Slide2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/Slide2.PNG -------------------------------------------------------------------------------- /documentation/misc/Slide3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/Slide3.PNG -------------------------------------------------------------------------------- /documentation/misc/Slide4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/Slide4.PNG -------------------------------------------------------------------------------- /documentation/misc/Slide5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/Slide5.PNG -------------------------------------------------------------------------------- /documentation/misc/Slide6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/Slide6.PNG -------------------------------------------------------------------------------- /documentation/misc/Slide7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/documentation/misc/Slide7.PNG -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/index.html -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/index.md -------------------------------------------------------------------------------- /myst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/myst.yml -------------------------------------------------------------------------------- /presentation-slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/presentation-slides.html -------------------------------------------------------------------------------- /presentation-slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/presentation-slides.md -------------------------------------------------------------------------------- /source/Source Code Walkthrough.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/source/Source Code Walkthrough.pdf -------------------------------------------------------------------------------- /source/algo1_NIG_final.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/source/algo1_NIG_final.r -------------------------------------------------------------------------------- /source/algo2_InverseTransform_final.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicago-joe/Option-Pricing-via-Levy-Models-in-R/HEAD/source/algo2_InverseTransform_final.R --------------------------------------------------------------------------------