A Program to calculate the price of American put or call option with Least Square Monte Carlo
This program is to stimulate the price of an American option with given market informations (interest rate, volatility rate, …). It uses Least Square Monte Carlo to estimate the price. Also,extra informations such as delta and RMSER is calculated. More features will be added in the near future. For futher discription and explanation, please refer to this document.
Cloning the repository
git clone https://github.com/AlbertLin0327/Least-Square-Monte-Carlo.git
cd Least-Square-Monte-Carlo
Install Python dependencies
pip3 install dependency
or
python3 -m pip install -r dependency
Run the program
python3 main.py
Follow the input format
```
Enter the type of American Option, Put or Call
Put
Enter: spot price, strike price, time interval, interest(%), dividend(%), volatility(%), period, stimulations
100 110 2.5 0.05 0.01 0.02 500 200000
Price of Put: 97.64186831886784
Stdandard deviation: 0.0069054026599523555
Enter the dS (porportion) to shift the Random Path to estimate delta. Better to have 0 < dS <= 0.1
0.08
Price of p after 0.08 shift: 93.08540650524313
Stdandard deviation after 0.08 shift: 0.006583161759921405
Root Mean Sqaure Relative Error after 0.08 shift: 0.03162772287239734
```
Explanation: https://www.csie.ntu.edu.tw/~b08902127/Least_Square_Monte_Carlo.pdf
Introduction: https://www.csie.ntu.edu.tw/~b08902127/LSMC_Report.pdf