Search code examples
javacomplex-event-processingesper

Get Maximum , Minimum , High of first bar and low of Last from Esper Query


I am new with Esper which is Javas Complex Event Processing framework. Currently i am using the following query:

select 
min(low) as minLow,max(high) as maxHigh
from 
Bar.win:time_batch(180 sec);

I also want to get the high of first Bar and Low of Last bar in 180 sec window. Any Idea how can i achieve that?


Solution

  • We can use last() and first().