I have a indicator that displays the length of candle wicks.I'd like an EA to be created that opens buys/sells based on when there are two consecutive candles with wicks of equal or close to equal lengths *The CandleWickDisplay indicator's default settings is the show candles with wicks that are at least 5 pips. This EA should allow me to be able to set the DisplayWickLimit to whatever I'd like as a basis for the wicks. I'm will describe the two modes of the EA as agressive and non agressive Agressive mode is based on candles with wicks of equal lengths and the trade is triggered at the moment the wicks are equal This is the "Agressive" mode for the EA. Here's the criteria for trades in this mode. For calls: Wicks will be at the bottom of the candles There must first be a candle with a wick of at least 5. On the next candle a trade will be triggered whenever the wick of the second candle is equal to the wick of the preceding candle at that very point. This means that trades will be triggered without the second candle closing first. For Puts: Wicks will be at the top of the candles The same applies. There must be a candle with a top wick of at least 5. On the very next candle, a trade will be triggered when the wick of the second candle is equal to the wick of the preceding candle, at that very point so, again trade will most likely happen before the second candle closes. Now, Let's have the rules for the Non-Agressive mode: The idea is the same, however the trades will only be triggered after the second candle closes. For calls, there will be two consecutive candles with bottom wicks. The trade will be triggered at the close of the second candle only if there are wicks detected by the indicator on both candles For puts, the same. There will be two consecutive candles with top wicks. Trade will be triggered at the close of the second candle that has a wick detected by the indicator See pictures for more details On EA2 there are two candles circled, this is an example of the agressive mode and in theory a call trade would have been triggered at the instant the second candle has a wick of 11, even if it's before the candle closed ON the picture EA3 this is an example of running the non agressive mode, where a call trade would have been triggered after the second candle closed.