Removed unused imports, added comments
This commit is contained in:
parent
55a583c147
commit
d4e85d1410
@ -38,7 +38,16 @@ public interface TradingAPI {
|
|||||||
|
|
||||||
public Order createOrder(Account account, Order.Type type, double volume, double limit);
|
public Order createOrder(Account account, Order.Type type, double volume, double limit);
|
||||||
|
|
||||||
|
|
||||||
public Set getBidBook();
|
public Set getBidBook();
|
||||||
|
|
||||||
public Set getAskBook();
|
public Set getAskBook();
|
||||||
|
|
||||||
|
public Set getOrderBook(Order.Type type);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the AssetPair this trading API is associated with
|
||||||
|
* @return the AssetPair object
|
||||||
|
*/
|
||||||
|
public AssetPair getAssetPair();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user