Moving Average Trend Following Golden Cross Long Strategy

Author: ChaoZhang, Date: 2023-10-23 15:22:48
Tags:

img

Overview

This strategy combines moving average indicators and the MACD indicator to design a relatively conservative long strategy. It mainly uses the 200-day simple moving average to judge the trend, and combines the 20-day exponential moving average and MACD golden cross to select buying opportunities. In an uptrend, it only buys when there is a MACD golden cross and stops loss when there is a MACD dead cross. In a downtrend, it will only buy when the price is above the 20-day EMA and there is a MACD golden cross, and stop loss when there is a MACD dead cross. This dual confirmation mechanism can effectively avoid frequent trading in a volatile market.

Strategy Logic

Firstly, the strategy uses the 200-day simple moving average (SMA) to judge the current price trend. If the closing price is above SMA, the trend is judged to be rising. If the closing price is below SMA, the trend is judged to be falling.

Secondly, in an uptrend, the strategy ignores the 20-day exponential moving average (EMA) condition and only sends a buy signal when the MACD fast line crosses above the slow line (MACD golden cross). It holds the long position as long as the MACD stays golden crossed. When the MACD fast line crosses below the slow line (MACD dead cross), it stops loss.

In a downtrend, the strategy becomes more conservative. It only sends a buy signal when the closing price crosses above the 20-day EMA and there is a MACD golden cross, requiring dual confirmation. It still stops loss on MACD dead cross.

Through this mechanism, the strategy adopts a more aggressive approach when the trend is clear (price is above or below the 200-day SMA). When the price is in a range, it takes a more cautious approach, effectively avoiding false signals.

Advantages

  1. The strategy combines trend judgment and dual confirmation to filter noise and avoid false signals, reducing unnecessary trades.

  2. It timely follows the trend when the trend is clear, and adopts a cautious attitude when the trend is unclear, reducing losses.

  3. Combining moving averages and MACD makes trading signals more reliable.

  4. The strategy is simple to implement, suitable for investors at all levels.

  5. The fixed stop loss mechanism effectively controls single trade loss.

Risks

  1. The strategy relies heavily on technical indicators and cannot adapt to black swan events.

  2. The dual confirmation may cause missed buying opportunities sometimes.

  3. MACD has lagging issues which may delay trading signals.

  4. Improper stop loss setting may lead to larger losses.

  5. The 200-day SMA may not accurately determine long term trends.

  6. Moving averages as filters may generate trivial trading signals.

Optimization

  1. Consider combining other indicators like KDJ, Bollinger Bands to make signals more accurate.

  2. Test other long term moving averages like 120-day EMA to better determine long term trends.

  3. Optimize moving average periods to find the best parameter combination.

  4. Incorporate take profit strategies, not just stop loss, to lock in more profits.

  5. Adjust moving average parameters for different markets to improve adaptability.

  6. Consider machine learning algorithms to optimize parameters by training models on historical data.

Summary

The strategy integrates the advantages of moving averages and MACD, achieving good risk control while remaining relatively simple. By judging the trend and requiring dual confirmation, it can filter out noise effectively. But the strategy also has some limitations and needs further optimization and adaptability to black swan events. Overall, it provides conservative investors with a robust reference solution.


/*backtest
start: 2023-10-15 00:00:00
end: 2023-10-22 00:00:00
period: 5m
basePeriod: 1m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=2
strategy(title="MACD/EMA Long Strategy",overlay=true,scale=scale.left)



// SMA Indicator - Are we in a Bull or Bear market according to 200 SMA?
SMA = sma(close, input(200))



// EMA Indicator - Are we in a rally or not?
EMA = ema(close, input(20))



//MACD Indicator - Is the MACD bullish or bearish?

fastLength = input(12)
slowlength = input(26)
MACDLength = input(9)

MACD = ema(close, fastLength) - ema(close, slowlength)
aMACD = ema(MACD, MACDLength)
delta = MACD - aMACD

// Set Buy/Sell conditions

[main,signal,histo]=macd(close,fastLength,slowlength,MACDLength)

buy_entry= if close>SMA
    delta>0
else
    delta>0 and close>EMA
    
strategy.entry("Buy",true , when=buy_entry)

alertcondition(delta, title='Long', message='MACD Bullish')


sell_entry = if close<SMA
    delta<0 
else
    delta<0 and close<EMA
strategy.close("Buy",when= sell_entry)


alertcondition(delta, title='Short', message='MACD Bearish')

//plot(delta, title="Delta", style=cross, color=delta>=0 ? green : red )

More