trading_system_1.epl: remove some out of date comments

This commit is contained in:
2018-10-30 17:44:44 -07:00
parent c2ff0ab7ad
commit c9c10da4bc

View File

@ -206,16 +206,11 @@ insert into LongEntryStream
create schema LongEntryDistinct as (current BigDecimal, time org.joda.time.DateTime, create schema LongEntryDistinct as (current BigDecimal, time org.joda.time.DateTime,
instrument String, units int) instrument String, units int)
-- TODO need instrument and units too
insert into LongEntryDistinct insert into LongEntryDistinct
select le.current as current, le.time as time, select le.current as current, le.time as time,
le.instrument as instrument, TradeSize as units le.instrument as instrument, TradeSize as units
from pattern [every-distinct(le.time) le=LongEntryStream] from pattern [every-distinct(le.time) le=LongEntryStream]
-- The EsperProcessor java class has a listener for LongEntryDistinct
-- events. In the future it will place trades but at the moment it
-- just logs the event.
-- --
-- Event logging -- Event logging