Dual Moving Average Reversal Strategy
Overview
The dual moving average reversal strategy is a trading strategy that combines mean reversion and moving average principles. It first generates reversal trading signals using the 123 reversal methodology, and then filters the signals with 2/20 exponential moving averages, only taking trades when the signals from both match to improve robustness. This strategy aims to capture short-term reversal opportunities while using the long-term trend filter to identify high probability setups.
Strategy Logic
The strategy consists of two parts:
- 123 Reversal Strategy
The 123 reversal strategy originates from the book "How I Tripled My Money in the Futures Market". It is based on the idea that if the closing price drops from a high to low level over 2 days, and the 9-day slow stochastic is below 50, it signals a reversal point to go long. If the closing price rises from a low to high level over 2 days, and the 9-day fast stochastic is above 50, it signals a reversal point to go short.
- 2/20 Exponential Moving Average Strategy
This strategy uses the 2/20 EMA to determine the long-term trend. When the price is above the 2/20 EMA line, it signals an uptrend. When the price is below the 2/20 EMA line, it signals a downtrend. This filters out false breakouts.
The strategy only generates trade signals when the 123 reversal signal aligns with the 2/20 EMA signal.
Advantage Analysis
This strategy has the following advantages by combining short-term reversals and long-term trends:
- Captures high profit opportunities from short-term reversals
The 123 reversal targets overbought and oversold scenarios where significant price swings often occur, allowing for larger profit targets.
- 2/20 EMA filter avoids false breakout risks
Pure reversal strategies are susceptible to trending markets. The 2/20 EMA filter eliminates signals against the trend, preventing bad trades during fakeouts.
- Dual conditions improve risk reward profile
A single indicator often generates erroneous signals. Combining two complementary indicators significantly improves reliability and risk-reward outcomes.
- Clear logic makes optimization intuitive
The clear functionality of each component makes the logic intuitive to understand, optimize, and adapt to changing market environments.
Risk Analysis
Despite the advantages, some risks need to be considered:
- Reversals may not materialize
Past performance does not guarantee future results. The extent of the actual reversal bounce is uncertain and may result in losses.
- Trends can extend
The 2/20 EMA cannot fully filter strong trending markets. Short term corrections can still get overwhelmed by the larger trend.
- Parameter optimization is crucial
Performance is very sensitive to parameter settings which must be robustly optimized through extensive backtesting and tuned for changing markets.
- Long-term efficacy uncertain
Good short-term results do not guarantee lasting performance. Markets are highly stochastic and long-term outcomes require robust validation across diverse environments.
These risks can be managed through parameter tuning, stop losses, risk controls etc. More conditions like volume, volatility indicators can improve robustness. Machine learning techniques could enable dynamic optimization as well.
Enhancement Opportunities
Some ways to further optimize the strategy:
- Optimize reversal parameters
Test different parameter sets to find more stable and pronounced reversal patterns for higher quality signals.
- Optimize moving average systems
Experiment with different MA parameters or incorporate multiple MA checks for more accurate trend assessment.
- Add more filters
Volume, volatility and other filters can be incorporated to reduce false signals and improve stability.
- Implement dynamic optimization
Machine learning techniques on large historical datasets could enable dynamic and robust parameter tuning.
- Incorporate stop loss strategies
Intelligent stop loss rules help control maximum drawdown and risk exposure.
- Optimize money management
Better position sizing and capital allocation can enhance overall performance.
Conclusion
The dual moving average reversal is a simple yet practical short-term trading strategy. By combining mean reversion and trend-following concepts, it aims to profit from high probability price reversals while avoiding false breakouts. The clear logic makes it intuitive to understand, optimize and apply. However, no strategy is risk-free. Continued improvements in robustness and risk management are needed to extract consistent profits in diverse trading environments.
/*backtest
start: 2023-09-18 00:00:00
end: 2023-09-25 00:00:00
period: 15m
basePeriod: 5m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=4
////////////////////////////////////////////////////////////
// Copyright by HPotter v1.0 06/08/2021
// This is combo strategies for get a cumulative signal. - 1
