Hi stassen:
I'm facing same problem here, and so far i can see, i can't find any way to get only the tradable instruments... one way i find to get over this problem is:
private String myNotAllowedInstruments = "CHF/PLN EUR/BRL EUR/HUF EUR/MXN "
+ "EUR/RUB EUR/ZAR HUF/JPY MXN/JPY NZD/SGD USD/BRL USD/CZK USD/HUF "
+ "USD/RON ZAR/JPY";
for (Instrument i : Instrument.values()){
if (myNotAllowedInstruments.contains(i.toString())){
continue;
}
// process your code here
}
I have to get all this not tradable instruments with try/error...
I miss also some method to get only tradable instruments.
I hope that helps...
Best regards
JL