asset_pairs = HashMap for TradingAPI

This commit is contained in:
7u83 2018-12-21 23:48:03 +01:00
parent 1f07ccd611
commit 6194018dbb
1 changed files with 6 additions and 15 deletions

View File

@ -50,8 +50,7 @@ public class Exchange implements Configurable, GetJson {
this.name = name;
}
//private final HashMap<String, AssetPair> asset_pairs;
private final HashMap<AssetPair, TradingEnv> asset_pairs = new HashMap<>();
private final HashMap<AssetPair, TradingAPI> asset_pairs = new HashMap<>();
Exchange(World world, String symbol) {
@ -88,12 +87,6 @@ public class Exchange implements Configurable, GetJson {
return null;
}
public Collection<Order> getOrderBook(AssetPair a) {
TradingEnv e = asset_pairs.get(a);
SortedSet<Order> ob = e.order_books.get(Order.Type.BUYLIMIT);
return Collections.unmodifiableCollection(ob);
}
@Override
public JSONObject getConfig() {
JSONObject cfg = new JSONObject();
@ -142,8 +135,6 @@ public class Exchange implements Configurable, GetJson {
return null;
}
}
private TradingAPI add(AssetPair p) {