Intraday Dual Moving Average Trading Strategy
Overview
This is a simple intraday trading strategy based on dual moving averages. It uses two simple moving averages with different periods and takes long or short positions when the moving averages cross over. The position is reversed using double quantity when signal changes. All open positions are squared off when the intraday session ends.
Strategy Logic
The strategy uses a 10-day and a 40-day simple moving average. It goes long when the short period moving average crosses above the long period one and goes short when the reverse crossover happens. When signal changes, the position is closed out using double quantity and a reverse position is initiated. Trading only happens following the moving average signals during a defined intraday session. Any open positions left are squared off when the session ends.
The strategy mainly utilizes the faster price change capturing capability of the shorter period moving average. When the short SMA crosses above the long SMA, it indicates an uptrend in prices in the short term hence going long can capture this. The reverse indicates a short term downtrend. The double quantity reverse entry expands profit potential.
Advantages
- Simple and clear strategy logic, easy to understand and implement.
- Effectively catches short term price trends using dual MA crossover.
- Avoids overnight risk by restricting to an intraday session.
- Expands profit potential using double quantity reverse trading.
Risk Analysis
- Prone to noise trading errors as a short term strategy.
- Double quantity may amplify losses.
- Forced square off risks missing longer profitable trends.
Risk Mitigation:
- Optimize MA parameters to reduce false signals.
- Add filters using other indicators.
- Optimize quantity parameters.
- Relax intraday session duration.
Enhancement Opportunities
-
Optimize MA parameters by testing more combinations for best fit.
-
Add filters like MACD confirmation to reduce false signals.
-
Optimize reverse entry quantity multiplier through parameter tuning.
-
Test extending intraday session duration for better returns.
Conclusion
The strategy catches short term trends formed from MA crossover signals, expands profits using double quantity reverse trading and restricts overnight risks by trading only in an intraday session. Further optimizations on parameters and adding filters can improve strategy performance. On the whole, it is an effective strategy suitable for intraday trading.
/*backtest
start: 2024-02-19 00:00:00
end: 2024-02-26 00:00:00
period: 1m
basePeriod: 1m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © Pritesh-StocksDeveloper
//@version=4- 1

