Custom EA Docs

20 November 2020, 16:16
Robots4Forex Ltd
0
1 167

Config and documentation for Custom EA.

Latest settings for Custom EA - https://www.mql5.com/en/blogs/post/741789

ORDER SETTINGS

  • MagicOrderNumber - Unique number for the EA to identify its trades. Any integer.
  • Lots - Number of lots for the first trade in a group. Values from 0.01 to 50.0.
  • Slippage - Slippage in pips. Values from 1 to 10.
  • MoneyManagement - If turned on trade lot sizes are calculated on account risk, true/false.
  • MoneyManagementRisk - Risk per trade if money management is on. Values from 0.01 to 0.1.
  • AllowNewTrades - Turn this of to disable new trade groups, true/false.
  • AccountProfitLock - If money management is on the EA will stop trading if the account balance drops to this fraction of the maximum account balance (0.5 = 50% of account balance). Values from 0.0 to 1.0.
  • PositionComment - Allows you to set the position comment.
  • DrawIndicators - Draw on chart indicators that are enabled if applicable.
  • DrawInterface - Draws the interface.
  • DrawCloseAll - Adds close all buttons to the interface.
  • TimerFrequency - The frequency for timer for functionality of timer based functions. ScriptedTimeEntry, TradeCopyingServer, TradeCopyingClient & TimeEntry.

PRESET STRATEGIES

  • PresetStrategy - The selection of preset strategy to trade, setting to ST_NONE disables.
  • PresetStrategyMaxSpread - The maximum spread for the preset strategy to trade.
  • PresetStrategyGMTOffset -The GMT offset for the preset strategy.

LIMITED TRADING SETTINGS

  • LimitedTradeTimes - If enabled limits the hours traded.
  • LimitedTradeTimesHours - Comma separated list of hours to trade. Hyphens can be used for multiple hours in a row instead of listing all hours, e.g. "3-10,12,15".
  • LimitedTradeTimesGMTOffset - The GMT offset for LimitedTradeTimes.

CUSTOM INDICATOR SETTINGS

The EA can use custom indicators to open trade positions by reading the custom indicator buffers. For example a custom indicator that uses buffers to display where to place a stop or limit order can be traded automatically by setting the buffer indexes to place the orders. Buffers can also be used to set the stop loss for the orders by selecting the buffer indexes to use and the number of bars to look back for the stop loss. Custom indicators can be used in all modes, STOP, LIMIT and MARKET. When using them in MARKET mode the thresholds are checked against buffer values to trigger trades.

CUSTOM INDICATOR 1

  • Indicator1Filename - The filename excluding the extension of the custom indicator to trade from. Leave blank to disable.
  • Indicator1TimeFrame - The time frame selection for the indicator.
  • Indicator1Inputs - List of input values separated by | for the indicator, leave blank for defaults. e.g. 200|14|123
  • Indicator1BuyBufferEntryIndex - The indicator buffer index for the buy entry.
  • Indicator1BuyBufferEntryIndexShift - The shift for the indicator buy buffer.
  • Indicator1BuyBufferStopLossIndex - The indicator buffer index for the buy stop loss.
  • Indicator1BuyBufferStopLossIndexShift - The shift for the indicator buy stop loss.
  • Indicator1BuyBufferStopLossIndexLookBack - The number of bars to look back for the buy stop loss value.
  • Indicator1SellBufferEntryIndex - The indicator buffer index for the sell entry.
  • Indicator1SellBufferEntryIndexShift - The shift for the indicator sell buffer.
  • Indicator1SellBufferStopLossIndex - The indicator buffer index for the sell stop loss.
  • Indicator1SellBufferStopLossIndexShift - The shift for the indicator sell stop loss.
  • Indicator1SellBufferStopLossIndexLookBack - The number of bars to look back for the sell stop loss value.
  • Indicator1BuyType - The type of comparison for the entry when using market entry. GREATER_THAN, GREATER_THAN_EQUAL, LESS_THAN, LESS_THAN_EQUAL, EQUAL, NOT_EQUAL & NONE.
  • Indicator1BuyValue - The threshold to use for comparison.
  • Indicator1SellType - The type of comparison for the entry when using market entry. GREATER_THAN, GREATER_THAN_EQUAL, LESS_THAN, LESS_THAN_EQUAL, EQUAL, NOT_EQUAL & NONE.
  • Indicator1SellValue - The threshold to use for comparison.

CUSTOM INDICATOR 2

  • Indicator2Filename - The filename excluding the extension of the custom indicator to trade from. Leave blank to disable.
  • Indicator2TimeFrame - The time frame selection for the indicator.
  • Indicator2Inputs - List of input values separated by | for the indicator, leave blank for defaults. e.g. 200|14|123
  • Indicator2BuyBufferEntryIndex - The indicator buffer index for the buy entry.
  • Indicator2BuyBufferEntryIndexShift - The shift for the indicator buy buffer.
  • Indicator2BuyBufferStopLossIndex - The indicator buffer index for the buy stop loss.
  • Indicator2BuyBufferStopLossIndexShift - The shift for the indicator buy stop loss.
  • Indicator2BuyBufferStopLossIndexLookBack - The number of bars to look back for the buy stop loss value.
  • Indicator2SellBufferEntryIndex - The indicator buffer index for the sell entry.
  • Indicator2SellBufferEntryIndexShift - The shift for the indicator sell buffer.
  • Indicator2SellBufferStopLossIndex - The indicator buffer index for the sell stop loss.
  • Indicator2SellBufferStopLossIndexShift - The shift for the indicator sell stop loss.
  • Indicator2SellBufferStopLossIndexLookBack - The number of bars to look back for the sell stop loss value.
  • Indicator2BuyType - The type of comparison for the entry when using market entry. GREATER_THAN, GREATER_THAN_EQUAL, LESS_THAN, LESS_THAN_EQUAL, EQUAL, NOT_EQUAL & NONE.
  • Indicator2BuyValue - The threshold to use for comparison.
  • Indicator2SellType - The type of comparison for the entry when using market entry. GREATER_THAN, GREATER_THAN_EQUAL, LESS_THAN, LESS_THAN_EQUAL, EQUAL, NOT_EQUAL & NONE.
  • Indicator2SellValue - The threshold to use for comparison.

CUSTOM INDICATOR 3

  • Indicator3Filename - The filename excluding the extension of the custom indicator to trade from. Leave blank to disable.
  • Indicator3TimeFrame - The time frame selection for the indicator.
  • Indicator3Inputs - List of input values separated by | for the indicator, leave blank for defaults. e.g. 200|14|123
  • Indicator3BuyBufferEntryIndex - The indicator buffer index for the buy entry.
  • Indicator3BuyBufferEntryIndexShift - The shift for the indicator buy buffer.
  • Indicator3BuyBufferStopLossIndex - The indicator buffer index for the buy stop loss.
  • Indicator3BuyBufferStopLossIndexShift - The shift for the indicator buy stop loss.
  • Indicator3BuyBufferStopLossIndexLookBack - The number of bars to look back for the buy stop loss value.
  • Indicator3SellBufferEntryIndex - The indicator buffer index for the sell entry.
  • Indicator3SellBufferEntryIndexShift - The shift for the indicator sell buffer.
  • Indicator3SellBufferStopLossIndex - The indicator buffer index for the sell stop loss.
  • Indicator3SellBufferStopLossIndexShift - The shift for the indicator sell stop loss.
  • Indicator3SellBufferStopLossIndexLookBack - The number of bars to look back for the sell stop loss value.
  • Indicator3BuyType - The type of comparison for the entry when using market entry. GREATER_THAN, GREATER_THAN_EQUAL, LESS_THAN, LESS_THAN_EQUAL, EQUAL, NOT_EQUAL & NONE.
  • Indicator3BuyValue - The threshold to use for comparison.
  • Indicator3SellType - The type of comparison for the entry when using market entry. GREATER_THAN, GREATER_THAN_EQUAL, LESS_THAN, LESS_THAN_EQUAL, EQUAL, NOT_EQUAL & NONE.
  • Indicator3SellValue - The threshold to use for comparison.

TRADE COPYING SETTINGS

Trade copy from one MT4 or MT5 terminal to another MT4 or MT5 terminal, compatible between MT terminal versions. To set this up you have the EA on a chart and enable TradeCopyingServer, then add the EA to another terminal and enable TradeCopyingClient. If required you can then setup the EA on the symbols you want to trade and apply exit logic using the EA to for example stop loss trail positions, just keep the magic number the same. More advanced logic is going to be added to trade copying to spread trades across a pool of accounts and risk management.

SERVER

  • TradeCopyingServer - Enables the trade copying server.
  • TradeCopyingServerGMTOffset - The GMT offset of the broker.
  • TradeCopyingServerMagic - The magic number to copy, zero to copy all.

CLIENT

  • TradeCopyingClient - Enables the trade copying client.
  • TradeCopyingClientGMTOffset - The GMT offset of the broker server .
  • TradeCopyingClientDelayThreshold - The threshold in seconds for the age of positions being opened, protects against old positions being opened. It's important that GMT offset is set correctly for this reason.
  • TradeCopyingClientAccountNo - The account number to copy.
  • TradeCopyingClientSymbolMap - Mapping of symbols, only use if symbols on the client are different to the server. Server symbol is on the left, client symbol is on the right, separated by ;.
  • TradeCopyingClientMultiplier - The lot multiplier, used to scale trades to the account size.
  • TradeCopyingClientCopyOpen - Enable copying of position opening.
  • TradeCopyingClientCopyClose - Enable copying of position closing. If you were applying a different exit strategy to the trades you would disable this and allow the EA to close the trades for example with trailing stop loss.

FILTER SETTINGS

Filters can be used to limit the trades being placed. For example if you wanted to trade when a fractal formed but only when RSI was over a threshold you would enable the RSI filter and the Fractal entry.

BAR TIME FILTER

  • BarTimeFilter - Enables the bar time filter. Trading time is specified by start time and end time.
  • BarTimeFilterTimeFrame - The time frame selection for the bar time filter.
  • BarTimeFilterGMTOffset - The GMT offset of the broker server.
  • BarTimeFilterStartHour - The start hour of the bar to allow trading.
  • BarTimeFilterStartMinute - The start minute of the bar to allow trading.
  • BarTimeFilterEndHour - The end hour of the bar to allow trading.
  • BarTimeFilterEndMinute - The end minute of the bar to allow trading.

ATR FILTER

  • ATRFilter - Enables the ATR filter.
  • ATRFilterTimeFrame - The time frame selection for the ATR filter.
  • ATRFilterPeriod - The period for the ATR filter.
  • ATRFilterShift - The shift for the ATR filter.
  • ATRFilterThreshold - The threshold for filtering, values under the threshold are filtered.

RANGE FILTER

  • RangeFilter - Enables the range filter.
  • RangeFilterTimeFrame - The time frame selection for the range filter.
  • RangeFilterBars - The number of bars to calculate the range.
  • RangeFilterThreshold - The threshold in pips for filtering.
  • RangeFilterReversion - If enabled values over the threshold are filtered.

RSI FILTER

  • RSIFilter - Enables the RSI filter.
  • RSIFilterTimeFrame - The time frame selection for the RSI filter.
  • RSIFilterPrice - The price selection for the RSI filter. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • RSIFilterPeriod - The period for the RSI filter.
  • RSIFilterShift - The shift for the RSI filter.
  • RSIFilterReversion - If enabled filters trades that are not reversion, if disabled does the opposite.
  • RSIFilterBuyThreshold - The buy threshold to filter.
  • RSIFilterSellThreshold - The sell threshold to filter.

ADX FILTER

  • ADXFilter - Enables the ADX filter.
  • ADXFilterTimeFrame - The time frame selection for the ADX filter.
  • ADXFilterPrice - The price selection for the ADX filter. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • ADXFilterPeriod - The period for the ADX filter.
  • ADXFilterShift - The shift for the ADX filter.
  • ADXFilterReversion - If enabled filters trades that are not reversion, if disabled does the opposite.
  • ADXFilterThreshold - The ADX threshold to filter.
  • ADXFilterPlusThreshold - The DI+ threshold to filter.
  • ADXFilterMinusThreshold - the DI- threshold to filter.

BW ACCELERATOR FILTER

  • ACFilter - Enables the AC filter.
  • ACFilterTimeFrame - The time frame selection for the AC filter.
  • ACFilterShift - The shift for the AC filter.
  • ACFilterReversion - If enabled filters trades that are not reversion, if disabled does the opposite.

CCI FILTER

  • CCIFilter - Enables the CCI filter.
  • CCIFilterTimeFrame - The time frame selection for the CCI filter.
  • CCIFilterThreshold - The CCI threshold to filter.
  • CCIFilterPrice - The price selection for the CCI filter. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • CCIFilterPeriod - The period for the CCI filter.
  • CCIFilterShift - The shift for the CCI filter.
  • CCIFilterReversion - If enabled filters trades that are not reversion, if disabled does the opposite.

STOCHASTIC FILTER

  • StochFilter - Enables the Stochastic filter.
  • StochFilterTimeFrame - The time frame selection for the Stochastic filter.
  • StochFilterKPeriod - The K period for the Stochastic filter.
  • StochFilterDPeriod - The D period for the Stochastic filter.
  • StochFilterSlowing - The slowing period for the Stochastic filter.
  • StochFilterMAMode - The MA type for the Stochastic filter. EMA, LWMA, SMA & SMMA.
  • StochFilterPrice - The price selection for the Stochastic filter. LOW_HIGH & CLOSE_CLOSE.
  • StochFilterShift - The shift for the Stochastic filter.
  • StochFilterReversion - If enabled filters trades that are not reversion, if disabled does the opposite.
  • StochFilterThreshold - The Stochastic threshold to filter.

MOVING AVERAGE FILTER

  • MAFilter - Enables the Moving Average filter.
  • MAFilterTimeFrame - The time frame selection for the Moving Average filter.
  • MAFilterSlowPeriod - The slow period for the Moving Average filter.
  • MAFilterSlowMAShift - The slow MA shift for the Moving Average filter.
  • MAFilterSlowShift - The slow shift for the Moving Average filter.
  • MAFilterSlowMAMode - The slow MA mode for the Moving Average filter. EMA, LWMA, SMA & SMMA.
  • MAFilterSlowPrice - The slow price selection for the Moving Average filter. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • MAFilterFastPeriod - The fast period for the Moving Average filter.
  • MAFilterFastMAShift - The fast MA shift for the Moving Average filter.
  • MAFilterFastShift - The fast shift for the Moving Average filter.
  • MAFilterFastMAMode - The fast MA mode for the Moving Average filter. EMA, LWMA, SMA & SMMA.
  • MAFilterFastPrice - The fast price selection for the Moving Average filter. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • MAFilterReversion - If enabled filters trades that are not reversion, if disabled does the opposite.

ADR FILTER

  • ADRFilter - Enables the ADR filter.
  • ADRFilterPeriod - The period for the ADR filter.
  • ADRFilterShift - The shift for the ADR filter.

ENTRY SETTINGS

  • MaxSpread - Maximum spread in pips that the EA will trade.
  • LimitAccountTrading - Enable to limit to 1 trade per account per magic number. If averaging is enabled then the averaging will not be affected but new trade groups will not be openned when one already exists.
  • LimitSingleSignals - Enable to limit 1 trade per direction.
  • LimitPositions - Limit the number of trades per direction.
  • LimitFIFO - Enable to limit to FIFO rules.
  • EntryType - The selection of entry type. MARKET, STOP & LIMIT.
  • EntryOffset - Adjust the entry position for STOP & LIMIT orders in pips.
  • EntryExpiryMinutes - Expiry in minutes for STOP & LIMIT orders. Zero disables.
  • TickEntry - Enable to look for entry on every tick. Setting entry shift to zero recalculates indicators on tick.

MARTINGALE - MARKET

  • Martingale - Enable martingale lot size multiplication after loss trades
  • MartingaleMultipier - The lot multiplier to use after a loss trade.
  • MartingaleMaxLossCount - The max loss count before resetting to the original lot size.

HEDGING

  • Hedging - Enables hedging.
  • HedgingStartPips - The number of pips to be in draw down before hedging.
  • HedgingReversalThresholdPips - The number of pips for the reversal threshold.
  • HedgingActiveThresholdPips - The number of pips for the active threshold.
  • HedgingDistancePips - The minimum distance between hedging trades.
  • HedgingExitPips - The pips profit to exit the hedge trade.
  • HedgingExitAtPips - The pips profit to exit the hedge trade.
  • HedgingExitMinPips - The min pips to exit a hedge trade based on RSI.
  • HedgingExitRSI - Enable exit on RSI for hedge trades.
  • HedgingExitRSITimeFrame - The RSI time frame selection.
  • HedgingExitRSIPrice - The RSI price selection.
  • HedgingExitRSIPeriod - The RSI period.
  • HedgingExitRSIShift - The RSI shift.
  • HedgingExitRSIThreshold - The RSI threshold for triggering hedge trade exit.

TAKE PROFIT

  • TakeProfit - Set take profit in pips. Zero disables.
  • TakeProfitRR - Set take profit based on risk reward of stop loss. Zero disables.
  • TakeProfitATRPeriod - Period for ATR take profit calulation, zero disables.
  • TakeProfitATRTimeFrame - Timeframe for ATR take profit calulation.
  • TakeProfitATRMultiplier - Multiplier for ATR take profit calulation.

STOP LOSS

  • StopLoss - Set a fixed stop loss in pips. Setting to zero disables and if applicable sets from custom indicator.
  • StopLossOffset - Adjust the stop loss in pips.
  • StopLossInvisibleMultiplier - The actual stop loss multiplier when using an invisible stop.
  • StopLossATRPeriod - Period for ATR stop loss calulation, zero disables.
  • StopLossATRTimeFrame - Timeframe for ATR stop loss calulation.
  • StopLossATRMultiplier - Multiplier for ATR stop loss calulation.

ENTRY METHODS

If you choose more than one entry all enabled entries need to have a signal to trade.

NEURAL NETWORK ENTRY - MARKET
  • NeuralNetworkEntry - Enable Neural Network entry.
  • NeuralNetworkEntryTimeFrame - The time frame selection for Neural Network entry.
  • NeuralNetworkEntryID - Numeric ID used to separate neural networks with the same config.
  • NeuralNetworkEntryOutputThreshold - The threshold used to define a positive choice. Zero disables the threshold.
  • NeuralNetworkEntryCloseOnReverse - If enabled positions are closed when the signal no longer exists.
  • NeuralNetworkEntrySaveDuringTesting - If enabled the neural network is saved during testing.
  • NeuralNetworkEntryLSTM - Enable LSTM cells.
  • NeuralNetworkEntryLSTMLayerNeuronCount - The number of neurons in each internal layer of the LSTM. This should be at least double the input count.
  • NeuralNetworkEntryLSTMCount - The number of LSTM cells. Each cell has double the last internal neuron count.
  • NeuralNetworkEntryCNNAccendingLayer - Enable the accending dense layers.
  • NeuralNetworkEntryCNNAccendingLayerCount - The number of accending dense layers.
  • NeuralNetworkEntryCNNMiddleLayerCount - The number of middle dense layers.
  • NeuralNetworkEntryCNNMiddleLayerNeuronCount - The number of neurons in each middle layer.
  • NeuralNetworkEntryCNNDecendingLayer - Enable the decending dense layers.
  • NeuralNetworkEntryCNNDecendingLayerCount - The number of decending dense layers.
  • NeuralNetworkEntryTraining - Enable on chart training.
  • NeuralNetworkEntryTrainingDoEndDate - Enable to train to a set end date.
  • NeuralNetworkEntryTrainingEndDate - The date to train to. Please note when training smaller time frames, available bar count is limited to 65200.
  • NeuralNetworkEntryTrainingValidation - The percentage of the testing period to use for validation. Set to zero when using periodic training.
  • NeuralNetworkEntryTrainingEpochs - The number of epochs to train.
  • NeuralNetworkEntryTrainingRate - The training rate during back propagation. 20 is good for NT_TARGET_LOSS & NT_PREDICTION. 100 to 1000 is good for NT_PREDICTION_VAL.
  • NeuralNetworkEntryTrainingType - The selection of training type. NT_TARGET_LOSS trains based on bars that hit target without hitting loss up to max minutes in future. NT_PREDICTION trains based on direction after number of bars with threshold. NT_PREDICTION_VAL trains actual close/high/low values and trades on all up or all down.
  • NeuralNetworkEntryTrainingTargetPips - The target pips for NT_TARGET_LOSS.
  • NeuralNetworkEntryTrainingLossPips - The loss pips for NT_TARGET_LOSS.
  • NeuralNetworkEntryTrainingMaxMins - The max number of minutes for NT_TARGET_LOSS.
  • NeuralNetworkEntryTrainingBars - The number of bars for NT_PREDICTION.
  • NeuralNetworkEntryTrainingPredictionThresholdPips - The threshold in pips for NT_PREDICTION.
  • NeuralNetworkEntryTrainingDays - The number of days to train including validation.
  • NeuralNetworkEntryTrainingPeriodic - Enable periodic training, can be used to train in tester.
  • NeuralNetworkEntryTrainingPeriodicPeriod - The selection of period to train. NT_DAILY & NT_WEEKLY.
  • NeuralNetworkEntryTrainingPeriodicWipe - If enabled the neural network resets with each periodic training.
  • NeuralNetworkEntryTrainingPeriodicGMTOffset - The broker server GMT offset.
  • NeuralNetworkEntryTrainingPeriodicHour - The hour to start periodic training.
  • NeuralNetworkEntryTrainingPeriodicMinute - The minute to start periodic training.
  • NeuralNetworkEntryTrainingPeriodicInitialEpochs - The initial number of epochs to train if the neural network isn't trained.
  • NeuralNetworkEntryHistoryBars - The number of history bars to use.
  • NeuralNetworkEntryInputBarInfo1 - .
  • NeuralNetworkEntryInputBarInfo1TimeFrame - .
  • NeuralNetworkEntryInputBarInfo1Close - .
  • NeuralNetworkEntryInputBarInfo1High - .
  • NeuralNetworkEntryInputBarInfo1Low - .
  • NeuralNetworkEntryInputBarInfo2 - .
  • NeuralNetworkEntryInputBarInfo2TimeFrame - .
  • NeuralNetworkEntryInputBarInfo2Close - .
  • NeuralNetworkEntryInputBarInfo2High - .
  • NeuralNetworkEntryInputBarInfo2Low - .
  • NeuralNetworkEntryInputBarInfo3 - .
  • NeuralNetworkEntryInputBarInfo3TimeFrame - .
  • NeuralNetworkEntryInputBarInfo3Close - .
  • NeuralNetworkEntryInputBarInfo3High - .
  • NeuralNetworkEntryInputBarInfo3Low - .
  • NeuralNetworkEntryInputRSI1 - .
  • NeuralNetworkEntryInputRSI1TimeFrame - .
  • NeuralNetworkEntryInputRSI1Price - .
  • NeuralNetworkEntryInputRSI1Period - .
  • NeuralNetworkEntryInputRSI1Shift - .
  • NeuralNetworkEntryInputRSI2 - .
  • NeuralNetworkEntryInputRSI2TimeFrame - .
  • NeuralNetworkEntryInputRSI2Price - .
  • NeuralNetworkEntryInputRSI2Period - .
  • NeuralNetworkEntryInputRSI2Shift - .
  • NeuralNetworkEntryInputRSI3 - .
  • NeuralNetworkEntryInputRSI3TimeFrame - .
  • NeuralNetworkEntryInputRSI3Price - .
  • NeuralNetworkEntryInputRSI3Period - .
  • NeuralNetworkEntryInputRSI3Shift - .
  • NeuralNetworkEntryInputMA1 - .
  • NeuralNetworkEntryInputMA1TimeFrame - .
  • NeuralNetworkEntryInputMA1Period - .
  • NeuralNetworkEntryInputMA1MAShift - .
  • NeuralNetworkEntryInputMA1Shift - .
  • NeuralNetworkEntryInputMA1MAMode - .
  • NeuralNetworkEntryInputMA1Price - .
  • NeuralNetworkEntryInputMA2 - .
  • NeuralNetworkEntryInputMA2TimeFrame - .
  • NeuralNetworkEntryInputMA2Period - .
  • NeuralNetworkEntryInputMA2MAShift - .
  • NeuralNetworkEntryInputMA2Shift - .
  • NeuralNetworkEntryInputMA2MAMode - .
  • NeuralNetworkEntryInputMA2Price - .
  • NeuralNetworkEntryInputMA3 - .
  • NeuralNetworkEntryInputMA3TimeFrame - .
  • NeuralNetworkEntryInputMA3Period - .
  • NeuralNetworkEntryInputMA3MAShift - .
  • NeuralNetworkEntryInputMA3Shift - .
  • NeuralNetworkEntryInputMA3MAMode - .
  • NeuralNetworkEntryInputMA3Price - .
  • NeuralNetworkEntryInputCCI1 - .
  • NeuralNetworkEntryInputCCI1TimeFrame - .
  • NeuralNetworkEntryInputCCI1Price - .
  • NeuralNetworkEntryInputCCI1Period - .
  • NeuralNetworkEntryInputCCI1Shift - .
  • NeuralNetworkEntryInputCCI2 - .
  • NeuralNetworkEntryInputCCI2TimeFrame - .
  • NeuralNetworkEntryInputCCI2Price - .
  • NeuralNetworkEntryInputCCI2Period - .
  • NeuralNetworkEntryInputCCI2Shift - .
  • NeuralNetworkEntryInputCCI3 - .
  • NeuralNetworkEntryInputCCI3TimeFrame - .
  • NeuralNetworkEntryInputCCI3Price - .
  • NeuralNetworkEntryInputCCI3Period - .
  • NeuralNetworkEntryInputCCI3Shift - .
  • NeuralNetworkEntryInputATR1 - .
  • NeuralNetworkEntryInputATR1TimeFrame - .
  • NeuralNetworkEntryInputATR1Period - .
  • NeuralNetworkEntryInputATR1Shift - .
  • NeuralNetworkEntryInputATR2 - .
  • NeuralNetworkEntryInputATR2TimeFrame - .
  • NeuralNetworkEntryInputATR2Period - .
  • NeuralNetworkEntryInputATR2Shift - .
  • NeuralNetworkEntryInputATR3 - .
  • NeuralNetworkEntryInputATR3TimeFrame - .
  • NeuralNetworkEntryInputATR3Period - .
  • NeuralNetworkEntryInputATR3Shift - .
  • NeuralNetworkEntryInputTEMA1 - .
  • NeuralNetworkEntryInputTEMA1TimeFrame - .
  • NeuralNetworkEntryInputTEMA1Period1 - .
  • NeuralNetworkEntryInputTEMA1Period2 - .
  • NeuralNetworkEntryInputTEMA1Period3 - .
  • NeuralNetworkEntryInputTEMA1Period4 - .
  • NeuralNetworkEntryInputTEMA1Period5 - .
  • NeuralNetworkEntryInputTEMA1Period6 - .
  • NeuralNetworkEntryInputTEMA1Shift - .
  • NeuralNetworkEntryInputTEMA2 - .
  • NeuralNetworkEntryInputTEMA2TimeFrame - .
  • NeuralNetworkEntryInputTEMA2Period1 - .
  • NeuralNetworkEntryInputTEMA2Period2 - .
  • NeuralNetworkEntryInputTEMA2Period3 - .
  • NeuralNetworkEntryInputTEMA2Period4 - .
  • NeuralNetworkEntryInputTEMA2Period5 - .
  • NeuralNetworkEntryInputTEMA2Period6 - .
  • NeuralNetworkEntryInputTEMA2Shift - .
  • NeuralNetworkEntryInputTEMA3 - .
  • NeuralNetworkEntryInputTEMA3TimeFrame - .
  • NeuralNetworkEntryInputTEMA3Period1 - .
  • NeuralNetworkEntryInputTEMA3Period2 - .
  • NeuralNetworkEntryInputTEMA3Period3 - .
  • NeuralNetworkEntryInputTEMA3Period4 - .
  • NeuralNetworkEntryInputTEMA3Period5 - .
  • NeuralNetworkEntryInputTEMA3Period6 - .
  • NeuralNetworkEntryInputTEMA3Shift - .
  • NeuralNetworkEntryInputMACD1 - .
  • NeuralNetworkEntryInputMACD1TimeFrame - .
  • NeuralNetworkEntryInputMACD1FastEMAPeriod - .
  • NeuralNetworkEntryInputMACD1SlowEMAPeriod - .
  • NeuralNetworkEntryInputMACD1SignalPeriod - .
  • NeuralNetworkEntryInputMACD1Price - .
  • NeuralNetworkEntryInputMACD1Shift - .
  • NeuralNetworkEntryInputMACD2 - .
  • NeuralNetworkEntryInputMACD2TimeFrame - .
  • NeuralNetworkEntryInputMACD2FastEMAPeriod - .
  • NeuralNetworkEntryInputMACD2SlowEMAPeriod - .
  • NeuralNetworkEntryInputMACD2SignalPeriod - .
  • NeuralNetworkEntryInputMACD2Price - .
  • NeuralNetworkEntryInputMACD2Shift - .
  • NeuralNetworkEntryInputMACD3 - .
  • NeuralNetworkEntryInputMACD3TimeFrame - .
  • NeuralNetworkEntryInputMACD3FastEMAPeriod - .
  • NeuralNetworkEntryInputMACD3SlowEMAPeriod - .
  • NeuralNetworkEntryInputMACD3SignalPeriod - .
  • NeuralNetworkEntryInputMACD3Price - .
  • NeuralNetworkEntryInputMACD3Shift - .

RSI ENTRY - MARKET

  • RSIEntry - Enable RSI entry.
  • RSIEntryTimeFrame - The time frame selection for RSI entry.
  • RSIEntryPrice - The price selection for the RSI entry . CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • RSIEntryPeriod - The period for the RSI entry.
  • RSIEntryShift - The shift for the RSI entry.
  • RSIEntryType - The selection of RSI entry type. RSI_THRESHOLD & RSI_HOOK.
  • RSIEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.
  • RSIEntryBuyThreshold - Buy threshold for RSI entry.
  • RSIEntrySellThreshold - Sell threshold for RSI entry.

RSI ENTRY 2 - MARKET

Same as RSI ENTRY above.

STOCHASTIC ENTRY - MARKET

  • StochEntry - Enable Stoch entry.
  • StochEntryTimeFrame - The time frame selection for Stoch entry.
  • StochEntryKPeriod - The K period for the Stoch entry.
  • StochEntryDPeriod - The D period for the Stoch entry.
  • StochEntrySlowing - The slowing period for the Stoch entry.
  • StochEntryMAMode - The MA type for the Stoch entry. EMA, LWMA, SMA & SMMA.
  • StochEntryPrice - The price selection for the Stoch entry. LOW_HIGH & CLOSE_CLOSE.
  • StochEntryShift - The shift for the Stoch entry.
  • StochEntryType - The selection of Stoch entry type. STOCH_THRESHOLD, STOCH_HOOK, STOCH_SIGNAL_THRESHOLD, STOCH_SIGNAL_HOOK & STOCH_CROSS.
  • StochEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.
  • StochEntryBuyThreshold - Buy threshold for Stoch entry.
  • StochEntrySellThreshold - Sell threshold for Stoch entry.

STOCHASTIC ENTRY 2 - MARKET

Same as STOCHASTIC ENTRY above.

MONEY FLOW INDEX ENTRY - MARKET

  • MFIEntry - Enable Money Flow entry.
  • MFIEntryTimeFrame - The time frame selection for Money Flow entry.
  • MFIEntryPeriod - The period for Money Flow entry.
  • MFIEntryShift - The shift for Money Flow entry.
  • MFIEntryType - The selection of Money Flow entry type. MFI_THRESHOLD, MFI_HOOK, MFI_CROSS & MFI_CROSS_IN.
  • MFIEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.
  • MFIEntryBuyThreshold - Buy threshold for Money Flow entry.
  • MFIEntrySellThreshold - Sell threshold for Money Flow entry.

MOVING AVERAGE ENTRY - MARKET

  • MAEntry - Enable MA entry.
  • MAEntryTimeFrame - The time frame selection for MA entry.
  • MAEntrySlowPeriod - The slow period for the MA entry.
  • MAEntrySlowMAShift - The slow MA shift for the MA entry.
  • MAEntrySlowShift - The slow shift for the MA entry.
  • MAEntrySlowMAMode - The slow MA mode for the MA entry. EMA, LWMA, SMA & SMMA.
  • MAEntrySlowPrice - The slow price selection for the MA entry. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • MAEntryFastPeriod - The fast period for the MA entry.
  • MAEntryFastMAShift - The fast MA shift for the MA entry.
  • MAEntryFastShift - The fast shift for the MA entry.
  • MAEntryFastMAMode - The fast MA mode for the MA entry. EMA, LWMA, SMA & SMMA.
  • MAEntryFastPrice - The fast price selection for the MA entry. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • MAEntryType - The selection of MA entry type. MA_CROSS, MA_SEPARATION & MA_PRICE_SEPARATION.
  • MAEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.
  • MAEntryThresholdPips - The threshold to use for MA_SEPARATION & MA_PRICE_SEPARATION entry types.

FRACTAL ENTRY - MARKET

  • FractalEntry - Enable Fractal entry.
  • FractalEntryTimeFrame - The time frame selection for Fractal entry.
  • FractalEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.
  • FractalEntryLookBackBars - The number of bars to look back for higher highs/lower lows.

TMA ENTRY - MARKET

  • TMAEntry - Enable TMA entry.
  • TMAEntryTimeFrame - The time frame selection for TMA entry.
  • TMAEntryPeriod - The period for the TMA entry.
  • TMAEntryATRPeriod - The ATR period for the TMA entry.
  • TMAEntryATRMultiplier - The ATR multiplier for the TMA entry. Increasing this increased the channel size based on ATR. Zero disables.
  • TMAEntryEnvelope - The channel size based on a fraction of the TMA value. Increasing this increased the channel size based on the TMA. Zero disables.
  • TMAEntryType - The selection of TMA entry type. TMA_CROSS, TMA_CROSS_IN & TMA_THRESHOLD.
  • TMAEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.

TEMA ENTRY - MARKET

  • TEMAEntry - Enable TEMA entry.
  • TEMAEntryTimeFrame - The time frame selection for TEMA entry.
  • TEMAEntryPeriod - The period for the TEMA entry.
  • TEMAEntryATRPeriod - The ATR period for the TEMA entry.
  • TEMAEntryATRMultiplier - The ATR multiplier for the TEMA entry. Increasing this increased the channel size based on ATR. Zero disables.
  • TEMAEntryEnvelope - The channel size based on a fraction of the TEMA value. Increasing this increased the channel size based on the TEMA. Zero disables.
  • TEMAEntryType - The selection of TEMA entry type. TMA_CROSS, TMA_CROSS_IN & TMA_THRESHOLD.
  • TEMAEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.

ENVELOPE ENTRY - MARKET

  • EnvelopeEntry - Enable Envelope entry.
  • EnvelopeEntryTimeFrame - The time frame selection for Envelope entry.
  • EnvelopeEntryMAPeriod - The MA period for the Envelope entry.
  • EnvelopeEntryMAMode - The MA mode for the Envelope entry. EMA, LWMA, SMA & SMMA.
  • EnvelopeEntryMAShift - The MA shift for the Envelope entry.
  • EnvelopeEntryPrice - The price selection for the Envelope entry. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • EnvelopeEntryDeviation - The deviation for the Envelope entry.
  • EnvelopeEntryShift - The shift for the Envelope entry.
  • EnvelopeEntryType - The selection of Envelope entry type. ENV_CROSS, ENV_CROSS_IN & ENV_THRESHOLD.

MACD ENTRY - MARKET

  • MACDEntry - Enable MACD entry.
  • MACDEntryTimeFrame - The time frame selection for MACD entry.
  • MACDEntryType - The selection of MACD entry type. MACD_CROSSOVER & MACD_CROSSOVER_THRESHOLD.
  • MACDEntryFastEMAPeriod - The fast period for the MACD entry.
  • MACDEntrySlowEMAPeriod - The slow period for the MACD entry.
  • MACDEntrySignalPeriod - The signal period for the MACD entry.
  • MACDEntryPrice - The price selection for the MACD entry. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • MACDEntryShift - The shift for the MACD entry.

BOLLINGER BANDS ENTRY - MARKET

  • BollingerEntry - Enable Bollinger entry.
  • BollingerEntryTimeFrame - The time frame selection for Bollinger entry.
  • BollingerEntryPeriod - The period for the Bollinger entry.
  • BollingerEntryDeviations - The deviations for the Bollinger entry.
  • BollingerEntryBandShift - The band shift for the Bollinger entry.
  • BollingerEntryShift - The shift for the Bollinger entry.
  • BollingerEntryPrice - The price selection for the Bollinger entry. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • BollingerEntryType - The selection of Bollinger entry type. BOLL_CROSS, BOLL_CROSS_IN & BOLL_THRESHOLD.
  • BollingerEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.
  • BollingerEntryBandMinSizePips - The minimum band size for the Bollinger entry.
  • BollingerEntryOffsetPips - The offset for the Bollinger entry.

AWESOME OSCILLATOR ENTRY - MARKET

  • AOEntry - Enable AO entry.
  • AOEntryTimeFrame - The time frame selection for AO entry.
  • AOEntryShift - The shift for the AO entry.
  • AOEntryType - The selection of AO entry type. AO_CROSS.
  • AOEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.

DOUBLE TOP/BOTTOM ENTRY - STOP

  • TopBottomEntry - Enable TopBottom entry.
  • TopBottomEntryTimeFrame - The time frame selection for TopBottom entry.
  • TopBottomEntryTrendLookBack - The number of bars to look back for higher highs/lower lows.
  • TopBottomEntryMinBars - The minimum number of bars for the TopBottom.
  • TopBottomEntryMaxBars - The maximum number of bars for the TopBottom.
  • TopBottomEntryMaxRatio - The max ratio between the two highs or the two lows.
  • TopBottomEntryMaxATRRatio - The max size of the TopBottom based on ATR.

BULLS/BEARS ENTRY - MARKET

  • BullsBearsEntry - Enable Bulls Bears entry.
  • BullsBearsEntryTimeFrame - The time frame selection for Bulls Bears entry.
  • BullsBearsEntryPrice - The price selection for the Bulls Bears entry. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • BullsBearsEntryPeriod - The period for the Bulls Bears entry.
  • BullsBearsEntryShift - The shift for the Bulls Bears entry.
  • BullsBearsEntryMAType - The MA mode for the Bulls Bears entry. EMA, LWMA, SMA & SMMA.
  • BullsBearsEntryMAMAShift - The MA shift for the MA of Bulls Bears entry.
  • BullsBearsEntryMAPrice - The MA price selection for the Bulls Bears entry. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • BullsBearsEntryMAShift - The shift for the MA of Bulls Bears entry.
  • BullsBearsEntryMAPeriod - The period for the MA of Bulls Bears entry.
  • BullsBearsEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.

HIGH/LOW ENTRY - MARKET & STOP

  • HighLowEntry - Enable High Low entry.
  • HighLowEntryTimeFrame - The time frame selection for High Low entry.
  • HighLowEntryTimeFrameEntry - The time frame selection for entry High Low entry.
  • HighLowEntryLookLeft - The number of bars to look left.
  • HighLowEntryLookRight - The number of bars to look right.
  • HighLowEntryLookBack - The number of bars to look back.
  • HighLowEntryMinDistance - The minimum distance between buy and sell levels.
  • HighLowEntryBuyOffset - The buy price offset.
  • HighLowEntrySellOffset - The sell price offset.
  • HighLowEntryMinDistanceBetween - The minimum distance between positions.
  • HighLowEntryMaxOrders - The maximum number of price levels in one direction.
  • HighLowEntryClearanceCheck - Enable to check clearance to the right for price levels.

STRADDLE ENTRY - MARKET

  • StraddleEntry - Enable Straddle entry.
  • StraddleEntryType - The selection of Straddle entry type. S_THRESHOLD
  • StraddleEntryPips - The number of pips to straddle price by.
  • StraddleEntryDeadZone - The deadzone to help limit the number of orders performed.
  • StraddleEntryPeriod - The period for Straddle entry.
  • StraddleEntryThresholdPips - The threshold pips for Straddle entry.

CCI ENTRY - MARKET

  • CCIEntry - Enable CCI entry.
  • CCIEntryTimeFrame - The time frame selection for CCI entry.
  • CCIEntryType - The selection of CCI entry type. CCI_CROSS_ZERO, CCI_CROSS_IN, CCI_CROSS_OUT & CCI_HOOK.
  • CCIEntryThreshold - The threshold for CCI entry.
  • CCIEntryPrice - The price selection for the CCI entry. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • CCIEntryPeriod - The period for the CCI entry.
  • CCIEntryShift - The shift for the CCI entry.
  • CCIEntryReversion - If enabled trades are made in the reversion direction, if disabled does the opposite.

CCI ENTRY 2 - MARKET

Same as CCI ENTRY above.

TIMED ENTRY - MARKET & STOP

  • TimedEntry - Enable Timed entry.
  • TimedEntryTimeFrame - The time frame selection for Timed entry.
  • TimedEntryGMTOffset - The winter GMT offset in hours for Timed entry.
  • TimedEntryHour - The bar hour to enter.
  • TimedEntryMinute - The bar minute to enter.
  • TimedEntryType - The selection of Timed entry type. TIMED_ALLOW & TIMED_BREAKOUT.
  • TimedEntryBreakoutBars - The number of bars to use for TIMED_BREAKOUT.

MANUAL ENTRY - MARKET

  • ManualEntry - Enable to display manual trade controls.

SNOW BALLING ENTRY - MARKET

  • SnowBalling - Enable Snow Balling entry. For use with manual entry and relies highly on the market going in your direction.
  • SnowBallingManualEntry - Enable manual snowball entry. When disabled positions are openned automatically.
  • SnowBallingMarginUse - The fraction of margin to use for opening snow balling positions.
  • SnowBallingMultiplier - The multiplier for snow balling positions.
  • SnowBallingStep - The minimum distance in pips between snow ball positions

SCRIPTED TIME ENTRY - MARKET

  • ScriptedTimeEntry - Enable scripted entry.
  • ScriptedTimeEntryScript - The script for entry exit of trades for symbols. Multiple symbols can be traded with scripted times, positions are netted.

GAP ENTRY - MARKET

  • GapEntry - Enable gap entry, trades gaps after weekends and holidays.
  • GapEntryTimeFrame - Timeframe for entry.
  • GapEntryReversion - Enable to trade towards the gap.
  • GapEntryTakeProfitGap - Enable to set the take profit across the gap, only for reversion.
  • GapEntryMinimumGapPips - The minimum gap size to trade.
  • GapEntryValidForMinutes - The number of minutes for the trade to be valid.

TIME ENTRY - MARKET

  • TimeEntry - Enable to enter and exit at set times.
  • TimeEntryGMTOffset - The GMT offset of the broker, set to zero to use bar times.
  • TimeEntryBuy - Enable buy positions at a set time.
  • TimeEntryBuyHour - The hour to open the buy position.
  • TimeEntryBuyMin - The minute to open the buy position.
  • TimeEntryBuyCloseHour - The hour to close the buy position.
  • TimeEntryBuyCloseMin - The minute to close the buy position.
  • TimeEntrySell - Enable sell positions at a set time.
  • TimeEntrySellHour - The hour to open the sell position.
  • TimeEntrySellMin - The minute to open the sell position.
  • TimeEntrySellCloseHour - The hour to close the sell position.
  • TimeEntrySellCloseMin - The minute to close the sell position.

EXIT SETTINGS

  • TickExit - Enable to check exits on tick. Not required for Averaging or Trailing.
  • ExitType - Select how to deal with multiple exits. EXIT_OR & EXIT_AND.
  • ExitAppliesToPending - Enable to remove pending orders when exit triggered.

TRAILING STOP LOSS

  • TrailingStop - Enable trailing stop loss.
  • TrailingStopStart - The start of the trailing in pips.
  • TrailingStopPips - The size of the trailing stop loss in pips.
  • TrailingStopStepPips - The number of pips before the stop loss is updated.
  • TrailingStopInvisible - Enable to use invisible stop loss.
  • TrailingStopUseSLATR - Enable to use ATR stop loss.

PSAR TRAILING STOP LOSS

  • TrailingStopPSar - Enable PSar trailing stop loss.
  • TrailingStopPSarTimeFrame - The time frame selection for PSar trailing stop loss.
  • TrailingStopPSarStep - The step for PSar trailing stop loss.
  • TrailingStopPSarMax - The max for PSar trailing stop loss.
  • TrailingStopPSarShift - The shift for PSar trailing stop loss.
  • TrailingStopPSarStepPips - The number of pips before the stop loss is updated.

BREAK EVEN

  • BreakEven - Enable break even.
  • BreakEvenStart - The number of pips to be in profit before performing break even.
  • BreakEvenPips - The number of pips in front of break even to place the stop loss.

AVERAGING

  • Averaging - Enable averaging.
  • AveragingTimeBased - Enable time based averaging rather than on every tick.
  • AveragingTakeProfitValueBased - Enable profit target based on original profit value.
  • AveragingTimeFrame - The time frame selection for averaging when time based
  • AveragingStopLossType - The type of stop loss adjustment when averaging. STANDARD, AVERAGE, WIDE & TIGHT.
  • AveragingStep - The amount of pips from the last trade before opening another averaging trade.
  • AveragingMaxCount - The maximum number of averaging trades to open at one time. When using STANDARD stop loss type new averaging trades can open when stop losses are hit reducing the number of averaging trades open.
  • AveragingMultiplier - The lot multiplier when opening new averaging trades.
  • AveragingCommissionOffsetPips - The addition of TP in pips from the average price to cover for commission costs.
  • AveragingAdaptiveSize - Enable adaptive size.
  • AveragingAdaptiveSizePips - The adaptive size in pips.
  • AveragingAdaptiveSizeMultiplier - The adaptive multiplier.
  • AveragingAdaptiveSizeExitAll - Enable adaptive size exit all.
  • AveragingAdaptiveSizeExitAllThreshold - The exit threshold multiplier.
  • AveragingAdaptiveSizeExitAllThresholdCount - The position count to exit all.
  • AveragingBreakEven - Enable break even.
  • AveragingBreakEvenPositionCount - The position count to break even.
  • AveragingBreakEvenOffset - The break even offset in pips.

TIMED EXIT

  • TimedExit - Enable Timed exit.
  • TimedExitTimeFrame - The time frame selection for Timed exit.
  • TimedExitGMTOffset - The winter GMT offset in hours for Timed exit.
  • TimedExitHour - The bar hour to exit.
  • TimedExitMinute - The bar minute to exit.

TIME LIMIT

  • TimeLimitExit - Enable Time Limit exit.
  • TimeLimitExitMinutes - The number of minutes before exit.
  • TimeLimitExitMinPips - The minimum number of pips, zero allows any.

PARTIAL EXIT

  • PartialExit - Enable partial exit.
  • PartialExitAmount - The fraction of the position to close.
  • PartialExitPosition - The fractiuon of take profit to partially close the position.

MA EXIT

  • MAExit - Enable MA exit.
  • MAExitTimeFrame - The time frame selection for MA exit.
  • MAExitSlowPeriod - The slow period for MA exit.
  • MAExitSlowMAShift - The slow MA shift for MA exit.
  • MAExitSlowShift - The slow shift for MA exit.
  • MAExitSlowMAMode - The slow MA mode for MA exit. EMA, LWMA, SMA & SMMA.
  • MAExitSlowPrice - The slow price selection for the MA exit . CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • MAExitFastPeriod - The fast period for MA exit.
  • MAExitFastMAShift - The fast MA shift for MA exit.
  • MAExitFastShift - The fast shift for MA exit.
  • MAExitFastMAMode - The fast MA mode for MA exit. EMA, LWMA, SMA & SMMA.
  • MAExitFastPrice - The slow price selection for the MA exit . CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • MAExitType - The selection of MA exit type. MAE_CROSS, MAE_SEPARATION & MAE_PRICE_SEPARATION.
  • MAExitThresholdPips - The threshold used for MAE_SEPARATION and MAE_PRICE_SEPARATION.
  • MAExitMinimumPips - The minimum number of pips, zero allows any.

AGGRESSIVE TRAILING EXIT

  • AggressiveTrailingExit - Enable Aggressive Trailing exit.
  • AggressiveTrailingExitType - Selection of type. AT_TICK, AT_TICK_POSITIVE, AT_TIMEFRAME & AT_TIMEFRAME_POSITIVE.
  • AggressiveTrailingExitTimeFrame - Selection of time frame.
  • AggressiveTrailingExitStartPips - The number of pips to start trailing.
  • AggressiveTrailingExitStepPips - The minimum number of pips to move stop loss.
  • AggressiveTrailingExitDelay - The delay for moving the stop loss.
  • AggressiveTrailingInvisibleStops - Enable to use invisible stop loss.

ADAPTIVE TRAILING EXIT

  • AdaptiveTrailingExit - Enable Adaptive Trailing exit.
  • AdaptiveTrailingExitType - Selection of type. AD_TICK, AD_TICK_POSITIVE, AD_TIMEFRAME, AD_TIMEFRAME_POSITIVE & AD_TIME.
  • AdaptiveTrailingExitTimeFrame - Selection of time frame.
  • AdaptiveTrailingExitStartPips - The number of pips before trailing starts.
  • AdaptiveTrailingExitFixedPips - The number of fixed pips of trailing.
  • AdaptiveTrailingExitCoef - The coefficient of the speed of adaptation.
  • AdaptiveTrailingExitOffsetPips - The offset in pips.
  • AdaptiveTrailingExitDelay - The delay in update in ticks.
  • AdaptiveTrailingExitTimeSecs - The delay in update in seconds.
  • AdaptiveTrailingInvisibleStops - Enable invisible stops.

BOLLINGER BANDS EXIT

  • BollingerExit - Enable Bollinger exit.
  • BollingerExitTimeFrame - Selection of time frame.
  • BollingerExitUseBBEntryPeriod - Use the bollinger entry period.
  • BollingerExitPeriod - The period of Bollinger exit.
  • BollingerExitDeviations - The deviations of Bollinger exit.
  • BollingerExitBandShift - The band shift of Bollinger exit.
  • BollingerExitShift - The shift of Bollinger exit.
  • BollingerExitPrice - The price selection for the Bollinger exit. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • BollingerExitOffsetPips - The offset for the Bollinger exit.
  • BollingerExitMinimumPips - The minimum number of pips, zero allows any.

CCI EXIT

  • CCIExit - Enable CCI exit.
  • CCIExitTimeFrame - The time frame selection for CCI exit.
  • CCIExitThreshold - The threshold for CCI exit.
  • CCIExitPrice - The price selection for the CCI exit. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • CCIExitPeriod - The period for the CCI exit.
  • CCIExitShift - The shift for the CCI exit.
  • CCIExitMinimumPips - The minimum number of pips, zero allows any.

RSI EXIT

  • RSIExit - Enable RSI exit.
  • RSIExitTimeFrame - The time frame selection for RSI exit.
  • RSIExitPrice - The price selection for the RSI exit. CLOSE, HIGH, LOW, MEDIAN, OPEN, TYPICAL & WEIGHTED.
  • RSIExitPeriod - The period for the RSI exit.
  • RSIExitShift - The shift for the RSI exit.
  • RSIExitBuyThreshold - The buy threshold for RSI exit.
  • RSIExitSellThreshold - The sell threshold for RSI exit.
  • RSIExitMinimumPips - The minimum number of pips, zero allows any.

STOCH EXIT

  • StochExit - Enable Stoch exit.
  • StochExitTimeFrame - The time frame selection for Stoch exit.
  • StochExitKPeriod - The K period for the Stoch exit.
  • StochExitDPeriod - The D period for the Stoch exit.
  • StochExitSlowing - The slowing period for the Stoch exit.
  • StochExitMAMode - The MA type for the Stoch exit. EMA, LWMA, SMA & SMMA.
  • StochExitPrice - The price selection for the Stoch exit. LOW_HIGH & CLOSE_CLOSE.
  • StochExitShift - The shift for the Stoch exit.
  • StochExitBuyThreshold - Buy threshold for Stoch exit.
  • StochExitSellThreshold - Sell threshold for Stoch exit.
  • StochExitMinimumPips - The minimum number of pips, zero allows any.
Share it with friends: