Fast RSI Breakout Trading Strategy
This strategy trades RSI extremes using the fast RSI indicator and filters entries based on candle body size to avoid whipsaws. It aims for quick identification of overbought/oversold levels to capture reversals swiftly.
Strategy Logic:
-
Calculate fast RSI and set overbought/oversold thresholds.
-
Calculate EMA of candle body size for body filtering.
-
Go long when RSI crosses above overbought line and body over half of EMA. Vice versa for short.
-
Exit when RSI crosses back below original threshold and body over EMA.
-
Min/max can provide additional signal verification.
Advantages:
-
Fast RSI speeds up signal generation avoiding lag.
-
Body size filters reduce insignificant candle noise.
-
Min/max improves signal quality.
Risks:
-
Body filtering may skip some valid signals.
-
Whipsaws still possible for RSI in ranging markets.
-
Strict risk management required for reversal trades.
In summary, this strategy combines fast RSI and body size filtering for quicker but more robust overbought/oversold detection. But over-filtering issues remain so prudent risk controls are still needed.
/*backtest
start: 2023-01-01 00:00:00
end: 2023-09-11 00:00:00
period: 2d
basePeriod: 1d
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=3
strategy(title = "Noro's Fast RSI Strategy v1.3", shorttitle = "Fast RSI str 1.3", overlay = true, default_qty_type = strategy.percent_of_equity, default_qty_value = 100, pyramiding = 5)
//Settings- 1
