Package com.opengamma.financial.view

Examples of com.opengamma.financial.view.HistoricalViewEvaluationMarketDataMode


          startDateConstraint = DateConstraint.parse(endDateConstraint).minus(Period.ofDays(2)).toString();
        }
      }
    }
    String marketDataModeConstraint = anyConstraintOrNull(constraints, MARKET_DATA_MODE_PROPERTY);
    HistoricalViewEvaluationMarketDataMode marketDataMode = marketDataModeConstraint != null ?
        HistoricalViewEvaluationMarketDataMode.parse(marketDataModeConstraint) : HistoricalViewEvaluationMarketDataMode.HISTORICAL;
    Security security = null;
    if (ComputationTargetType.SECURITY.equals(target.getType())) {
      security = target.getSecurity();
    } else if (ComputationTargetType.POSITION.equals(target.getType())) {
View Full Code Here

TOP

Related Classes of com.opengamma.financial.view.HistoricalViewEvaluationMarketDataMode

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.