Work on new Trading API

This commit is contained in:
7u83
2018-12-23 03:04:37 +01:00
parent ba03d4d292
commit 5023b2ad7a
7 changed files with 86 additions and 12 deletions

View File

@ -25,6 +25,8 @@
*/
package opensesim.world;
import java.util.Set;
/**
*
* @author tube
@ -33,4 +35,5 @@ public interface TradingAPI {
public Order createOrder(Account account, Order.Type type, double volume, double limit);
public Set getOrderBook(Order.Type type);
}