I have pip installed newest QuantLib
for python 1.23 for Windows.
ql.Callability()
is available but ql.CallabilityPrice
is not provided.
Is there any issue?
Asked
Active
Viewed 662 times
1

Josh Karpel
- 2,110
- 2
- 10
- 21

MandyChen622
- 35
- 3
-
1There is no `CallabilityPrice` listed in the documentation. What makes you think there is one? – Tim Roberts Aug 01 '21 at 03:00
1 Answers
2
CallabilityPrice
was renamed to BondPrice
in the underlying C++ library a couple of versions ago. The Python module kept the old version for a while but eventually did the same.

Luigi Ballabio
- 4,128
- 21
- 29
-
Thank you. ql.BondPrice generates the correct results for callable bonds. – MandyChen622 Aug 02 '21 at 20:32