Dual Moving Average Crossover Strategy
Overview
This strategy uses simple moving average crossovers and average true range indicator to generate buy and sell signals. It belongs to trend following strategies. It mainly uses 50-day and 100-day moving average crossovers to determine the trend and sets stop loss based on ATR to control risks.
Strategy Logic
- Calculate 50-day simple moving average SMA1 and 100-day simple moving average SMA2
- When SMA1 crosses over SMA2, a buy signal is generated. When SMA1 crosses below SMA2, a sell signal is generated.
- Calculate 14-day ATR
- ATR multiplied by a set factor is used as stop loss point
- When a buy signal is triggered, the closing price minus the stop loss point is the stop loss sell point. When a sell signal is triggered, the closing price plus the stop loss point is the stop loss buy point.
It can be seen that this strategy mainly relies on the trend judging capability of moving averages and the risk control capability of ATR. The logic is simple and easy to understand and implement.
Advantages
- Simple logic easy to implement, suitable for beginners
- Moving averages can effectively track trends
- ATR stop loss can effectively control losses from individual black swan events
- Parameters can be easily adjusted for different market environments
Risks
- Many false signals may be triggered during range-bound markets, missing reversal points
- ATR may not react sensitively enough to fast changing markets, leading to larger than expected losses
- The parameter settings and ATR multiplier rely on experience. Improper settings may affect strategy performance
- The dual moving averages themselves have lagging effect, may miss turning points
Risk Management:
- Shorten moving average periods to make the indicator more sensitive
- Dynamically adjust ATR multiplier for more flexible stop loss
- Add other indicators to filter false signals
- Operate based on larger time frame structure judgments
Optimization Directions
- Try other types of moving averages, like EMAs that filter better
- Consider dynamic stop loss with Keltner Channels etc. to replace ATR
- Add supporting indicators like volume to filter signals
- Identify trend key points with concepts like Elliott Waves, support resistance etc.
Summary
This is a typical trend following strategy, using moving averages to determine trend direction and ATR stop loss to control risks. The logic is simple and easy to grasp. But it has certain lagging and false signal risks. Improvements can be made through parameter tuning, indicator optimization, incorporating more factors etc. to make the strategy more adaptive. Overall this strategy is suitable for beginner practice and optimization, but need to be careful when apply it in actual trading.
- 1

