Fast RSI Breakthrough Strategy
Overview
This strategy implements fast breakthrough operations based on RSI indicator and EMA of candlestick bodies. It identifies reversal signals using the fast formation of RSI and large candlestick bodies.
Strategy Logic
-
Calculate RSI indicator with period 7 and use RMA for acceleration.
-
Calculate EMA of candlestick body size with period 30 as benchmark for body size.
-
If RSI crosses above the limit line (default 30) and current candle body is larger than 1/4 of average body size, go long.
-
If RSI crosses below the limit line (default 70) and current candle body is larger than 1/4 of average body size, go short.
-
If already in position, close when RSI crosses back the limit line.
-
Parameters like RSI length, limit, reference price can be configured.
-
Parameters like body EMA period, open position chroot multiplier can be configured.
-
The number of RSI crossings can be configured.
Advantage Analysis
-
Utilize the reversal attribute of RSI to capture reversals timely.
-
RMA accelerates RSI formation for more sensitive reversals.
-
Filter small range consolidations with large candlestick bodies.
-
Sufficient backtest data ensures reliability.
-
Customizable parameters adapt to different market environments.
-
Simple and clear logic.
Risk Analysis
-
RSI has backtest bias, actual performance to be validated.
-
Large bodies cannot fully filter choppy markets.
-
Default parameters may not suit all products, optimization needed.
-
Win rate may not be high, need to endure consecutive losses mentally.
-
Risk of failed breakthrough, need timely stop loss.
Optimization Directions
-
Optimize RSI parameters for different periods and products.
-
Optimize body EMA period to smooth body size.
-
Optimize body multiplier for open positions to control entry frequency.
-
Add moving stop loss to ensure win rate.
-
Add trend filter to avoid counter trend trading.
-
Optimize money management for risk control.
Conclusion
In summary, this is a very simple and direct reversal strategy. It utilizes both the reversal attribute of RSI and the momentum of large candlestick bodies to get in fast during market reversals. Although backtest results look good, actual performance is yet to be validated. Parameter optimization and risk control are needed when applying it. Overall it is a strategy with great value and is worth applying and constantly improving in live trading.
/*backtest
start: 2023-09-23 00:00:00
end: 2023-10-23 00:00:00
period: 3h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=3
strategy(title = "Noro's Fast RSI Strategy v1.2", shorttitle = "Fast RSI str 1.2", overlay = true, default_qty_type = strategy.percent_of_equity, default_qty_value = 100, pyramiding = 5)
//Settings- 1

