From c9c10da4bcb26b2174bd220a47d8d5650487132d Mon Sep 17 00:00:00 2001 From: Seth Ladygo Date: Tue, 30 Oct 2018 17:44:44 -0700 Subject: [PATCH] trading_system_1.epl: remove some out of date comments --- epl/trading_system_1.epl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/epl/trading_system_1.epl b/epl/trading_system_1.epl index bb3f867..7cdd7a5 100644 --- a/epl/trading_system_1.epl +++ b/epl/trading_system_1.epl @@ -206,16 +206,11 @@ insert into LongEntryStream create schema LongEntryDistinct as (current BigDecimal, time org.joda.time.DateTime, instrument String, units int) --- TODO need instrument and units too insert into LongEntryDistinct select le.current as current, le.time as time, le.instrument as instrument, TradeSize as units 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