Glory Hole Breakout Strategy

Author: ChaoZhang, Date: 2023-10-25 11:35:36
Tags:

img

Overview

The Glory Hole breakout strategy is a trend following strategy that combines moving average and ADX indicators to determine price trend and strength, and enters the market when price breaks through the moving average. This simple and practical strategy can effectively track trends and has high profit potential.

Strategy Logic

The strategy is mainly based on three indicators:

  1. SMA: Simple moving average to determine price trend direction.

  2. ADX: Average directional movement index to measure trend strength. Higher ADX indicates stronger trend.

  3. Glory Hole Condition: Bullish when close > open and close near low. Bearish when close < open and close near high.

The trading logic is:

  1. Calculate N-period SMA to determine overall trend.

  2. Calculate M-period ADX to determine trend strength. Trade only if ADX is above threshold.

  3. Go long when bullish glory hole forms, close > SMA and ADX > threshold.

  4. Go short when bearish glory hole forms, close < SMA and ADX > threshold.

  5. Exit with stop loss or take profit.

Advantages

  1. Combines trend direction and strength for effective trend following.

  2. Glory hole filters out false breakouts and improves entry quality.

  3. SMA captures mid to long term trends better than EMA.

  4. ADX avoids trading in no-trend zones, ensuring high probability setups.

  5. Simple and clear rules easy to implement.

Risks

  1. SMA lag may cause premature or delayed entries leading to stopped out trades. Optimize SMA Period.

  2. ADX may wrongly judge trend reversal as no-trend zone. Lower ADX threshold to manage risk.

  3. Despite glory hole, tight risk management needed for real trades. Adjust stop loss properly.

  4. Lack of long/short balance logic. Manual intervention or optimization needed.

Enhancement Opportunities

  1. Optimize SMA and ADX parameters to find best combination.

  2. Add other trend indicators like Bollinger or KDJ to improve entry quality.

  3. Add exit logic like trend reversal or drawdown percentage to refine exits.

  4. Add long/short ratio judgement to avoid excessive one-sided trades.

  5. Optimize stop loss from fixed to trailing or staggered.

  6. Optimize risk management for better single trade risk control.

Summary

The Glory Hole strategy integrates SMA and ADX to determine trend direction and strength. It generates signals on glory hole condition to effectively track trends. The strategy has the advantage of capturing trends and filtering noise, but also lagging trend determination and stop loss risks. Further improvements in parameter optimization, enter/exit logic, and risk management will enhance its efficiency and stability.


/*backtest
start: 2022-10-18 00:00:00
end: 2023-10-24 00:00:00
period: 1d
basePeriod: 1h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=2
strategy("Glory Hole with SMA + ADX", overlay=true)
len = input(20, minval=1, title="SMA")
src = input(close, title="Source")
ADXlevel = input(30, minval=1, title="ADX Tradelevel")
out = sma(src, len)

//adx
adxlen = input(14, title="ADX Smoothing")
dilen = input(14, title="DI Length")
dirmov(len) =>
	up = change(high)
	down = -change(low)
	truerange = rma(tr, len)
	plus = fixnan(100 * rma(up > down and up > 0 ? up : 0, len) / truerange)
	minus = fixnan(100 * rma(down > up and down > 0 ? down : 0, len) / truerange)
	[plus, minus]

adx(dilen, adxlen) => 
	[plus, minus] = dirmov(dilen)
	sum = plus + minus
	adx = 100 * rma(abs(plus - minus) / (sum == 0 ? 1 : sum), adxlen)

sig = adx(dilen, adxlen)

plot(out, title="SMA", color=blue)

bullish = ((out<close) and (out<open) and (out>low) and (sig>ADXlevel))
bearish = ((out>close) and (out>open) and (out<high) and (sig>ADXlevel))


if (bullish)
    strategy.entry("Buy", strategy.long)

if (bearish)
    strategy.entry("Sell", strategy.short)

More