Probability-Enhanced RSI Strategy
Overview
This is a simple long-only strategy using RSI indicator to determine overbought and oversold levels. We enhanced it by adding stop loss and take profit, and integrating a probability module to reinforcement trading only when the recent profitable trade probability is greater than or equal to 51%. This greatly improved the strategy performance by avoiding potential losing trades.
Principles
The strategy uses RSI indicator to judge market overbought and oversold conditions. Specifically, it goes long when RSI crosses below the lower limit of oversold zone; and closes position when RSI crosses above the upper limit of overbought zone. In addition, we set stop loss and take profit ratios.
The key is we integrated a probability judgement module. This module calculates the profitable percentage of long trades in recent periods (defined by lookback parameter). It only allows entry if recent profitable trading probability is greater than or equal to 51%. This avoids lots of potential losing trades.
Advantages
As a probability enhanced RSI strategy, it has below advantages compared to simple RSI strategies:
- Added stop loss and take profit controls single trade loss and locks profit
- Integrated probability module avoids low probability markets
- Probability module is adjustable for different market environments
- Long-only mechanism is simple to understand and implement
Risk Analysis
There are still some risks within this strategy:
- Long-only, unable to profit from falling market
- Improper probability module judgement could miss opportunities
- Hard to find best parameter combination, significant performance difference across market environments
- Loose stop loss setting, still possible large single trade loss
Solutions:
- Consider adding short mechanism
- Optimize probability module to lower misjudgement rate
- Use machine learning to dynamically optimize parameters
- Set more conservative stop loss level to limit loss
Enhancement Directions
The strategy could be further optimized in below aspects:
- Increase short module for dual direction trading
- Use machine learning for dynamic parameter optimization
- Try other indicators for overbought/oversold
- Optimize stop loss/take profit for profit ratio enhancement
- Add other factors to filter signals and improve probability
Summary
This is a simple RSI strategy enhanced by integrated probability module. Compared to vanilla RSI strategies, it filters out some losing trades and improves overall drawdown and profit ratio. Next step could be improving it by adding short, dynamic optimization etc to make it more robust.
- 1

