Zhukov's Moving Average Crossover Trend Following Strategy
Overview
This strategy uses moving average crossovers and the ATR indicator to implement automated trend following trading. It goes long when the fast EMA crosses above the slow EMA, and goes short when the fast EMA crosses below the slow EMA. At the same time, it uses the ATR indicator to judge the trend direction and only sends trading signals when the ATR indicates that a trend is present.
Strategy Logic
The strategy is mainly based on two technical indicators:
-
EMA Lines: It uses two EMA lines with different parameters, fast and slow. When the fast EMA crosses above the slow EMA, it is considered a long signal. When the fast EMA crosses below the slow EMA, it is considered a short signal.
-
ATR Indicator: The ATR indicator measures the magnitude and force of price fluctuations to judge the trendiness of the current move. Small ATR values indicate consolidation while large upward ATR values suggest an uptrend, and large downward ATR values suggest a downtrend.
By combining EMA crossovers to identify trading opportunities and the ATR filter to avoid low trendiness regimes, the strategy aims to avoid being whipsawed during market choppiness.
Advantage Analysis
The advantages of this strategy include:
-
Only trading when the ATR identifies a trend, which helps avoid being whipsawed during non-directional regimes.
-
Using simple fast vs slow EMA crossover logic to identify trading signals.
-
Customizable EMA sensitivity and smoothness through parameter adjustments.
-
Complete automated trading system built with just two simple indicators, easily implemented in Pine editor.
-
Minimal need for ongoing parameter tweaking, “set and forget” approach.
Risk Analysis
Some risks to note include:
-
EMA crossovers may generate false signals, leading to unnecessary losses. Smoother EMA parameters may help.
-
ATR trend judgment can also be prone to errors, missing trading opportunities. ATR threshold values could be loosened.
-
No consideration of higher timeframe fundamentals. Major news events can trigger reversals that fast EMA crossovers may miss, requiring manual intervention.
These risks can be reduced through optimizations.
Optimization Directions
Main optimization directions include:
-
Adding other indicators to create a combined system and improve signal accuracy. Example - integrating RSI to avoid overbought/oversold risks.
-
Selecting EMA and ATR parameters more suited to the particular market based on symbol and time frame traded.
-
Implementing dynamic parameter optimization through machine learning to adjust indicators based on current market conditions instead of using fixed static values.
Conclusion
Overall this is a very practical trend following strategy. With just a simple combination of two indicators, it builds a relatively complete trading system. Through parameter adjustments it can be adapted to traders with different preferences and styles. At the same time, further expansion and optimizations can make strategy performance even better. The simple yet effective trading logic coupled with strong optimization potential makes this a worthwhile quantitative strategy to research and apply over the long run.
- 1

