/* =========================================================== * TradeManager : An application to trade strategies for the Java(tm) platform * =========================================================== * * (C) Copyright 2011-2011, by Simon Allen and Contributors. * * Project Info: org.trade * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, * USA. * * [Java is a trademark or registered trademark of Oracle, Inc. * in the United States and other countries.] * * (C) Copyright 2011-2011, by Simon Allen and Contributors. * * Original Author: Simon Allen; * Contributor(s): -; * * Changes * ------- * */ package org.trade.strategy; import java.time.ZonedDateTime; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.trade.broker.BrokerModel; import org.trade.core.util.TradingCalendar; import org.trade.core.valuetype.Money; import org.trade.dictionary.valuetype.Action; import org.trade.dictionary.valuetype.OrderStatus; import org.trade.dictionary.valuetype.Side; import org.trade.dictionary.valuetype.TradestrategyStatus; import org.trade.persistent.dao.Candle; import org.trade.persistent.dao.Entrylimit; import org.trade.persistent.dao.TradeOrder; import org.trade.strategy.data.CandleSeries; import org.trade.strategy.data.StrategyData; import org.trade.strategy.data.candle.CandleItem; /** * @author Simon Allen * * @version $Revision: 1.0 $ */ public class FiveMinWRBGapBarStrategy extends AbstractStrategyRule { /** * 1/ Enter in the direction of the Tradingday Tab Side field when the first * 5min bar direction co-inside. * * 2/ Size with a stop at the first 5min bars Low (so for Long position * Quantity= Risk/(High-Low) include rounding). Use a STPLMT order with a * range from the Entry Limit table. * * 3/ Bar must be within the Entry Limit table % Range Bar. i.e in this case * 2% * * 4/ If the position is not filled by 10:30 cancel the order. * * 5/ Add 1c to the entry price and round over/under whole/half numbers in * the direction of the trade, same for stop price. * * E.g. If first 5min bar is H=21.50 L=21.15 Open= 21.2 Close=21.40 and the * Side is Long, then position order will be Buy STPLMT=21.51-21.55 (STPLMT * range 0.04 from EntryLimit table and as we are at 21.5 we also buy * over/under whole/half numbers), Quantity=Risk/(21.51-21.2) rounded to * +/-100 shares (see EntryLimit table). * * TODO Add logic to use the previous days +/-WRB size as a definition of a * WRB and then take an entry. * */ private static final long serialVersionUID = -2517966650638318307L; private final static Logger _log = LoggerFactory.getLogger(FiveMinWRBGapBarStrategy.class); private Integer openPositionOrderKey = null; /** * Default Constructor Note if you use class variables remember these will * need to be initialized if the strategy is restarted i.e. if they are * created on startup under a constraint you must find a way to populate * that value if the strategy were to be restarted and the constraint is not * met. * * @param brokerManagerModel * BrokerModel * @param strategyData * StrategyData * @param idTradestrategy * Integer */ public FiveMinWRBGapBarStrategy(BrokerModel brokerManagerModel, StrategyData strategyData, Integer idTradestrategy) { super(brokerManagerModel, strategyData, idTradestrategy); } /** * Method runStrategy. * * @param candleSeries * CandleSeries * @param newBar * boolean * @see org.trade.strategy.StrategyRule#runStrategy(CandleSeries, boolean) */ public void runStrategy(CandleSeries candleSeries, boolean newBar) { try { // Get the current candle CandleItem currentCandleItem = this.getCurrentCandle(); // AbstractStrategyRule.logCandle(this, // currentCandleItem.getCandle()); ZonedDateTime startPeriod = currentCandleItem.getPeriod().getStart(); /* * Trade is open kill this Strategy as its job is done. */ if (this.isThereOpenPosition()) { _log.info("Strategy complete open position filled symbol: " + getSymbol() + " startPeriod: " + startPeriod); /* * If the order is partial filled chaeck and if the risk goes * beyond 1 risk unit cancel the openPositionOrder this will * cause it to be marked as filled. */ if (OrderStatus.PARTIALFILLED.equals(this.getOpenPositionOrder().getStatus())) { if (isRiskViolated(currentCandleItem.getClose(), this.getTradestrategy().getRiskAmount(), this.getOpenPositionOrder().getQuantity(), this.getOpenPositionOrder().getAverageFilledPrice())) { this.cancelOrder(this.getOpenPositionOrder()); } } this.cancel(); return; } /* * Open position order was cancelled kill this Strategy as its job * is done. */ if (null != openPositionOrderKey && !this.getTradeOrder(openPositionOrderKey).isActive()) { _log.info("Strategy complete open position cancelled symbol: " + getSymbol() + " startPeriod: " + startPeriod); updateTradestrategyStatus(TradestrategyStatus.CANCELLED); this.cancel(); return; } /* * Is it the the 9:35 candle? and we have not created an open * position trade. */ if (startPeriod.equals(this.getTradestrategy().getTradingday().getOpen() .plusMinutes(this.getTradestrategy().getBarSize() / 60)) && newBar) { Candle candleAvgBar = candleSeries.getAverageBar( TradingCalendar.getDateAtTime(TradingCalendar.getPrevTradingDay(startPeriod), this.getTradestrategy().getTradingday().getOpen()), TradingCalendar.getDateAtTime(TradingCalendar.getPrevTradingDay(startPeriod), this.getTradestrategy().getTradingday().getClose()), true); _log.info("Market Wieghted bar Open: " + candleAvgBar.getOpen() + " High: " + candleAvgBar.getHigh() + " Low: " + candleAvgBar.getLow() + " Close: " + candleAvgBar.getClose()); Candle candleBar = candleSeries.getBar( TradingCalendar.getDateAtTime(TradingCalendar.getPrevTradingDay(startPeriod), this.getTradestrategy().getTradingday().getOpen()), TradingCalendar.getDateAtTime(TradingCalendar.getPrevTradingDay(startPeriod), this.getTradestrategy().getTradingday().getClose())); _log.info("Market Wieghted bar Open: " + candleBar.getOpen() + " High: " + candleBar.getHigh() + " Low: " + candleBar.getLow() + " Close: " + candleBar.getClose()); CandleItem prevCandleItem = null; if (getCurrentCandleCount() > 0) { prevCandleItem = (CandleItem) candleSeries.getDataItem(getCurrentCandleCount() - 1); // AbstractStrategyRule // .logCandle(this, prevCandleItem.getCandle()); } Side side = Side.newInstance(Side.SLD); if (prevCandleItem.isSide(Side.BOT)) { side = Side.newInstance(Side.BOT); } Money price = new Money(prevCandleItem.getHigh()); Money priceStop = new Money(prevCandleItem.getLow()); String action = Action.BUY; if (side.equalsCode(Side.SLD)) { price = new Money(prevCandleItem.getLow()); priceStop = new Money(prevCandleItem.getHigh()); action = Action.SELL; } Money priceClose = new Money(prevCandleItem.getClose()); Entrylimit entrylimit = getEntryLimit().getValue(priceClose); double highLowRange = Math.abs(prevCandleItem.getHigh() - prevCandleItem.getLow()); // double openCloseRange = Math.abs(prevCandleItem // .getOpen() - prevCandleItem.getClose()); priceStop = new Money(prevCandleItem.getOpen()); // If the candle less than the entry limit % if ((highLowRange / prevCandleItem.getClose()) < entrylimit.getPercentOfPrice().doubleValue()) { // TODO add the tails as a % of the body. _log.info(" We have a trade!! Symbol: " + getSymbol() + " Time: " + startPeriod); /* * Create an open position. */ TradeOrder tradeOrder = createRiskOpenPosition(action, price, priceStop, true, null, null, null, null); openPositionOrderKey = tradeOrder.getOrderKey(); } else { _log.info("Rule 9:35 5min bar outside % limits. Symbol: " + getSymbol() + " Time: " + startPeriod); this.updateTradestrategyStatus(TradestrategyStatus.PERCENT); // Kill this process we are done! this.cancel(); } } else if (!startPeriod.isBefore(this.getTradestrategy().getTradingday().getOpen().plusMinutes(60))) { if (!this.isThereOpenPosition() && !TradestrategyStatus.CANCELLED.equals(getTradestrategy().getStatus())) { this.updateTradestrategyStatus(TradestrategyStatus.TO); this.cancelAllOrders(); // No trade we timed out _log.info("Rule 10:30:00 bar, time out unfilled open position Symbol: " + getSymbol() + " Time: " + startPeriod); } this.cancel(); } } catch (StrategyRuleException ex) { _log.error("Error runRule exception: " + ex.getMessage(), ex); error(1, 10, "Error runRule exception: " + ex.getMessage()); } } }