I put data into Esper with a type:
{"symbol" :string
"price" :double}
I want to have a symbol of a min price from every minute. When I do something like that:
select min(price), symbol
from Market.win:time_batch(60 sec)
I get a lot of events with the same price (min price), but different symbols (and I want to have only one event (per minute) with only one symbol and price).