Liquid Strategy: In-Depth Analysis
Strategy Number: #223 (the 223rd of 465 strategies)
Strategy Type: Liquidity Analysis / Breakout Trading
Timeframe: 15 Minutes (15m)
I. Strategy Overview
Liquid is a breakout strategy based on liquidity analysis. This strategy identifies areas where market liquidity congregates and enters trades when price breaks through key liquidity pools.
The name "Liquid" stands for Liquidity. The core assumption of this strategy is: price tends to break through areas where large concentrations of liquidity gather, because significant stop-loss orders and limit orders accumulate at these levels.
Core Characteristics
| Attribute | Description |
|---|---|
| Entry Conditions | 2 sets of liquidity pool breakout-based signals |
| Exit Conditions | 1 set of base exit signals + take-profit and stop-loss |
| Protections | 1 set of entry protection parameters |
| Timeframe | 15-minute primary timeframe |
| Dependencies | pandas, numpy |
II. Strategy Configuration Analysis
2.1 Base Risk Parameters
# ROI Exit Table
minimal_roi = {
"0": 0.10,
"20": 0.06,
"45": 0.03,
"90": 0
}
# Stop Loss Settings
stoploss = -0.10
# Trailing Stop
trailing_stop = True
trailing_stop_positive = 0.03
trailing_stop_positive_offset = 0.035
Design Philosophy:
- High Take-Profit Target: 10% initial target, liquidity breakouts often come with big moves
- Standard Stop Loss: -10% stop loss magnitude
- Trailing Stop: Enabled to protect profits
2.2 Liquidity Parameters
# Liquidity Analysis Parameters
liquid_window = 20 # Liquidity pool detection window
liquid_threshold = 0.03 # Liquidity concentration threshold
breakout_confirm = True # Whether breakout confirmation is required
III. Entry Conditions Details
3.1 Liquidity Pool Identification
The strategy first identifies liquidity concentration areas in the market:
# Liquidity Pool Characteristics
- Trading volume concentration within a price range
- Increased order book depth
- Liquidity near support/resistance levels
3.2 Breakout Conditions
Condition #1: Upward Breakout of Liquidity Pool
# Logic
- Identify the liquidity pool within the most recent 20 candles
- Price breaks upward through the upper boundary of the liquidity pool
- Accompanied by volume expansion
- Entry Timing: Breakout confirmed
Condition #2: Downward Breakout of Liquidity Pool
# Logic
- Identify the liquidity concentration area
- Price breaks downward through the lower boundary of the liquidity pool
- Volume confirms with expansion
- Entry Timing: Breakout confirmed
IV. Exit Logic Details
4.1 Take-Profit and Stop-Loss
Take-Profit Point 10% Hold 0-20 minutes
Take-Profit Point 6% Hold 20-45 minutes
Take-Profit Point 3% Hold 45-90 minutes
Stop-Loss Point -10% Any time
V. Technical Indicator System
5.1 Core Indicators
| Indicator Category | Specific Indicator | Purpose |
|---|---|---|
| Liquidity Indicator | Volume Distribution | Identify liquidity concentration |
| Price Indicator | Range Breakout | Key level identification |
| Confirmation Indicator | Volume Expansion | Breakout validity verification |
5.2 Liquidity Analysis Principle
# Liquidity Pool Identification
# 1. Calculate volume weighting within price range
# 2. Find the price range with the highest trading volume
# 3. That range is the liquidity pool
VI. Risk Management Highlights
6.1 Breakout Confirmation
Price must confirm that the breakout is valid before entering, avoiding false breakouts.
6.2 Volume Verification
Breakouts must be accompanied by volume expansion to improve signal reliability.
VII. Strategy Strengths and Limitations
✅ Strengths
- Trend Market Advantage: Breaking through liquidity pools often leads to big trends
- Objective Identification: Based on volume data, highly objective
- Big Move Capture: Higher take-profit targets
⚠️ Limitations
- False Breakout Risk: Price may pull back quickly after breakout
- Ranging Markets: Poor performance in choppy markets
- Parameter Sensitivity: Threshold settings affect signal frequency
VIII. Applicable Scenarios Recommendations
| Market Environment | Recommended Configuration | Notes |
|---|---|---|
| Trending Markets | Window 20, Threshold 3% | Best results on breakouts |
| Ranging Markets | Stand by or reduce position | Too many false breakouts |
IX. Applicable Market Environment Details
Liquid is a breakout strategy focused on liquidity analysis. Code volume is approximately 180 lines, based on the assumption of "price breaking through liquidity pools."
Its Money-Making Philosophy: Wait for the breakout at liquidity concentration areas
- Liquidity Pool: Areas where trading capital congregates
- Breakout Trading: Wait for price to burst out of the liquidity pool
- Volume-Price Coordination: Use volume to verify signals
9.1 Performance in Different Market Environments
| Market Type | Performance Rating | Analysis |
|---|---|---|
| 📈 Trending Upward | ⭐⭐⭐⭐⭐ | Continues rising after breakout |
| 📉 Trending Downward | ⭐⭐⭐⭐⭐ | Downside breakouts also produce big moves |
| 🔄 Ranging | ⭐⭐☆☆☆ | Too many false breakouts |
| ⚡ Fast Moves | ⭐⭐⭐⭐☆ | Best when liquidity explodes |
9.2 Key Configuration Recommendations
| Configuration Item | Recommended Value | Notes |
|---|---|---|
| liquid_window | 20 | Liquidity detection window |
| liquid_threshold | 0.03 | Liquidity concentration threshold |
X. Important Notes: The Cost of Complexity
10.1 Learning Curve
Understanding basic concepts of liquidity analysis is required. Learning order book and volume analysis first is recommended.
10.2 Hardware Requirements
| Number of Trading Pairs | Minimum RAM | Recommended RAM |
|---|---|---|
| 5-10 | 1GB | 2GB |
| 20-30 | 2GB | 3GB |
10.3 Backtesting vs Live Trading Differences
Breakout strategies may be over-fitted in historical data because breakout patterns may change over time.
10.4 Manual Trading Recommendations
Observe volume distribution and set alerts near liquidity pools. Wait for price to break through!
XI. Summary
Liquid is a liquidity analysis breakout strategy. Its core value lies in:
- Trend Capture: Big moves often follow breakouts
- Liquidity Analysis: Scientific capital concentration area identification
- Volume-Price Coordination: Use volume to verify signals
- High Take-Profit Target: 10% initial target
For quantitative traders, this strategy is suitable for investors who pursue big trends and are willing to take on breakout failure risk. It is recommended for use in markets with clear trends.