Moving Average Displaced Envelope Strategy
This strategy generates trading signals based on the Moving Average Displaced Envelope indicator. The envelope bands are calculated by percentage factors of the moving average. If the previous high breaks above the upper band, a sell signal is generated. If the previous low breaks below the lower band, a buy signal is generated.
Strategy Logic
This strategy uses the displaced exponential moving average (EMA) as the core indicator, and forms the upper and lower bands after a certain period by percentage factors. This constructs the complete moving average displaced envelope system. Specifically, the envelope system consists of:
- EMA(Price, Period) - The core moving average line
- top = sEMA\[disp\] * ((100 + perAb)/100) - Upper band
- bott = sEMA\[disp\] * ((100 - perBl)/100) - Lower band
Here Percent above and Percent below control the percentage range of the bands relative to the core moving average line. The Displacement parameter controls the period displacement between the bands and the core moving average line.
In this way, we can form appropriate trading ranges by adjusting the above parameters. Trading signals are generated when prices break through the bands. Specifically:
- If close is lower than the lower band bott, a buy signal is generated
- If close is higher than the upper band top, a sell signal is generated
Note that this strategy also provides a reverse parameter. If set to true, the signal direction is opposite to the above.
Advantage Analysis
The main advantages of this strategy are:
- Using exponential moving average as the base indicator can reduce curve lagging and improve sensitivity to price changes
- More adjustable parameters allow better optimization of trading performance through parameter tuning
- The reverse mode adapts to different market types
- Simple and clear rules, easy to understand and implement
Risks and Precautions
There are also some risks with this strategy:
- False signals can occur frequently in range-bound markets
- Improper parameter settings may cause over-trading or signal missing
- Market noise cannot be filtered effectively, generating some worthless signals
To prevent these risks, some optimizations can be made:
- Filter signals with other indicators like volume, volatility etc.
- Add parameter optimization process to find optimum parameter sets
- Adjust stop loss properly to limit losses
Optimization Directions
There is still large room for optimizing this strategy:
- Add machine learning models to realize automatic parameter optimization and adjustment
- Incorporate features like stop loss, trailing stop to control risks
- Filter signals with sentiment indicators to improve quality
- Increase model combinations with other technical indicators to identify trends and improve overall accuracy
- Inherit this strategy template to develop other types of moving average systems and expand applicability
With these optimizations, the stability, adaptability and performance of the strategy can be further improved.
Summary
The moving average displaced envelope strategy utilizes simple exponential moving average systems and parameterized bands to form clear trading rules that are easy to interpret and implement. It is a typical trend following system. Through parameter tuning and optimizations, good results can be achieved. But the impacts of market environments should also be fully considered and potential risks should be prevented. This strategy serves as a basic template and has much room for expansions and optimizations.
/*backtest
start: 2024-01-25 00:00:00
end: 2024-02-01 00:00:00
period: 1m
basePeriod: 1m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=4
////////////////////////////////////////////////////////////
// Copyright by HPotter v1.0 14/08/2020
// Moving Average Displaced Envelope. These envelopes are calculated - 1

