Kwantitatief risicobeheer in Python
Jamsheed Shorish
Computational Economist




black_scholes(): broncodelink beschikbaar in de oefeningenblack_scholes()option_type ('call' of 'put')
S = 70; X = 80; T = 0.5; r = 0.02; sigma = 0.2option_value = black_scholes(S, X, T, r, sigma, option_type = "put")print(option_value)
10.31222171237868
bs_delta(): berekent de optiedeltaKwantitatief risicobeheer in Python