RSI Indicator Cross Cycle Profit and Stop Loss Strategy

Author: ChaoZhang, Date: 2024-02-06 11:43:11
Tags:

img

Overview

This strategy uses the RSI indicator to determine the entry timing through cross-cycle judgments and adopts the ATR profit and stop mechanism for trend tracking strategies. It determines the turning point of the market trend through the cross of the RSI indicator of different cycles and combines the closing price to filter the timing of long and short positions. The profit and stop mechanism effectively controls risks and locks in profits.

Strategy Principle

The strategy first uses the SMA smoothing technology to calculate the 26-week moving average as the benchmark for judging the bull market. Then calculate the 4-week RSI indicator value, when it crosses below 30 in the oversold area, it is considered that the market may rebound. At this time, judge whether the new high of the shortdays parameter can break through the recent new high of the longdays parameter, indicating that the short-term trend is strengthening. If the above conditions are met at the same time, a long signal is issued.

After entering the market, use the ATR indicator multiples as the profit range, and stop loss at a certain percentage of the closing price high point.

Advantages of the Strategy

The strategy has the following advantages:

  1. Use the RSI indicator to determine reversal points with good timing ability.

  2. Apply the new highs and lows mechanism to avoid false signals.

  3. Use ATR to profit and stop loss to automatically track the optimal exit point.

  4. Flexible parameter settings can be adjusted to optimal levels.

  5. The strategy idea is clear and easy to understand, with strong stability.

Risks of the Strategy

The strategy also has the following risks:

  1. The RSI indicator may issue a wrong signal, resulting in improper timing. RSI parameters can be adjusted accordingly, or other indicators can be added for filtering.

  2. The ATR profit range may be set too large or too small to lock in maximum profit. Better parameter combinations can be tested.

  3. The stop loss point is too close and may be broken stop loss. Appropriately relax the stop loss distance.

  4. Insufficient backtest data may overestimate the strategy’s rate of return. The backtest period and market environment test should be increased.

Strategy Optimization

The strategy can be optimized in the following aspects:

  1. Test and optimize RSI parameters and profit and loss multiples to find the best parameter combination.

  2. Increase other indicators to improve strategy accuracy. Such as MACD, KD, etc.

  3. Optimize the stop loss mechanism and adjust dynamically according to the ATR fluctuation range.

  4. Test the performance effect on different trading varieties. Choose varieties with good liquidity and high volatility.

  5. Compare the performance of different types of stop losses. Such as proportional stop loss, moving stop loss, etc.

Summary

The overall operation of this strategy is clear and smooth, the indicator selection and parameter settings are reasonable, and it has strong practicality. There is still room for further improvement through parameter optimization and mechanism improvement. Overall, the strategy has a relatively high ability to earn stable profits. It is worth debugging in real transactions and putting into use.


/*backtest
start: 2023-02-05 00:00:00
end: 2024-01-18 05:20:00
period: 2d
basePeriod: 1d
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=4
//A translation from info found at http://backtestwizard.com/swing-trading-system-for-stocks/
strategy("Swing Trading System RSI", overlay=true)
source = close[1]

longperiod = input(26,"long week",minval=2,maxval=500,step=1)
s = request.security(syminfo.tickerid, "W", sma(close[1], longperiod)) // 1 Day
plot(s)

shortdays = input(21,"short days high period",minval=2,maxval=500,step=1)
longdays = input(50,"long days high period",minval=2,maxval=500,step=1)
rsiperiod = input(4,"rsi period",minval=2,maxval=500,step=1)
rsithresh = input(30,"rsi thresh",minval=2,maxval=500,step=1)

highcheck = highest(source,shortdays) == highest(source,longdays)
rsicheck = crossunder(rsi(source,rsiperiod),rsithresh)

longCondition = (highcheck) and (rsicheck) and source > s
if (longCondition)
    strategy.entry("My Long Entry Id", strategy.long)

profittarget = input(3,"profit target",minval=2,maxval=500,step=1)
stoploss = input(2,"stop target",minval=2,maxval=500,step=1)

exitCondition1 = source > strategy.position_avg_price + (atr(50) * profittarget)
exitCondition2 = source <  strategy.position_avg_price - (atr(50) * stoploss)

if (exitCondition1)
    strategy.close_all()
if (exitCondition2)
    strategy.close_all()


More