The Momentum Burst Tracking Strategy
Overview
The Momentum Burst Tracking strategy judges price breakthroughs by calculating percentage price changes and filters signals with trading volume to implement high probability capturing of trend breakthrough points. After triggering a buy signal, this strategy uses price tracking stop loss to lock in profits and avoid excessive drawdowns.
Strategy Principle
The main indicators this strategy uses to determine entry signals are:
-
Percentage price change (isFourPercentBull) - Calculate the percentage change of the closing price relative to the previous day's closing price to determine if the price has effectively broken through.
-
Ratio of closing price to highest price (HighCloseRatio) - Calculate the ratio of the closing price to the highest price to determine the strength of the price breakthrough.
-
Trading volume (volume) - Require the trading volume to be greater than the previous day to ensure valid breakthrough.
-
200-day simple moving average (SMA) - Require the closing price and opening price to be higher than the 200-day line to determine the trend direction.
When the above multiple conditions are met at the same time, a buy signal is issued. Afterwards, the strategy uses price tracking stop loss to actively stop loss and lock in profits. Specifically, the calculation formula for the trailing stop loss line is:
trailPrice = close * (100 - trailPercent) / 100
Where trailPercent is the configurable trailing stop loss percentage. This ensures that as long as prices rise, the stop loss line will also rise to lock in profits. When prices fall back to the stop loss line, close positions to stop losses.
Advantages of the Strategy
As a typical breakout strategy, it has the following advantages:
-
Multi-condition filtering ensures the validity of the breakout and avoids false breakouts.
-
Adopt price tracking stop loss, which can actively cut losses and lock in profits to maximize avoiding drawdowns.
-
The strategy logic is simple and clear, easy to understand and optimize.
Risks of the Strategy
The strategy also has some risks:
-
There is still a probability of failed breakouts that cannot completely avoid losses.
-
Overly aggressive tracking stops may cause frequent stops.
-
Improper parameter settings can lead to excessive trading frequencies or missed signals.
The solutions to the corresponding risks are:
-
Optimize parameters and reduce stop loss magnitude to ensure sufficient room.
-
Reasonably relax the breakout conditions to ensure clear trends are not missed.
-
Test different varieties to evaluate strategy stability.
Optimization Directions
Considering the high frequency of stops in this strategy, the following directions can be further optimized:
-
Try other tracking stop loss methods, such as moving average tracking, ATR and volatility tracking.
-
Increase machine learning algorithms to train judgments of better performing parameter combinations based on historical data.
-
Add auxiliary judgment conditions based on volume breakouts to ensure effectiveness.
-
Evaluate differences in parameter settings across different varieties to find the best fit.
Conclusion
The Momentum Burst Tracking Strategy is a very practical trend tracking strategy overall. It solves the problem of inability to effectively stop loss and profit taking in breakout strategies, while still controlling risks well when capturing trends. With room for further improvement by introducing optimizations and machine learning, it is worth in-depth research and application.
- 1

