Highest/Lowest Center Lookback Strategy

Author: ChaoZhang, Date: 2023-12-28 15:42:10
Tags:

img

Overview

The Highest/Lowest Center Lookback strategy is a trend following strategy. Its main idea is to calculate the middle price of the highest and lowest prices over a certain period in the past as the benchmark price, and then calculate the entry zone and exit zone based on this benchmark price combined with volatility. When the price enters the entry zone, go long; when the price enters the exit zone, close the position.

Strategy Logic

The strategy is mainly implemented through the following steps:

  1. Calculate the highest price h and lowest price l over the past lookback_length periods, and smooth them with EMA
  2. Calculate the middle price of h and l as the center price
  3. Calculate volatility vola based on ATR and ATR multiplier
  4. Calculate entry zone upper and exit zone lower based on center and vola
  5. When price price breaks above upper, go long; when price breaks below lower, close position

In this way, it can track the trend in time when price enters a trend state; at the same time, risk can be controlled through volatility.

Advantage Analysis

This strategy has the following advantages:

  1. Can effectively track trends and capture price changes in time
  2. Using the middle price of highest and lowest prices can reduce the probability of false breakouts
  3. Volatility can be automatically adjusted to control risk
  4. Position holding time is short, allowing more frequent trading opportunities
  5. Simple to implement and easy to understand and optimize

Risk Analysis

The strategy also has some risks:

  1. More unnecessary trades may occur in range-bound markets
  2. The settings of ATR size and multiplier will affect strategy performance, requiring careful testing and optimization
  3. Pullback after breaking the middle price may cause stop loss
  4. If the trend reversal speed is too fast, it will lead to greater losses

To control these risks, optimization can be done in the following aspects:

  1. Adjust ATR parameters to reduce volatility and filter whipsaws
  2. Add filters to avoid unnecessary trades
  3. Use moving stop loss to lock in profits
  4. Combine trend indicators to judge real trend start and end

Optimization Directions

The strategy also has room for further optimization:

  1. Test parameter effectiveness across different markets and timeframes
  2. Automatically optimize parameters with machine learning algorithms
  3. Incorporate more indicators to judge trend start and end
  4. Consider dynamically adjusting position sizing
  5. Incorporate sentiment indicators to avoid bias from extreme emotions

Through these optimizations, further improvements in strategy stability and profitability can be expected.

Conclusion

The Highest/Lowest Center Lookback strategy is a simple and practical trend following strategy. It can capture price changes in time, track trends, while controlling risk through volatility. The strategy is easy to implement, suitable for quantitative trading beginners to learn and practice. By optimizing parameters and rules, the strategy performance can be further improved. In general, this is a recommended quantitative strategy.


/*backtest
start: 2023-11-27 00:00:00
end: 2023-12-27 00:00:00
period: 1h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=4
strategy("Highest/Lowest Center Lookback Strategy", overlay=true)

lookback_length = input(200, type=input.integer, minval=1, title="Lookback Length")
smoother_length = input(5, type=input.integer, minval=1, title="Smoother Length")
atr_length = input(10, type=input.integer, minval=1, title="ATR Length")
atr_multiplier = input(1.5, type=input.float, minval=0.5, title="ATR Multiplier")

vola = atr(atr_length) * atr_multiplier
price = sma(close, 3)

l = ema(lowest(low, lookback_length), smoother_length)
h = ema(highest(high, lookback_length), smoother_length)
center = (h + l) * 0.5
upper = center + vola
lower = center - vola
trend = price > upper ? true : (price < lower ? false : na)

bull_cross = crossover(price, upper)
bear_cross = crossunder(price, lower)

strategy.entry("Buy", strategy.long, when=bull_cross)
strategy.close("Buy", when=bear_cross)

plot(h, title="High", color=color.red, transp=75, linewidth=2)
plot(l, title="Low", color=color.green, transp=75, linewidth=2)

pc = plot(center, title="Center", color=color.black, transp=25, linewidth=2)
pu = plot(upper, title="Upper", color=color.green, transp=75, linewidth=2)
pl = plot(lower, title="Lower", color=color.red, transp=75, linewidth=2)

fill(pu, pc, color=color.green, transp=85)
fill(pl, pc, color=color.red, transp=85)

bgcolor(trend == true ? color.green : (trend == false ? color.red : color.gray), transp=85)

More