質問

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?

役に立ちましたか?

解決

We can use last() and first().

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top