Dual Moving Average Crossover Reversal Strategy

Author: ChaoZhang, Date: 2023-11-24 17:03:47
Tags:

img

Overview

The Dual Moving Average Crossover Reversal strategy is a trend following strategy that combines the 123 Reversal strategy and the DiNapoli Detrended Oscillator strategy to generate trading signals through dual moving average crossover for tracking market trends.

Strategy Logic

The strategy consists of two parts:

  1. 123 Reversal Strategy: This strategy uses the Stochastic indicator to generate signals. It sends a buy signal when the close price rises after two consecutive days of decline, while the stochastic fast line is below the slow line and below 50; it sends a sell signal when the close price declines after two consecutive days of rise, while the stochastic fast line is above the slow line and above 50.

  2. DiNapoli Detrended Oscillator Strategy: This strategy utilizes the price’s moving average line to generate trading signals when price exceeds or falls below the moving average line by a certain value. Specifically, it sends a buy signal when price exceeds the positive trigger value of the moving average line, and a sell signal when price falls below the negative trigger value of the moving average line.

After each of the above two strategies generates separate trading signals, this strategy integrates them and only sends out actual trading orders when the two signals are consistent, i.e. when the dual moving averages form signals in the same direction; otherwise no action is taken.

Advantage Analysis

By combining dual moving average trading signals, this strategy can effectively track market trends and has the following advantages:

  1. Make full use of the Stochastic indicator’s strengths in judging momentum and trends, avoiding losses caused by misleading signals from any single indicator.

  2. The DiNapoli indicator can effectively identify trends and avoid unnecessary opening of positions due to random fluctuations.

  3. Dual moving average crossover can effectively reduce false signals and improve signal quality to provide strong evidence for judging market direction.

  4. The adjustable parameters of the strategy allow users to choose parameter combinations based on personal preferences to adapt flexibly to different market environments.

Risk Analysis

The strategy also has the following risks:

  1. In a bull market, the strategy may miss buying opportunities due to excessively cautious indicator parameter settings. Parameters can be adjusted appropriately to make the strategy more aggressive.

  2. In a bear market, dual moving average crossover signals may lag, resulting in overbought and oversold conditions. The moving average period should be shortened appropriately to make the strategy more sensitive.

  3. In the event of a huge one-sided market movement, dual moving average crossover signals may be sluggish. Stops should be set to control losses.

Optimization

The strategy can be optimized in the following ways:

  1. Test and optimize the parameters of the Stochastic and DiNapoli indicators to find the optimal parameter combinations.

  2. Add other auxiliary judgment indicators like the Volume indicator to enrich the internal logic of the strategy and improve the accuracy of signals.

  3. Use machine learning methods to train and optimize strategy parameters and signal generation rules to make them fully adapted to market changes.

  4. Judge local structures with advanced technical indicators to distinguish between medium-term and long-term signals, enabling the strategy to operate in multiple time frames.

Conclusion

The Dual Moving Average Crossover Reversal strategy integrates two indicators to form dual moving average crossover trading signals, which can effectively track market trends and obtain relatively good returns while controlling risks. It is a reliable trend following strategy. The strategy can be continuously improved and upgraded through parameter optimization and adding auxiliary indicators. It has broad application prospects.


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

//@version=4
////////////////////////////////////////////////////////////
//  Copyright by HPotter v1.0 18/02/2020
// This is combo strategies for get a cumulative signal. 
//
// First strategy
// This System was created from the Book "How I Tripled My Money In The 
// Futures Market" by Ulf Jensen, Page 183. This is reverse type of strategies.
// The strategy buys at market, if close price is higher than the previous close 
// during 2 days and the meaning of 9-days Stochastic Slow Oscillator is lower than 50. 
// The strategy sells at market, if close price is lower than the previous close price 
// during 2 days and the meaning of 9-days Stochastic Fast Oscillator is higher than 50.
//
// Second strategy
// DiNapoli Detrended Oscillator Strategy
//
// WARNING:
// - For purpose educate only
// - This script to change bars colors.
////////////////////////////////////////////////////////////
Reversal123(Length, KSmoothing, DLength, Level) =>
    vFast = sma(stoch(close, high, low, Length), KSmoothing) 
    vSlow = sma(vFast, DLength)
    pos = 0.0
    pos := iff(close[2] < close[1] and close > close[1] and vFast < vSlow and vFast > Level, 1,
	         iff(close[2] > close[1] and close < close[1] and vFast > vSlow and vFast < Level, -1, nz(pos[1], 0))) 
	pos

DiNapoli(Length, Trigger) =>
    pos = 0.0
    xSMA = sma(close, Length)
    nRes = close - xSMA
    pos := iff(nRes > Trigger, 1,
    	     iff(nRes <= Trigger, -1, nz(pos[1], 0)))    
    pos

strategy(title="Combo Backtest 123 Reversal & DiNapoli Detrended Oscillator", shorttitle="Combo", overlay = true)
Length = input(14, minval=1)
KSmoothing = input(1, minval=1)
DLength = input(3, minval=1)
Level = input(50, minval=1)
//-------------------------
LengthDiN = input(14, minval=1)
TriggerDiN = input(0)
reverse = input(false, title="Trade reverse")
posReversal123 = Reversal123(Length, KSmoothing, DLength, Level)
posDiN = DiNapoli(LengthDiN, TriggerDiN)
pos = iff(posReversal123 == 1 and posDiN == 1 , 1,
	   iff(posReversal123 == -1 and posDiN == -1, -1, 0)) 
possig = iff(reverse and pos == 1, -1,
          iff(reverse and pos == -1 , 1, pos))	   
if (possig == 1) 
    strategy.entry("Long", strategy.long)
if (possig == -1)
    strategy.entry("Short", strategy.short)	 
if (possig == 0) 
    strategy.close_all()
barcolor(possig == -1 ? #b50404: possig == 1 ? #079605 : #0536b3 )

More