Package com.activequant.domainmodel.trade.event

Examples of com.activequant.domainmodel.trade.event.OrderTerminalEvent


            //
            if (order instanceof LimitOrder) {
                LimitOrder lo = (LimitOrder) order;
                if (lo.getOpenQuantity() == 0) {
                    OrderTerminalEvent ote = new OrderTerminalEvent();
                    ote.setCreationTimeStamp(currentExchangeTime());
                    ((VirtualOrderTracker) trck).getEvent().fire(ote);
                    // clean up the order tracker.
                    orderTrackers.remove(trck);
                }
            }
View Full Code Here

TOP

Related Classes of com.activequant.domainmodel.trade.event.OrderTerminalEvent

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.