This commit is contained in:
vn.py 2018-02-01 16:26:25 +08:00
parent e7e9089936
commit 9df447ad48

View File

@ -112,7 +112,7 @@ def calculateImpv(price, f, k, r, t, cp):
if cp == 1 and (price > (f - k) * exp(-r * t)):
meet = True
elif cp == -1 and (price > k * exp(-r * t) - f):
elif cp == -1 and (price > k - f):
meet = True
# 若不满足最小价值则直接返回0