package com.dukascopy.visualforex.spaima1976; import java.util.*; import com.dukascopy.api.*; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.concurrent.CopyOnWriteArrayList; import java.lang.reflect.*; import java.math.BigDecimal; /* * Created by VisualJForex Generator, version 2.35 * Date: 24.10.2016 20:35 */ public class A2007 implements IStrategy { private CopyOnWriteArrayList tradeEventActions = new CopyOnWriteArrayList(); private static final String DATE_FORMAT_NOW = "yyyyMMdd_HHmmss"; private IEngine engine; private IConsole console; private IHistory history; private IContext context; private IIndicators indicators; private IUserInterface userInterface; @Configurable("defaultSlippage:") public int defaultSlippage = 2; @Configurable("defaultTakeProfit:") public int defaultTakeProfit = 150; @Configurable("defaultPeriod:") public Period defaultPeriod = Period.TEN_MINS; @Configurable("defaultTradeAmount:") public double defaultTradeAmount = 5.0; @Configurable("defaultStopLoss:") public int defaultStopLoss = 150; @Configurable("defaultInstrument:") public Instrument defaultInstrument = Instrument.GBPJPY; private String AccountCurrency = ""; private double Leverage; private int _tempVar264 = 50; private int _tempVar92 = 100; private Period _tempVar90 = Period.FIVE_MINS; private double _Dif_1; private double _Dif_2; private Period _tempVar495 = Period.FIFTEEN_MINS; private double _tempVar116 = 1.0; private Tick LastTick = null ; private int _tempVar115 = 3; private double _line10; private String AccountId = ""; private double Equity; private double UseofLeverage; private double _t313; private List PendingPositions = null ; private double _out51; private Period _tempVar113 = Period.FIVE_MINS; private List AllPositions = null ; private int OverWeekendEndLeverage; private int MarginCutLevel; private Candle LastAskCandle = null ; private boolean GlobalAccount; private List OpenPositions = null ; private Candle candle12 = null ; private IMessage LastTradeEvent = null ; private Candle LastBidCandle = null ; public void onStart(IContext context) throws JFException { this.engine = context.getEngine(); this.console = context.getConsole(); this.history = context.getHistory(); this.context = context; this.indicators = context.getIndicators(); this.userInterface = context.getUserInterface(); subscriptionInstrumentCheck(defaultInstrument); ITick lastITick = context.getHistory().getLastTick(defaultInstrument); LastTick = new Tick(lastITick, defaultInstrument); IBar bidBar = context.getHistory().getBar(defaultInstrument, defaultPeriod, OfferSide.BID, 1); IBar askBar = context.getHistory().getBar(defaultInstrument, defaultPeriod, OfferSide.ASK, 1); LastAskCandle = new Candle(askBar, defaultPeriod, defaultInstrument, OfferSide.ASK); LastBidCandle = new Candle(bidBar, defaultPeriod, defaultInstrument, OfferSide.BID); if (indicators.getIndicator("SMA") == null) { indicators.registerDownloadableIndicator("1314","SMA"); } if (indicators.getIndicator("T3") == null) { indicators.registerDownloadableIndicator("1311","T3"); } subscriptionInstrumentCheck(Instrument.fromString("GBP/JPY")); } public void onAccount(IAccount account) throws JFException { AccountCurrency = account.getCurrency().toString(); Leverage = account.getLeverage(); AccountId= account.getAccountId(); Equity = account.getEquity(); UseofLeverage = account.getUseOfLeverage(); OverWeekendEndLeverage = account.getOverWeekEndLeverage(); MarginCutLevel = account.getMarginCutLevel(); GlobalAccount = account.isGlobal(); } private void updateVariables(Instrument instrument) { try { AllPositions = engine.getOrders(); List listMarket = new ArrayList(); for (IOrder order: AllPositions) { if (order.getState().equals(IOrder.State.FILLED)){ listMarket.add(order); } } List listPending = new ArrayList(); for (IOrder order: AllPositions) { if (order.getState().equals(IOrder.State.OPENED)){ listPending.add(order); } } OpenPositions = listMarket; PendingPositions = listPending; } catch(JFException e) { e.printStackTrace(); } } public void onMessage(IMessage message) throws JFException { if (message.getOrder() != null) { updateVariables(message.getOrder().getInstrument()); LastTradeEvent = message; for (TradeEventAction event : tradeEventActions) { IOrder order = message.getOrder(); if (order != null && event != null && message.getType().equals(event.getMessageType())&& order.getLabel().equals(event.getPositionLabel())) { Method method; try { method = this.getClass().getDeclaredMethod(event.getNextBlockId(), Integer.class); method.invoke(this, new Integer[] {event.getFlowId()}); } catch (SecurityException e) { e.printStackTrace(); } catch (NoSuchMethodException e) { e.printStackTrace(); } catch (IllegalArgumentException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); } tradeEventActions.remove(event); } } } } public void onStop() throws JFException { } public void onTick(Instrument instrument, ITick tick) throws JFException { LastTick = new Tick(tick, instrument); updateVariables(instrument); If_block_37(0); } public void onBar(Instrument instrument, Period period, IBar askBar, IBar bidBar) throws JFException { LastAskCandle = new Candle(askBar, period, instrument, OfferSide.ASK); LastBidCandle = new Candle(bidBar, period, instrument, OfferSide.BID); updateVariables(instrument); If_block_37(1); } public void subscriptionInstrumentCheck(Instrument instrument) { try { if (!context.getSubscribedInstruments().contains(instrument)) { Set instruments = new HashSet(); instruments.add(instrument); context.setSubscribedInstruments(instruments, true); Thread.sleep(100); } } catch (InterruptedException e) { e.printStackTrace(); } } public double round(double price, Instrument instrument) { BigDecimal big = new BigDecimal("" + price); big = big.setScale(instrument.getPipScale() + 1, BigDecimal.ROUND_HALF_UP); return big.doubleValue(); } public ITick getLastTick(Instrument instrument) { try { return (context.getHistory().getTick(instrument, 0)); } catch (JFException e) { e.printStackTrace(); } return null; } private void SMA_block_10(Integer flow) { Instrument argument_1 = defaultInstrument; Period argument_2 = _tempVar90; int argument_3 = 0; int argument_4 = _tempVar92; OfferSide[] offerside = new OfferSide[1]; IIndicators.AppliedPrice[] appliedPrice = new IIndicators.AppliedPrice[1]; offerside[0] = OfferSide.BID; appliedPrice[0] = IIndicators.AppliedPrice.CLOSE; Object[] params = new Object[1]; params[0] = _tempVar92; try { subscriptionInstrumentCheck(argument_1); long time = context.getHistory().getBar(argument_1, argument_2, OfferSide.BID, argument_3).getTime(); Object[] indicatorResult = context.getIndicators().calculateIndicator(argument_1, argument_2, offerside, "SMA", appliedPrice, params, Filter.WEEKENDS, 1, time, 0); if ((new Double(((double [])indicatorResult[0])[0])) == null) { this._line10 = Double.NaN; } else { this._line10 = (((double [])indicatorResult[0])[0]); } T3_block_13(flow); } catch (JFException e) { e.printStackTrace(); console.getErr().println(e); this._line10 = Double.NaN; } } private void T3_block_13(Integer flow) { Instrument argument_1 = defaultInstrument; Period argument_2 = _tempVar113; int argument_3 = 0; int argument_4 = _tempVar115; double argument_5 = _tempVar116; OfferSide[] offerside = new OfferSide[1]; IIndicators.AppliedPrice[] appliedPrice = new IIndicators.AppliedPrice[1]; offerside[0] = OfferSide.BID; appliedPrice[0] = IIndicators.AppliedPrice.CLOSE; Object[] params = new Object[2]; params[0] = _tempVar115; params[1] = _tempVar116; try { subscriptionInstrumentCheck(argument_1); long time = context.getHistory().getBar(argument_1, argument_2, OfferSide.BID, argument_3).getTime(); Object[] indicatorResult = context.getIndicators().calculateIndicator(argument_1, argument_2, offerside, "T3", appliedPrice, params, Filter.WEEKENDS, 1, time, 0); if ((new Double(((double [])indicatorResult[0])[0])) == null) { this._t313 = Double.NaN; } else { this._t313 = (((double [])indicatorResult[0])[0]); } If_block_18(flow); } catch (JFException e) { e.printStackTrace(); console.getErr().println(e); this._t313 = Double.NaN; } } private void Calculation_block_14(Integer flow) { double argument_1 = _line10; double argument_2 = _t313; _Dif_1 = argument_1 - argument_2; If_block_50(flow); } private void Calculation_block_15(Integer flow) { double argument_1 = _t313; double argument_2 = _line10; _Dif_2 = argument_1 - argument_2; If_block_42(flow); } private void If_block_16(Integer flow) { double argument_1 = _Dif_2; double argument_2 = 2.45; if (argument_1< argument_2) { If_block_19(flow); } else if (argument_1> argument_2) { OpenatMarket_block_28(flow); } else if (argument_1== argument_2) { } } private void If_block_17(Integer flow) { double argument_1 = _Dif_1; double argument_2 = 2.45; if (argument_1< argument_2) { If_block_20(flow); } else if (argument_1> argument_2) { OpenatMarket_block_36(flow); } else if (argument_1== argument_2) { } } private void If_block_18(Integer flow) { double argument_1 = _line10; double argument_2 = _t313; if (argument_1< argument_2) { Calculation_block_15(flow); } else if (argument_1> argument_2) { Calculation_block_14(flow); } else if (argument_1== argument_2) { } } private void If_block_19(Integer flow) { double argument_1 = _Dif_2; double argument_2 = 2.0; if (argument_1< argument_2) { If_block_21(flow); } else if (argument_1> argument_2) { OpenatMarket_block_29(flow); } else if (argument_1== argument_2) { } } private void If_block_20(Integer flow) { double argument_1 = _Dif_1; double argument_2 = 2.0; if (argument_1< argument_2) { If_block_22(flow); } else if (argument_1> argument_2) { OpenatMarket_block_35(flow); } else if (argument_1== argument_2) { } } private void If_block_21(Integer flow) { double argument_1 = _Dif_2; double argument_2 = 1.55; if (argument_1< argument_2) { If_block_23(flow); } else if (argument_1> argument_2) { OpenatMarket_block_27(flow); } else if (argument_1== argument_2) { } } private void If_block_22(Integer flow) { double argument_1 = _Dif_1; double argument_2 = 1.55; if (argument_1< argument_2) { If_block_24(flow); } else if (argument_1> argument_2) { OpenatMarket_block_32(flow); } else if (argument_1== argument_2) { } } private void If_block_23(Integer flow) { double argument_1 = _Dif_2; double argument_2 = 1.05; if (argument_1< argument_2) { If_block_25(flow); } else if (argument_1> argument_2) { OpenatMarket_block_31(flow); } else if (argument_1== argument_2) { } } private void If_block_24(Integer flow) { double argument_1 = _Dif_1; double argument_2 = 1.06; if (argument_1< argument_2) { If_block_26(flow); } else if (argument_1> argument_2) { OpenatMarket_block_34(flow); } else if (argument_1== argument_2) { } } private void If_block_25(Integer flow) { double argument_1 = _Dif_2; double argument_2 = 0.62; if (argument_1< argument_2) { If_block_38(flow); } else if (argument_1> argument_2) { OpenatMarket_block_30(flow); } else if (argument_1== argument_2) { } } private void If_block_26(Integer flow) { double argument_1 = _Dif_1; double argument_2 = 0.63; if (argument_1< argument_2) { If_block_39(flow); } else if (argument_1> argument_2) { OpenatMarket_block_33(flow); } else if (argument_1== argument_2) { } } private void OpenatMarket_block_27(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 0.75; int argument_3 = defaultSlippage; int argument_4 = 45; int argument_5 = 35; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.SELL; double stopLoss = tick.getAsk() + argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getAsk() - argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_28(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 8.0; int argument_3 = defaultSlippage; int argument_4 = 55; int argument_5 = 75; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.SELL; double stopLoss = tick.getAsk() + argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getAsk() - argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_29(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 2.25; int argument_3 = defaultSlippage; int argument_4 = 40; int argument_5 = 35; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.SELL; double stopLoss = tick.getAsk() + argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getAsk() - argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_30(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 0.1; int argument_3 = defaultSlippage; int argument_4 = 40; int argument_5 = 40; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.SELL; double stopLoss = tick.getAsk() + argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getAsk() - argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_31(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 0.25; int argument_3 = defaultSlippage; int argument_4 = 45; int argument_5 = 30; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.SELL; double stopLoss = tick.getAsk() + argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getAsk() - argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_32(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 0.75; int argument_3 = defaultSlippage; int argument_4 = 45; int argument_5 = 35; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.BUY; double stopLoss = tick.getBid() - argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getBid() + argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_33(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 0.1; int argument_3 = defaultSlippage; int argument_4 = 40; int argument_5 = 40; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.BUY; double stopLoss = tick.getBid() - argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getBid() + argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_34(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 0.25; int argument_3 = defaultSlippage; int argument_4 = 45; int argument_5 = 30; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.BUY; double stopLoss = tick.getBid() - argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getBid() + argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_35(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 2.25; int argument_3 = defaultSlippage; int argument_4 = 40; int argument_5 = 35; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.BUY; double stopLoss = tick.getBid() - argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getBid() + argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_36(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 8.0; int argument_3 = defaultSlippage; int argument_4 = 55; int argument_5 = 75; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.BUY; double stopLoss = tick.getBid() - argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getBid() + argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void If_block_37(Integer flow) { int argument_1 = AllPositions.size(); int argument_2 = 1; if (argument_1< argument_2) { SMA_block_10(flow); } else if (argument_1> argument_2) { } else if (argument_1== argument_2) { } } private void If_block_38(Integer flow) { double argument_1 = _Dif_2; double argument_2 = 0.25; if (argument_1< argument_2) { } else if (argument_1> argument_2) { OpenatMarket_block_40(flow); } else if (argument_1== argument_2) { } } private void If_block_39(Integer flow) { double argument_1 = _Dif_1; double argument_2 = 0.25; if (argument_1< argument_2) { } else if (argument_1> argument_2) { OpenatMarket_block_41(flow); } else if (argument_1== argument_2) { } } private void OpenatMarket_block_40(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 0.07; int argument_3 = defaultSlippage; int argument_4 = 40; int argument_5 = 45; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.SELL; double stopLoss = tick.getAsk() + argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getAsk() - argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_41(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 0.07; int argument_3 = defaultSlippage; int argument_4 = 40; int argument_5 = 45; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.BUY; double stopLoss = tick.getBid() - argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getBid() + argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void If_block_42(Integer flow) { double argument_1 = _Dif_2; double argument_2 = 6.0; if (argument_1< argument_2) { If_block_43(flow); } else if (argument_1> argument_2) { OpenatMarket_block_45(flow); } else if (argument_1== argument_2) { } } private void If_block_43(Integer flow) { double argument_1 = _Dif_2; double argument_2 = 5.25; if (argument_1< argument_2) { If_block_16(flow); } else if (argument_1> argument_2) { OpenatMarket_block_44(flow); } else if (argument_1== argument_2) { } } private void OpenatMarket_block_44(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 6.4; int argument_3 = defaultSlippage; int argument_4 = 60; int argument_5 = 150; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.SELL; double stopLoss = tick.getAsk() + argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getAsk() - argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_45(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 7.0; int argument_3 = defaultSlippage; int argument_4 = defaultStopLoss; int argument_5 = 150; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.SELL; double stopLoss = tick.getAsk() + argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getAsk() - argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void OpenatMarket_block_46(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 6.0; int argument_3 = defaultSlippage; int argument_4 = 60; int argument_5 = defaultTakeProfit; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.BUY; double stopLoss = tick.getBid() - argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getBid() + argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void If_block_47(Integer flow) { double argument_1 = _Dif_1; double argument_2 = 5.0; if (argument_1< argument_2) { If_block_17(flow); } else if (argument_1> argument_2) { OpenatMarket_block_46(flow); } else if (argument_1== argument_2) { } } private void OpenatMarket_block_49(Integer flow) { Instrument argument_1 = defaultInstrument; double argument_2 = 7.0; int argument_3 = 7; int argument_4 = defaultStopLoss; int argument_5 = defaultTakeProfit; String argument_6 = ""; ITick tick = getLastTick(argument_1); IEngine.OrderCommand command = IEngine.OrderCommand.BUY; double stopLoss = tick.getBid() - argument_1.getPipValue() * argument_4; double takeProfit = round(tick.getBid() + argument_1.getPipValue() * argument_5, argument_1); try { String label = getLabel(); IOrder order = context.getEngine().submitOrder(label, argument_1, command, argument_2, 0, argument_3, stopLoss, takeProfit, 0, argument_6); } catch (JFException e) { e.printStackTrace(); } } private void If_block_50(Integer flow) { double argument_1 = _Dif_1; double argument_2 = 6.0; if (argument_1< argument_2) { If_block_47(flow); } else if (argument_1> argument_2) { OpenatMarket_block_49(flow); } else if (argument_1== argument_2) { } } class Candle { IBar bar; Period period; Instrument instrument; OfferSide offerSide; public Candle(IBar bar, Period period, Instrument instrument, OfferSide offerSide) { this.bar = bar; this.period = period; this.instrument = instrument; this.offerSide = offerSide; } public Period getPeriod() { return period; } public void setPeriod(Period period) { this.period = period; } public Instrument getInstrument() { return instrument; } public void setInstrument(Instrument instrument) { this.instrument = instrument; } public OfferSide getOfferSide() { return offerSide; } public void setOfferSide(OfferSide offerSide) { this.offerSide = offerSide; } public IBar getBar() { return bar; } public void setBar(IBar bar) { this.bar = bar; } public long getTime() { return bar.getTime(); } public double getOpen() { return bar.getOpen(); } public double getClose() { return bar.getClose(); } public double getLow() { return bar.getLow(); } public double getHigh() { return bar.getHigh(); } public double getVolume() { return bar.getVolume(); } } class Tick { private ITick tick; private Instrument instrument; public Tick(ITick tick, Instrument instrument){ this.instrument = instrument; this.tick = tick; } public Instrument getInstrument(){ return instrument; } public double getAsk(){ return tick.getAsk(); } public double getBid(){ return tick.getBid(); } public double getAskVolume(){ return tick.getAskVolume(); } public double getBidVolume(){ return tick.getBidVolume(); } public long getTime(){ return tick.getTime(); } public ITick getTick(){ return tick; } } protected String getLabel() { String label; label = "IVF" + getCurrentTime(LastTick.getTime()) + generateRandom(10000) + generateRandom(10000); return label; } private String getCurrentTime(long time) { SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT_NOW); return sdf.format(time); } private static String generateRandom(int n) { int randomNumber = (int) (Math.random() * n); String answer = "" + randomNumber; if (answer.length() > 3) { answer = answer.substring(0, 4); } return answer; } class TradeEventAction { private IMessage.Type messageType; private String nextBlockId = ""; private String positionLabel = ""; private int flowId = 0; public IMessage.Type getMessageType() { return messageType; } public void setMessageType(IMessage.Type messageType) { this.messageType = messageType; } public String getNextBlockId() { return nextBlockId; } public void setNextBlockId(String nextBlockId) { this.nextBlockId = nextBlockId; } public String getPositionLabel() { return positionLabel; } public void setPositionLabel(String positionLabel) { this.positionLabel = positionLabel; } public int getFlowId() { return flowId; } public void setFlowId(int flowId) { this.flowId = flowId; } } }