Multi-Timeframe RSI-EMA Momentum Trading Strategy with Position Scaling
Overview
This is a momentum trading strategy based on RSI and EMA indicators, combining technical analysis across multiple timeframes. The strategy executes trades based on RSI overbought/oversold signals with EMA trend confirmation and employs dynamic position sizing. The core concept lies in combining short-term RSI (2-period) with medium-term RSI (14-period) signals, while using three different period EMAs (50/100/200) for trend direction confirmation.
Strategy Principles
The strategy employs a multi-layer validation mechanism for trading decisions. Long conditions require RSI14 below 31 and RSI2 crossing above 10, along with EMA50, EMA100, and EMA200 in bearish alignment. Short conditions require RSI14 above 69 and RSI2 crossing below 90, with EMAs in bullish alignment. The strategy includes an RSI-based take-profit mechanism, automatically closing positions when RSI reaches extreme values and price movement favors the position. A notable feature is the dynamic position sizing system based on account equity, calculating appropriate position sizes for each trade.
Strategy Advantages
- Comprehensive signal confirmation mechanism reduces false signal risks through multiple technical indicator validation
- Dynamic position sizing system automatically adjusts trading volume based on account size
- Multiple period RSI combined with EMA trend confirmation improves trading accuracy
- Clear take-profit mechanism ensures timely profit capture
- Excellent visualization features help traders understand market conditions
- Layered technical indicator combination better captures market momentum changes
Strategy Risks
- High leverage (20x) may lead to significant account volatility
- May generate frequent false breakout signals in ranging markets
- Position multiplication mechanism could amplify losses during consecutive losing trades
- Lack of stop-loss mechanism might result in substantial losses in extreme market conditions
- EMA trend judgment may lag during rapid market reversals
- RSI indicators might generate misleading signals under certain market conditions
Strategy Optimization Directions
- Introduce dynamic stop-loss mechanism based on ATR or volatility
- Optimize position management system with maximum position limits for risk control
- Add volatility filters to adjust trading parameters in high volatility environments
- Consider implementing time filters to avoid unfavorable trading periods
- Incorporate additional market state indicators, such as volume indicators
- Develop adaptive parameter system to dynamically adjust indicator parameters based on market conditions
Summary
This strategy combines momentum trading with trend following characteristics, enhancing trading reliability through multiple technical indicators. While certain risks exist, the suggested optimization directions can further improve strategy stability. The strategy's main feature is the combination of short-term and medium-term technical indicators with dynamic position management, forming a complete trading system. Through proper risk management and parameter optimization, this strategy shows promise for stable performance in actual trading.
/*backtest
start: 2024-11-21 00:00:00
end: 2024-11-28 00:00:00
period: 15m
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("Custom RSI EMA Strategy", overlay=true, default_qty_type=strategy.fixed, default_qty_value=1)
// Definování vstupních podmínek- 1

