Package com.mcorrigal.matchingEngine.order.list

Examples of com.mcorrigal.matchingEngine.order.list.SimpleOrderList


  private OrderList asks;
  private OrderBook orderBook;

  @Before
  public void setUp() {
    bids = new SimpleOrderList();
    asks = new SimpleOrderList();
    orderBook = new SimpleOrderBook(bids, asks);
  }
View Full Code Here


  private SimpleOrderList orders;

  @Before
  public void setUp() {
    orders = new SimpleOrderList();
  }
View Full Code Here

TOP

Related Classes of com.mcorrigal.matchingEngine.order.list.SimpleOrderList

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.