Multi-Indicator Synergistic SAR Reversal Strategy with Filtered Entry Model

SAR RSI MACD STOCHASTIC RSI LSMA
Created on: 2025-03-28 16:36:09 Modified on: 2025-03-28 16:36:09
Copy: 0 Number of hits: 54
2
Follow
30
Followers

 Multi-Indicator Synergistic SAR Reversal Strategy with Filtered Entry Model  Multi-Indicator Synergistic SAR Reversal Strategy with Filtered Entry Model

Overview

The Multi-Indicator Synergistic SAR Reversal Strategy with Filtered Entry Model is a quantitative trading strategy that combines multiple technical indicators, primarily utilizing Parabolic SAR (Stop and Reverse) as the core signal generation mechanism. It incorporates RSI (Relative Strength Index), Stochastic RSI, MACD (Moving Average Convergence Divergence), and LSMA (Least Squares Moving Average) as filtering conditions to enhance the quality and reliability of trading signals. This strategy can identify multi-period market reversal points while reducing the risk of false breakouts through multiple condition filtering. Designed to execute long or short positions at trend reversal points when all indicators confirm in unison, this multi-layered verification mechanism effectively improves the strategy’s win rate and stability.

Strategy Principles

The core principle of this strategy is to combine multiple technical indicators to identify market reversal points and filter low-quality signals through cross-validation between indicators. The specific implementation logic is as follows:

  1. SAR Reversal Signals: Uses Parabolic SAR as the basic signal generation mechanism. When price crosses above SAR, it generates a long signal (sarReversalUp), and when price crosses below SAR, it generates a short signal (sarReversalDown).

  2. Multi-Indicator Filtering Conditions:

    • RSI Condition: For long positions, requires RSI value greater than oversold level (default 30); for short positions, requires RSI value less than overbought level (default 70)
    • MACD Condition: For long positions, requires MACD line above signal line; for short positions, requires MACD line below signal line
    • Stochastic RSI Condition: For long positions, requires Stochastic RSI greater than oversold level (default 20); for short positions, requires Stochastic RSI less than overbought level (default 80)
    • LSMA Condition: For long positions, requires closing price above offset LSMA; for short positions, requires closing price below offset LSMA
  3. Trade Execution Logic:

    • When all long conditions are met (validLong = true), close any short positions and open new long positions
    • When all short conditions are met (validShort = true), close any long positions and open new short positions
  4. Parameter Optimization: The strategy provides multiple adjustable parameters, including SAR starting value, increment, and maximum, as well as RSI period, Stochastic RSI length, and LSMA length and offset, allowing the strategy to be flexibly adjusted according to different market environments and instrument characteristics.

Strategy Advantages

  1. Multiple Verification Mechanism: By combining multiple technical indicators, the strategy can validate market turning points from different dimensions, significantly reducing the probability of false signals. SAR captures momentum changes, RSI measures overbought/oversold conditions, MACD confirms trend direction, Stochastic RSI provides additional momentum confirmation, and LSMA provides price-moving average relationship assessment.

  2. Flexible Parameter Adjustment: The strategy offers rich parameter setting options, allowing traders to optimize based on different market environments and trading instrument characteristics to achieve better performance.

  3. Automatic Stop-Loss Mechanism: The SAR indicator itself has dynamic stop-loss characteristics, continuously adjusting its position as trends develop, providing built-in risk management functionality for the strategy.

  4. Bidirectional Trading Capability: The strategy can capture both long and short opportunities, adapting to different market environments to maximize utilization of market volatility.

  5. Visualization Support: The strategy includes visualization of multiple indicators, allowing traders to intuitively understand the reasons behind trading signals, aiding strategy improvement and parameter optimization.

Strategy Risks

  1. Parameter Sensitivity: This strategy uses multiple adjustable parameters, and different parameter combinations significantly impact strategy performance. Improper SAR parameter settings may lead to too many or too few signals, and RSI and Stochastic RSI threshold settings directly affect signal quality. The solution is to determine optimal parameter combinations through historical backtesting and periodically re-optimize parameters to adapt to market changes.

  2. Rapid Volatility Market Risk: In highly volatile markets, SAR may frequently flip, leading to excessive trading signals and frequent stop-losses. To mitigate this risk, additional signal filtering conditions can be added or observation periods extended.

  3. False Reversals in Trending Markets: Strong trending markets may exhibit temporary rebounds before continuing the original trend, leading to false signals. This can be addressed by adding trend strength filtering conditions or incorporating longer-period indicators for confirmation.

  4. Multi-Indicator Synchronization Lag: The requirement for multiple indicators to simultaneously satisfy conditions may lead to delayed entry timing, missing optimal entry points. This can be improved by optimizing indicator parameters or considering early confirmation mechanisms for some indicators.

  5. Not Suitable for Range-Bound Markets: This strategy is primarily designed for trend reversals and may not perform well in long-term range-bound markets. Consider adding market environment recognition functionality to switch to other more suitable strategies in range-bound markets.

Strategy Optimization Directions

  1. Dynamic Parameter Adjustment Mechanism: Currently, the strategy uses fixed parameters. An adaptive parameter adjustment mechanism could be introduced to automatically adjust SAR parameters, RSI thresholds, etc., based on market volatility. For example, increase SAR increment in high-volatility markets to reduce false breakouts; decrease SAR starting value in low-volatility markets to improve sensitivity.

  2. Add Market Environment Recognition: By incorporating ATR (Average True Range), volatility indicators, or trend strength indices, identify the current market environment (trending, range-bound, or high volatility) and adjust strategy parameters or switch trading logic accordingly.

  3. Time Filter Introduction: For different markets with potential time-specific characteristics, introduce trading session filtering to avoid low liquidity or high volatility periods, or optimize parameter settings for specific time periods.

  4. Profit-Taking Strategy Optimization: The current strategy mainly relies on reverse signals for position closing. Dynamic profit-taking mechanisms could be introduced, such as ATR-based trailing stops or volatility-based percentage profit-taking, to lock in partial profits when gains reach certain levels.

  5. Phased Position Building and Closing: Consider introducing phased position building and closing mechanisms instead of full position operations to reduce single operation risk and optimize fund management. For example, establish 50% position on initial signal, increase to 100% when signals strengthen, and similarly adopt a phased strategy when closing positions.

  6. Indicator Weighting System: Set up a weighting system for different indicators, adjusting their influence based on performance in different market environments to build a more intelligent signal generation mechanism.

  7. Machine Learning Optimization: Introduce machine learning algorithms to train models through historical data, predicting the success probability of various indicator combinations under different market conditions, and dynamically adjusting trading decisions.

Conclusion

The Multi-Indicator Synergistic SAR Reversal Strategy with Filtered Entry Model is an excellent example of integrating traditional technical analysis indicators into a modern quantitative trading system. By combining SAR, RSI, MACD, Stochastic RSI, and LSMA, this strategy provides high-quality trading signals at market reversal points and effectively reduces false signal risk through multiple condition filtering mechanisms.

The core advantages of this strategy lie in its multi-layered verification mechanism and flexible parameter adjustment capability, allowing it to adapt to different market environments. However, the strategy also has limitations such as high parameter sensitivity and potential lag. Performance can be further enhanced by introducing dynamic parameter adjustment, market environment recognition, and optimized profit-taking mechanisms.

For quantitative traders, this strategy provides a robust framework that can be customized and extended based on individual trading styles and target market characteristics. Through continuous backtesting and optimization, combined with a deep understanding of the market, this strategy can be developed into an efficient and reliable trading system.

Strategy source code
/*backtest
start: 2024-03-28 00:00:00
end: 2025-01-18 00:00:00
period: 3h
basePeriod: 3h
exchanges: [{"eid":"Futures_Binance","currency":"ETH_USDT"}]
*/

//@version=6
strategy("SAR Reversal Strategy with Filtered Entries & Opposite Exits", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=10)

// === Input Parameters ===
start = input(0.02, "SAR Start")
increment = input(0.02, "SAR Increment")
maximum = input(0.2, "SAR Maximum")

rsiPeriod = input(14, "RSI Period")
rsiOverbought = input(70, "RSI Overbought Level")
rsiOversold = input(30, "RSI Oversold Level")

stochLength = input(14, "Stoch RSI Length")
stochOverbought = input(80, "Stoch Overbought Level")
stochOversold = input(20, "Stoch Oversold Level")

lsmaLength = input(4, title="LSMA Length")  // LSMA period input
lsmaOffset = input(9, title="LSMA Offset")  // LSMA offset input

rsi = ta.rsi(close, rsiPeriod)

// === Stochastic RSI for Additional Confirmation ===
stochRsi = ta.stoch(rsi, rsi, rsi, stochLength)


// === Calculate Indicators ===
psar = ta.sar(start, increment, maximum)

[macdLine, signalLine, _] = ta.macd(close, 12, 26, 9)

// === LSMA Calculation ===
lsma = ta.linreg(close, lsmaLength, 0)  // Least Squares Moving Average (LSMA)

// === Shift LSMA by User-Defined Offset ===
lsmaOffsetted = lsma[lsmaOffset]

// === Detect SAR Reversals ===
sarReversalUp = ta.crossover(close, psar)  // SAR flips below price → long entry signal
sarReversalDown = ta.crossunder(close, psar)  // SAR flips above price → short entry signal

// === Only Allow SAR Reversals If RSI & MACD Are Favorable ===
validLong = sarReversalUp and rsi > rsiOversold and macdLine > signalLine and stochRsi > stochOversold and close > lsmaOffsetted
validShort = sarReversalDown and rsi < rsiOverbought and macdLine < signalLine and stochRsi < stochOverbought and close < lsmaOffsetted


// === Execute Trades Only at SAR Reversals ===
if validLong
    strategy.close("Short")  // Close any short position
    strategy.entry("Long", strategy.long)

if validShort
    strategy.close("Long")  // Close any long position
    strategy.entry("Short", strategy.short)

// === Plot Indicators ===
plot(psar, title="Parabolic SAR", style=plot.style_cross, color=color.orange, linewidth=2)
hline(rsiOverbought, "RSI Overbought", color=color.red)
hline(rsiOversold, "RSI Oversold", color=color.green)
plot(rsi, title="RSI", color=color.purple)
plot(macdLine, title="MACD Line", color=color.green)
plot(signalLine, title="Signal Line", color=color.red)
hline(stochOverbought,"stochRsi", color = color.yellow)
hline(stochOversold,"stochRsi", color = color.yellow)

// === Plot LSMA and Offset LSMA for Visualization ===
//...not in valid long/short check.... plot(lsma, title="LSMA", color=color.blue, linewidth=2)
plot(lsmaOffsetted, title="Offset LSMA", color=color.red, linewidth=2)
plot(stochRsi, title="stochRsi",color=color.yellow, linewidth=2)

// ✅ Floating Label for Stoch RSI (Top-Right of Chart)
var label stochLabel = na
label.delete(stochLabel)  // Delete previous label to prevent duplicates
// experiment to show label above value at top of chart (only showed last value at end) stochLabel := label.new( bar_index, ta.highest(high, 10),    text="Stoch RSI: " + str.tostring(stochRsi, "#.##"),     color=color.blue, textcolor=color.white, size=size.small, style=label.style_label_upper_right)