Fix BondForward::spotIncome ex-coupon entitlement at both boundaries#2651
Open
jmboyd1 wants to merge 1 commit into
Open
Fix BondForward::spotIncome ex-coupon entitlement at both boundaries#2651jmboyd1 wants to merge 1 commit into
jmboyd1 wants to merge 1 commit into
Conversation
spotIncome filtered income coupons with hasOccurred only. When bonds carry an ex-coupon period this misattributes entitlement in two ways: - a coupon trading ex at spot settlement was counted as income although the buyer never receives it (overstating carry and distorting implied repo rates); - a coupon whose ex date has been reached by the delivery date was omitted although the holder receives it after delivery. Both boundaries now consult CashFlow::tradingExCoupon, consistent with the treatment everywhere else in CashFlows. The dirty spot value and the negative accrued used by cleanForwardPrice were already ex-correct.
|
Thanks for opening this pull request! It might take a while before we look at it, so don't worry if there seems to be no feedback. We'll get to it. |
|
|
Owner
|
Thanks for contributing! May you check the CLAassistant comment above? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
BondForward::spotIncomefiltered income coupons withhasOccurredonly. When the underlying bond carries an ex-coupon period (e.g. Australian ACGBs with their 7-day ex-interest window) this misattributes entitlement at both boundaries:Both boundaries now consult
CashFlow::tradingExCoupon, consistent with the treatment everywhere else inCashFlows. The dirty spot value and the negative accrued used bycleanForwardPricewere already ex-correct, so this only changes the income leg.The full test suite passes unchanged. Found while validating ACGB forward pricing (negative accrual through the ex window) against exchange settlement prices; happy to add a test-suite case with an ex-coupon bond forward if that would help review.