Python을 활용한 정량적 리스크 관리
Jamsheed Shorish
Computational Economist




black_scholes(): 소스 코드는 연습문제에서 제공black_scholes()option_type 사용('call' 또는 '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(): 옵션 델타 계산Python을 활용한 정량적 리스크 관리