The EMA Breakthrough Trap Strategy is a versatile trading tool suitable for multiple timeframes including 1-minute and 1-hour charts. It utilizes the 21-day EMA to identify significant market trends, complemented by ATR-based identification of potential bull and bear traps. Notably, it achieves an impressive profitability rate averaging around 85% across different frames and peaking at 88% in optimal conditions.
The strategy first calculates the 21-day Exponential Moving Average (EMA) to judge the overall trend and direction. Then it calculates the recent N days’ highest and lowest prices (N is an adjustable parameter). If the closing price is higher than the previous day’s highest price, and the subsequent low point has fallen below the highest price multiplied by the ATR indicator, while the closing price has fallen below the 21-day line, a bull trap signal is determined. The judgment logic for bear trap signals is similar.
Once a trap signal is identified, set the stop loss and take profit based on 80% of the distance between the recent highest and lowest prices, and take the reverse position. For example, after identifying a bull trap signal, take a short position and set the take profit and stop loss; after identifying a bear trap signal, take a long position and set the take profit and stop loss.
Risks can be reduced by optimizing EMA parameters, adjusting ATR coefficients, dynamic trailing stop loss etc.
The EMA Breakthrough Trap Strategy integrates the advantages of trend judgment and trap identification. With low drawdowns and high profitability, it is suitable for various trading styles and is a highly efficient recommended strategy. Further enhancements in stability and profitability space can be achieved through parameter and mechanism optimization.
/*backtest start: 2023-02-14 00:00:00 end: 2024-02-20 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Bull and Bear Trap Strategy with EMA 21 - 1min Chart", overlay=true) // Inputs length = input(5, "Length") atrMultiplier = input(1.0, "ATR Multiplier") emaLength = input(21, "EMA Length") price = close atr = ta.atr(length) // EMA Calculation ema21 = ta.ema(price, emaLength) // Define recent high and low recentHigh = ta.highest(high, length) recentLow = ta.lowest(low, length) // Bull and Bear Trap Detection bullTrap = price > recentHigh[1] and low <= recentHigh - atr * atrMultiplier and price < ema21 bearTrap = price < recentLow[1] and high >= recentLow + atr * atrMultiplier and price > ema21 // Plotting plotshape(series=bullTrap, title="Bull Trap", location=location.abovebar, color=color.red, style=shape.triangleup, size=size.small) plotshape(series=bearTrap, title="Bear Trap", location=location.belowbar, color=color.green, style=shape.triangledown, size=size.small) plot(ema21, title="EMA 21", color=color.blue) // Measured Move Implementation moveSize = recentHigh - recentLow targetDistance = moveSize * 0.8 // Target at 80% of the move size // Strategy Execution with Measured Move Targets if (bullTrap) strategy.entry("Enter Short (Sell)", strategy.short) strategy.exit("Exit Short (Buy to Cover)", "Enter Short (Sell)", limit=price - targetDistance) if (bearTrap) strategy.entry("Enter Long (Buy)", strategy.long) strategy.exit("Exit Long (Sell)", "Enter Long (Buy)", limit=price + targetDistance)