QuickI_v2 Strategy Deep Analysis
Strategy ID: #271 (271st out of 465 strategies)
Strategy Type: RSI Oversold Quick Rebound Strategy
Timeframe: 15 Minutes (15m)
I. Strategy Overview
QuickI_v2 is an RSI variant strategy focused on quick rebounds. The core logic is based on the RSI indicator's oversold zone — when RSI falls below a specific threshold accompanied by Williams %R confirmation, a buy signal is triggered. The strategy is designed for rapid entries and exits, suitable for short-term trading scenarios.
Core Characteristics
| Attribute | Description |
|---|---|
| Buy Condition | 1 core buy condition: RSI < 30 + WILLR < -80 |
| Sell Condition | 1 core sell condition: RSI > 70 + WILLR > -20 |
| Protection Mechanisms | No independent protection parameters; relies on ROI and trailing stop |
| Timeframe | 15 Minutes |
| Dependencies | TA-Lib |
II. Strategy Configuration Analysis
2.1 Basic Risk Parameters
# ROI Exit Table
minimal_roi = {
"0": 0.09 # Immediate exit: 9% profit
}
# Stoploss Settings
stoploss = -0.10 # -10% hard stoploss
# Trailing Stop
trailing_stop = True
trailing_stop_positive = 0.01 # 1% trailing activation point
trailing_stop_positive_offset = 0.02 # 2% offset trigger
Design Rationale:
- Moderate ROI Threshold: First-tier ROI set at 9%, suitable for capturing medium-sized rebounds
- Moderate Stoploss: -10% hard stoploss gives trades room for volatility
- Aggressive Trailing: 1% profit activates trailing, 2% offset triggers exit — suitable for short-term operations
2.2 Order Type Configuration
order_types = {
'buy': 'limit',
'sell': 'limit',
'stoploss': 'market',
'stoploss_on_exchange': False
}
III. Entry Conditions Details
3.1 Entry Logic
# Buy Condition
dataframe.loc[
(dataframe['rsi'] < 30) & (dataframe['rperc'] < -80),
'buy'
] = 1
Logic Analysis:
- RSI Oversold Confirmation: RSI < 30 indicates price is in extreme oversold territory
- Williams %R Confirmation: WILLR < -80 (equivalent to RSI < 20) further confirms oversold
- Dual Confirmation: Two momentum indicators simultaneously oversold improves signal reliability
3.2 Indicator Calculation
# Core Indicator Calculation
dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14)
dataframe['rperc'] = ta.WILLR(dataframe, timeperiod=14)
IV. Exit Conditions Details
4.1 Sell Conditions
# Sell Condition
dataframe.loc[
(dataframe['rsi_30m'] > 70) & (dataframe['rperc_30m'] > -20),
'sell'
] = 1
Design Rationale:
- Uses 30-minute informational timeframe to judge trend reversal
- Sell when RSI breaks above 70 and Williams %R returns to neutral territory
4.2 Multi-Timeframe Analysis
The strategy uses 30 minutes as the informational timeframe for higher-dimensional trend judgment:
- 30-minute RSI judges medium-term overbought condition
- 30-minute WILLR confirms momentum reversal
V. Technical Indicator System
5.1 Core Indicators
| Indicator Category | Specific Indicator | Purpose |
|---|---|---|
| Momentum | RSI (14) | Measures speed and magnitude of price changes |
| Momentum | WILLR (14) | Williams %R — confirms overbought/oversold |
5.2 Informational Timeframe Indicators (30m)
| Indicator | Purpose |
|---|---|
| rsi_30m | Medium-term momentum judgment |
| rperc_30m | Medium-term Williams %R |
VI. Risk Management Features
6.1 Fixed Stoploss
- Stoploss Distance: -10%
- Design Rationale: Moderate stoploss gives trades sufficient room for volatility
6.2 Trailing Stop
| Parameter | Value | Description |
|---|---|---|
| trailing_stop | True | Enable trailing stop |
| trailing_stop_positive | 1% | Activate when profit reaches 1% |
| trailing_stop_positive_offset | 2% | Trigger exit on 2% drawdown |
VII. Strategy Pros & Cons
✅ Pros
- Simple and Direct: Only two core indicators, easy to understand and implement
- Fast Response: 15-minute timeframe suitable for capturing quick rebounds
- Dual Confirmation: RSI + WILLR dual filter reduces false signals
- Low Computational Load: Simple indicator calculations, low hardware requirements
⚠️ Cons
- Average Performance in Choppy Markets: Frequent false signals in sideways markets
- Relies on Oversold Rebound: May suffer continuous losses if market enters prolonged downtrend
- Timeframe Limitations: 15-minute timeframe may miss larger trends
VIII. Applicable Scenarios
| Market Environment | Recommended Configuration | Description |
|---|---|---|
| Quick Rebound | Use Default | Suitable for capturing quick rebounds after oversold |
| Choppy Market | Reduce Number of Pairs | Reduce false signal impact |
| Downtrend | Reduce Position Size | Trend strategies underperform |
IX. Live Trading Notes
QuickI_v2 is a short-term strategy based on RSI oversold rebound mechanism. Its core logic is "物极必反" — when price reaches extreme levels, a rebound is highly likely.
9.1 Core Strategy Logic
- Oversold Buy: Buy when RSI < 30 and WILLR < -80
- Rapid Entries/Exits: Target approximately 9% profit
- Medium-Term Confirmation: Use 30-minute chart to confirm sell timing
9.2 Performance in Different Market Environments
| Market Type | Performance Rating | Analysis |
|---|---|---|
| Quick Rebound | ⭐⭐⭐⭐⭐ | Quick rebounds after oversold are the strategy's perfect scenario |
| Choppy Market | ⭐⭐⭐☆☆ | RSI frequent entries/exits in choppy markets may cause whipsaws |
| Downtrend | ⭐⭐☆☆☆ | Continuous decline may cause consecutive losses |
| Sideways Consolidation | ⭐⭐⭐☆☆ | Some opportunities during consolidation |
9.3 Key Configuration Suggestions
| Configuration Item | Suggested Value | Description |
|---|---|---|
| Timeframe | 15m | Best for short-term trading |
| Number of Pairs | 3-5 pairs | Avoid over-diversification |
| Stoploss | -10% | Moderate is sufficient |
X. Important Reminders: The Cost of Simplicity
10.1 Learning Curve
Low — strategy logic is simple and clear, suitable for beginners.
10.2 Hardware Requirements
| Number of Pairs | Minimum RAM | Recommended RAM |
|---|---|---|
| 1-5 pairs | 1GB | 2GB |
| 5-10 pairs | 2GB | 4GB |
10.3 Backtesting vs Live Trading Differences
- Low-liquidity pairs have smaller differences
- Slippage significantly impacts the strategy; set appropriate fee rates
10.4 Manual Trading Suggestions
This strategy can be easily replicated manually by setting RSI and WILLR alerts.
XI. Summary
QuickI_v2 is a simple and direct RSI oversold rebound strategy. Its core value lies in:
- Simplicity: Clear logic, easy to implement and understand
- Fast Response: 15-minute timeframe captures short-term opportunities
- Low Barrier: Low hardware and knowledge requirements
For quantitative traders, this is a great entry-level strategy for learning basic strategy development logic. However, be mindful that performance may vary in illiquid altcoins and high-volatility markets.
This document is auto-generated based on strategy code