Package com.opengamma.financial.aggregation

Examples of com.opengamma.financial.aggregation.PortfolioAggregator


      if (aggregationFunction == null) {
        throw new OpenGammaRuntimeException("Unknown aggregator '" + aggregatorName + "'");
      }
      aggregationFunctions.add(aggregationFunction);
    }
    PortfolioAggregator aggregator = new PortfolioAggregator(aggregationFunctions);
    Portfolio aggregatedPortfolio = aggregator.aggregate(resolvedPortfolio);
    return _portfolioSaver.savePortfolio(aggregatedPortfolio, false);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.financial.aggregation.PortfolioAggregator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.