Quantitative Trading Strategy Based on Trend Analysis Index

Author: ChaoZhang, Date: 2023-12-12 10:40:52
Tags:

img

Overview

The core idea of this strategy is to use the slope of moving average to judge market trend and construct a Trend Analysis Index (TAI) as trading signal. When price is trending, the slope of moving average increases. When price is ranging in a trendless zone, the slope of moving average decreases. The increase of Trend Analysis Index indicates the start of a trend while the decrease means the end of the trend.

Strategy Logic

The strategy first calculates the Simple Moving Average (X-day MA) of price. Then it computes the highest and lowest value of this moving average in the last Y days to get the fluctuation range. Finally, by comparing this Y-day range with price, it converts to a standardized indicator between 0-1, namely the Trend Analysis Index. Taking long position when index is above a threshold and short position when below another threshold.

Advantage Analysis

The advantages of this strategy are:

  1. Effectively catching mid- to long-term trends by judging slope of MA
  2. Constructing standardized index for clearer trading signal
  3. Customizable MA and trend judgment parameters for different market environments
  4. Choosable reverse trading for tracking or hedging other strategies

Risk Analysis

There are also some risks:

  1. Prone to wrong signals during range-bound market
  2. Missing trend reversal points if MA parameters set inappropriately
  3. Missing weak trends if standardization parameters set inappropriately
  4. Increased loss on reverse trading

Solutions:

  1. Filter signals with other indicators
  2. Optimize parameters to find best combination
  3. Adjust threshold of standardization parameters
  4. Carefully use reverse trading

Optimization Directions

The strategy can be optimized in following aspects:

  1. Combine other indicators like BOLL to make signals more reliable
  2. Add stop loss to control single loss
  3. Optimize MA days to fit characteristics in different timeframes
  4. Train optimal threshold parameters
  5. Add ML model for trend probability to assist trading

Conclusion

In summary, this is a mid- to long-term trend following strategy based on the slope of moving average. It can effectively capture trends but also has some false signal risks. By combining with other indicators, adding stop loss, parameter optimization etc, the strategy can be more robust. Essentially it is still a simple trend tracking strategy.


//@version=2
////////////////////////////////////////////////////////////
//  Copyright by HPotter v1.0 21/12/2017
// In essence, it is simply the standard deviation of the last x bars of a 
// y-bar moving average. Thus, the TAI is a simple trend indicator when prices 
// trend with authority, the slope of the moving average increases, and when 
// prices meander in a trendless range, the slope of the moving average decreases.
//
// You can change long to short in the Input Settings
// WARNING:
// - For purpose educate only
// - This script to change bars colors.
////////////////////////////////////////////////////////////
strategy(title="Trend Analysis Index", shorttitle="TAI")
AvgLen = input(28, minval=1)
TAILen = input(5, minval=1)
TopBand = input(0.11, step=0.01)
LowBand = input(0.02, step=0.01)
reverse = input(false, title="Trade reverse")
hline(TopBand, color=red, linestyle=line)
hline(LowBand, color=green, linestyle=line)
xPrice = close
xSMA = sma(xPrice, AvgLen)
xHH = highest(xSMA, TAILen)
xLL = lowest(xSMA, TAILen)
nRes = (xHH - xLL) * 100 / xPrice
pos = iff(nRes > TopBand, 1,
       iff(nRes < LowBand, -1, nz(pos[1], 0))) 
possig = iff(reverse and pos == 1, -1,
          iff(reverse and pos == -1, 1, pos))	   
if (possig == 1) 
    strategy.entry("Long", strategy.long)
if (possig == -1)
    strategy.entry("Short", strategy.short)	   	    
barcolor(possig == -1 ? red: possig == 1 ? green : blue ) 
plot(nRes, color=blue, title="TAI")


More