-
KDB table with an array as element
I want to create a KDB table with an array:
– for a regular one, I would have t:([]time:`time$();price:`float$()); for each time, there is only price
– I want to have a table with a price array for each time. should I create it using t:([]time:`time$();price:()) or t:([]time:`time$();price:(()))
Log in to reply.