> updation:{[table;symb;times;newsize;exchange] table:update size:newsize from table where sym=symb,time=times}
>
> and a call to the fucntion would be like updation[trade;GOOG;09:40:00.000;1234;NASDAQ]
use pass-by-name
updation:{[table;symb;times;newsize;exchange] update size:newsize from
table where sym=symb,time=times}