Skip to main content

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​

AttributeDescription
Buy Condition1 core buy condition: RSI < 30 + WILLR < -80
Sell Condition1 core sell condition: RSI > 70 + WILLR > -20
Protection MechanismsNo independent protection parameters; relies on ROI and trailing stop
Timeframe15 Minutes
DependenciesTA-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 CategorySpecific IndicatorPurpose
MomentumRSI (14)Measures speed and magnitude of price changes
MomentumWILLR (14)Williams %R — confirms overbought/oversold

5.2 Informational Timeframe Indicators (30m)​

IndicatorPurpose
rsi_30mMedium-term momentum judgment
rperc_30mMedium-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​

ParameterValueDescription
trailing_stopTrueEnable trailing stop
trailing_stop_positive1%Activate when profit reaches 1%
trailing_stop_positive_offset2%Trigger exit on 2% drawdown

VII. Strategy Pros & Cons​

✅ Pros​

  1. Simple and Direct: Only two core indicators, easy to understand and implement
  2. Fast Response: 15-minute timeframe suitable for capturing quick rebounds
  3. Dual Confirmation: RSI + WILLR dual filter reduces false signals
  4. Low Computational Load: Simple indicator calculations, low hardware requirements

⚠️ Cons​

  1. Average Performance in Choppy Markets: Frequent false signals in sideways markets
  2. Relies on Oversold Rebound: May suffer continuous losses if market enters prolonged downtrend
  3. Timeframe Limitations: 15-minute timeframe may miss larger trends

VIII. Applicable Scenarios​

Market EnvironmentRecommended ConfigurationDescription
Quick ReboundUse DefaultSuitable for capturing quick rebounds after oversold
Choppy MarketReduce Number of PairsReduce false signal impact
DowntrendReduce Position SizeTrend 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 TypePerformance RatingAnalysis
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 ItemSuggested ValueDescription
Timeframe15mBest for short-term trading
Number of Pairs3-5 pairsAvoid 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 PairsMinimum RAMRecommended RAM
1-5 pairs1GB2GB
5-10 pairs2GB4GB

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:

  1. Simplicity: Clear logic, easy to implement and understand
  2. Fast Response: 15-minute timeframe captures short-term opportunities
  3. 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