Work on separated trading engine.

This commit is contained in:
7u83
2018-12-26 13:11:35 +01:00
parent 974c1cb81e
commit c208092452
10 changed files with 431 additions and 113 deletions

View File

@ -38,5 +38,7 @@ public interface TradingAPI {
public Order createOrder(Account account, Order.Type type, double volume, double limit);
public Set getOrderBook(Order.Type type);
public Set getBidBook();
public Set getAskBook();
}