Package com.opengamma.financial.convention

Examples of com.opengamma.financial.convention.ConventionInstrumentTimeSeriesLoader


  @PropertyDefinition
  private boolean _updateExisting;
 
  @Override
  public void init(ComponentRepository repo, LinkedHashMap<String, String> configuration) throws Exception {
    ConventionInstrumentTimeSeriesLoader loader = new ConventionInstrumentTimeSeriesLoader(
        getHistoricalTimeSeriesSource(), getHistoricalTimeSeriesLoader(), getDataSource(), getDataProvider(),
        getDataField(), ExternalScheme.of(getIdentifierScheme()), isUpdateExisting());
    loader.run();
   
    System.out.println("Convention instrument time-series loader completed");
    System.exit(0);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.financial.convention.ConventionInstrumentTimeSeriesLoader

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.