mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
Fixes bug when valuation run on only one trade in the portfolio
This commit is contained in:
parent
1c4dfbe6dc
commit
a4771687aa
@ -35,7 +35,7 @@ object BimmAnalysisUtils {
|
||||
fun computeMargin(combinedRatesProvider: ImmutableRatesProvider?, normalizer: PortfolioNormalizer, calculatorTotal: RwamBimmNotProductClassesCalculator,
|
||||
first: CurrencyParameterSensitivities, second: MultiCurrencyAmount): Triple<Double, Double, Double> {
|
||||
|
||||
val amount = (second.amounts.map{ it -> it.amount}.fold(0.0,{ total, increment -> total + increment })) / 100.0 // Not to be used for financial purposes...
|
||||
val amount = second.amounts.map { it.amount }.sum()
|
||||
return Triple<Double, Double, Double>(amount, 0.0, amount)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user