├── .gitignore ├── Early employee option pricing.ipynb ├── README.md ├── options.py ├── plot_sensitivity.py ├── plot_trajectory.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuhn/option-val/HEAD/.gitignore -------------------------------------------------------------------------------- /Early employee option pricing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuhn/option-val/HEAD/Early employee option pricing.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuhn/option-val/HEAD/README.md -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuhn/option-val/HEAD/options.py -------------------------------------------------------------------------------- /plot_sensitivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuhn/option-val/HEAD/plot_sensitivity.py -------------------------------------------------------------------------------- /plot_trajectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benkuhn/option-val/HEAD/plot_trajectory.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | pandas 4 | scipy 5 | seaborn 6 | --------------------------------------------------------------------------------