Dominic Hong
Dominic Hong
I'd like to test a zero-coupon bond. I set the freq_type=FrequencyTypes.SIMPLE. It throwed an ZeroDivisionError: ``` calendar = Calendar(self._calendar_type) frequency = annual_frequency(self._freq_type) > num_months = int(12 / frequency) financepy\utils\schedule.py:135: ZeroDivisionError...
Hi, Dominic Bond._calculate_payment_dates() seems to have some problems. ```python from financepy.products.bonds.bond import Bond from financepy.utils import Date, DayCountTypes, FrequencyTypes bond = Bond( issue_date=Date(7, 6, 2021), maturity_date=Date(7, 6, 2031), coupon=0.0341, freq_type=FrequencyTypes.ANNUAL,...