├── .gitignore ├── HLSM-BlackScholes-American.ipynb ├── HLSM-Heston-American.ipynb ├── MC-BlackScholes-European.ipynb ├── MC-Heston-European.ipynb ├── MonteCarlo.py ├── Notes for Lattice-based Methods.md ├── Potters OHMC 2001.pdf ├── R implementation ├── FE800 final code.R └── example.csv ├── README.md ├── README.pdf ├── bak ├── MC-Heston-American.ipynb ├── MonteCarlo copy.py ├── OHLSMC-Heston-American.ipynb └── OHMC.ipynb ├── binomial.py ├── presentation.md └── trinomial.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/.gitignore -------------------------------------------------------------------------------- /HLSM-BlackScholes-American.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/HLSM-BlackScholes-American.ipynb -------------------------------------------------------------------------------- /HLSM-Heston-American.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/HLSM-Heston-American.ipynb -------------------------------------------------------------------------------- /MC-BlackScholes-European.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/MC-BlackScholes-European.ipynb -------------------------------------------------------------------------------- /MC-Heston-European.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/MC-Heston-European.ipynb -------------------------------------------------------------------------------- /MonteCarlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/MonteCarlo.py -------------------------------------------------------------------------------- /Notes for Lattice-based Methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/Notes for Lattice-based Methods.md -------------------------------------------------------------------------------- /Potters OHMC 2001.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/Potters OHMC 2001.pdf -------------------------------------------------------------------------------- /R implementation/FE800 final code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/R implementation/FE800 final code.R -------------------------------------------------------------------------------- /R implementation/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/R implementation/example.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/README.pdf -------------------------------------------------------------------------------- /bak/MC-Heston-American.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/bak/MC-Heston-American.ipynb -------------------------------------------------------------------------------- /bak/MonteCarlo copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/bak/MonteCarlo copy.py -------------------------------------------------------------------------------- /bak/OHLSMC-Heston-American.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/bak/OHLSMC-Heston-American.ipynb -------------------------------------------------------------------------------- /bak/OHMC.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/bak/OHMC.ipynb -------------------------------------------------------------------------------- /binomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/binomial.py -------------------------------------------------------------------------------- /presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/presentation.md -------------------------------------------------------------------------------- /trinomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jerryxyx/MonteCarlo/HEAD/trinomial.py --------------------------------------------------------------------------------