// end of data stream for historical data
isSuccess = true;
}
if (!isSuccess) { // data stream still flowing
// generate individual HLOC element
IONTrader thisOutput = new IONTrader(reqId, date, open, high,
low, close, volume);
// add to array list of strings
outString.add(thisOutput.getOutInfo());
}
} catch (ParseException ex) {
outString.add("Parse Exception");
}
}