I have a table full of trades, and a table full of quote updates. My goal is to use a windowjoin to get aggregate figures – however I have an extra parameter that I need to pay attention too (usually coming from the trades table).
Thus, I’ve been using select function’[thingfromtrades,stuff,stuff2] from wj[w;c;trades;(quotes;(::;stuff);(::;stuff2))];.
Within FUNCTION I’m literally just taking everything and creating a table to do a search with the extra param from tradestab.
Naturally there has to be a better way…
Any help appreciated!