Pergunta

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?

Foi útil?

Solução

We can use last() and first().

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top