Hi ,
i have change the UpdateString to

protected LSUpdateString(String newValue, String oldValue, boolean isHot)

and i have add the following checks

you have the first , i have add the second, is for date
if (newValue.indexOf(":") > -1 || newValue.indexOf("/") > -1)

and here the second check is for string of negative numbers
if (Character.isDigit(newValue.charAt(0)) || ((String) newValue).startsWith("-"))

what i am trying and i canot understand is how i can close the connection,
what i mean , i use the Swing_StockListDemo on my project ,
i have make some changes for compare new and old values and update the colors depends the prices
i have add static values for some columns ,like QTY portfolio ,

but i cant understand witch is the best way when i close the form to stop the feed , i have try the unsubscribe
SubscribedTableKey tableRef;
tableRef = client.subscribeTable(tInfo, this.table.getTableListener(), false);
client.unsubscribeTable(tableRef);

but as i can understand this only remove the items when i use client.closeConnection(); i get exception error



thanks