ArgumentChecker.notNull(underlyingPool, "Underlying pool");
ArgumentChecker.notNull(creditSpreadTenors, "Credit spread tenors");
ArgumentChecker.notNull(creditSpreadTermStructures, "Credit spread term structures");
ArgumentChecker.notNull(creditSpreadTenor, "Credit spread tenor");
SampleStandardDeviationCalculator standardDeviation = new SampleStandardDeviationCalculator();
double[] spreads = getSpreads(underlyingPool, creditSpreadTenors, creditSpreadTermStructures, creditSpreadTenor);
return standardDeviation.evaluate(spreads);
}