Dual EMA Crossover Trend Strategy
1
Follow
1802
Followers
Overview
This strategy uses the golden cross and death cross of dual EMA indicators to determine the current trend direction, and combines the RSI indicator to avoid missing buy and sell opportunities. It is a typical trend tracking strategy.
Strategy Principle
- Calculate the 10-period and 20-period EMA lines, named ma00 and ma01 respectively
- A buy signal is generated when ma00 crosses above ma01
- A sell signal is generated when ma00 crosses below ma01
- At the same time, when price crosses above ma00, if ma00 is above ma01, a buy signal will also be generated
- Similarly, when price crosses below ma00, if ma00 is below ma01, a sell signal will also be generated
- Through such dual validation, some buy and sell points can be avoided missing
- Set stop loss and take profit prices to control risks
Advantage Analysis
- Using dual EMA to determine can effectively filter false breakouts
- Dual condition validation avoids missing orders
- Stop loss and take profit settings are beneficial for risk management
Risk Analysis
- The dual EMA strategy belongs to the trend tracking strategy. Frequent buys and sells in sideways markets can easily hit stop loss
- It cannot accurately determine trend reversal points, which may lead to losses
- Improper stop loss point settings may amplify losses
Optimization Directions
- EMA cycles can be properly optimized to find the best parameter combination
- Other indicators can be added to improve strategy stability
- Dynamic stops can be set to adjust stop loss points in real time based on market fluctuations
Source
Pine
/*backtest
start: 2023-12-21 00:00:00
end: 2023-12-28 00:00:00
period: 2h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=4
strategy(title='[STRATEGY][RS]MicuRobert EMA cross V1', shorttitle='S', overlay=true, pyramiding=0, initial_capital=100000)
USE_TRADESESSION = input(title='Use Trading Session?', type=bool, defval=true)Strategy parameters
Related strategies
Comment
All comments (0)
No data
- 1

