-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default day count from index #1553
Conversation
77c5885
to
4f0e9e8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Few minor points on the review.
Can we add a test for the defaulting logic?
FloatingRateIndex index = parseIndex(row, legPrefix); | ||
if (index != null) { | ||
// floating leg | ||
indices.add(index); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indices.add(index) can be outside the if loop rather than here; will still add null for the fixed rate
// fixed leg | ||
indices.add(null); | ||
if (!findValue(row, legPrefix, DAY_COUNT_FIELD).isPresent()) { | ||
missingDayCount = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we even need the missingDayCount check? Feels like this is an unnecessary layer of complexity in what is already quite complex code.
What's the harm of passing a non-null default into the parseLegs method? Will just be ignored if the fixed leg has defined value.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Case is where there is a fixed leg and two floating legs with different day counts. Must only trigger the "check day unique" logic when day count is actually missing.
throw new IllegalArgumentException( | ||
"Swap leg must define day count on fixed legs when more than 2 floating legs"); | ||
} | ||
defaultFixedLegDayCount = dayCounts.iterator().next(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like the readibility of Iterables.getOnlyElement() in these situations
@@ -293,68 +377,49 @@ private static NotionalSchedule parseNotionalSchedule(CsvRow row, String leg) { | |||
private static RateCalculation parseRateCalculation( | |||
CsvRow row, | |||
String leg, | |||
FloatingRateIndex index, | |||
DayCount defaultFixedLegDayCount, | |||
BusinessDayAdjustment bda, | |||
Frequency accrualFrequency, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
accrual frequency not used anymore
if (frn.getType() == FloatingRateType.IBOR) { | ||
// re-parse Ibor using tenor, which ensures tenor picked up from indexStr if present | ||
Frequency freq = Frequency.parse(getValue(row, leg, FREQUENCY_FIELD)); | ||
Tenor iborTenor = freq.isTerm() ? frn.getDefaultTenor() : Tenor.of(freq.getPeriod()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not immediately related to this PR but our getDefaultTenor() logic is not fully correct here.
Default tenor for most major currencies is 6M, with only USD being 3M
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* This is useful for providing a basic default where errors need to be avoided.
* The value returned is not intended to be based on market conventions."
Use additional `FloatingRateIndex` logic to default day count
6269d87
to
955dfe5
Compare
Use additional
FloatingRateIndex
logic to default day count.Determines the index for each leg first, then calculates the default day count, then parses.