Package com.mcorrigal.matchingEngine.orderBook

Examples of com.mcorrigal.matchingEngine.orderBook.SimpleOrderBook


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


import com.mcorrigal.matchingEngine.orderBook.interfaces.OrderBook;

public class OrderBookFactory {

  public static OrderBook newInstance(OrderList bids, OrderList asks) {
    return new SimpleOrderBook(bids, asks);
  }
View Full Code Here

TOP

Related Classes of com.mcorrigal.matchingEngine.orderBook.SimpleOrderBook

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.