this.addInstrument("AAPL", "Apple Inc.", "NASDAQ");
this.addInstrument("CSCO", "Cisco Systems, Inc.", "NASDAQ");
}
public void addInstrument(String symbol, String name, String exchange) {
Instrument instrument = new Instrument(symbol, name, exchange);
instrumentList.add(instrument);
instrumentMap.put(symbol, instrument);
}