Package com.xeiam.xchange.virtex.v2.service.polling

Examples of com.xeiam.xchange.virtex.v2.service.polling.VirtExMarketDataService


    // Read in the JSON from the example resources
    InputStream is = VirtExTradesJSONTest.class.getResourceAsStream("/marketdata/example-trades-data-v2.json");

    // Use Jackson to parse it
    ObjectMapper mapper = new ObjectMapper();
    VirtExTradesWrapper virtExTradesWrapper = mapper.readValue(is, VirtExTradesWrapper.class);
    ArrayList<VirtExTrade> virtexTrades = virtExTradesWrapper.getTrades();

    // Verify that the example data was unmarshalled correctly
    assertThat(virtexTrades.get(0).getPrice()).isEqualTo(new BigDecimal("545.060000000"));
  }
View Full Code Here


  @Override
  public void applySpecification(ExchangeSpecification exchangeSpecification) {

    super.applySpecification(exchangeSpecification);
    this.pollingMarketDataService = new VirtExMarketDataService(exchangeSpecification);
  }
View Full Code Here

TOP

Related Classes of com.xeiam.xchange.virtex.v2.service.polling.VirtExMarketDataService

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.