CryptoFrogHO3A1 Strategy Analysis
Strategy ID: Batch 14 - 7th Strategy
Strategy Type: Third-Order Heiken Ashi + Ultra-Aggressive ROI + Extremely Loose Risk Control
Timeframe: 5 minutes (5m) + 1-hour informational layer
I. Strategy Overview
CryptoFrogHO3A1 is the first variant (A1) of the CryptoFrogHO3 series, extremely tuned by community developers for ultra-high-volatility markets. The strategy has extremely aggressive profit targets while using extremely loose stop-loss protection.
Core Features
| Feature | Description |
|---|---|
| Buy Conditions | 3 independent buy modes |
| Sell Conditions | Multi-condition combinations + ultra-aggressive dynamic ROI |
| Protection | Extremely loose linear-decay stop-loss + dynamic ROI |
| Timeframe | 5 minutes + 1-hour informational layer |
| Dependencies | TA-Lib, finta, technical (qtpylib) |
II. Strategy Configuration Analysis
2.1 Core Risk Parameters
# ROI Exit Table - Ultra-aggressive
minimal_roi = {
"0": 0.055, # 0-10 minutes: 5.5% profit
"10": 0.02, # 10-43 minutes: 2% profit
"43": 0.01, # 43-60 minutes: 1% profit
"60": 0 # After 60 minutes: free exit
}
# Extremely loose stop-loss
stoploss = -0.299 # -29.9% starting stop-loss (approaching -30%)
# Trailing Stop - Ultra-aggressive
trailing_stop = True
trailing_stop_positive = 0.295
trailing_stop_positive_offset = 0.378
trailing_only_offset_is_reached = True
Design Philosophy:
- Ultra-short ROI ladder: First target in 10 minutes
- Extremely loose stop-loss: -29.9% nearly unlimited, gives maximum rebound room
- Longer trailing start: Activates from 37.8% profit
III. Entry Conditions Details
3.1 Core Entry Logic
Buy signal = (Price condition) & (Informational layer condition) & (3 alternative modes) & (Volume condition)
Price Condition Layer
(dataframe['close'] < dataframe['Smooth_HA_L'])
Informational Layer Condition
(dataframe['emac_1h'] < dataframe['emao_1h'])
3.2 Alternative Buy Conditions (Three Modes)
Mode A: BB Expansion + Momentum Filtering
(dataframe['bbw_expansion'] == 1) & (dataframe['sqzmi'] == False)
& ((dataframe['mfi'] < 20) | (dataframe['dmi_minus'] > 30))
Mode B: SAR + Stochastic RSI Oversold
(dataframe['close'] < dataframe['sar'])
& ((dataframe['srsi_d'] >= dataframe['srsi_k']) & (dataframe['srsi_d'] < 30))
& ((dataframe['fastd'] > dataframe['fastk']) & (dataframe['fastd'] < 23))
& (dataframe['mfi'] < 30)
Mode C: DMI Crossover + Bollinger Band Bottom / SQZMI Squeeze
((dataframe['dmi_minus'] > 30) & qtpylib.crossed_above(dataframe['dmi_minus'], dataframe['dmi_plus']))
& (dataframe['close'] < dataframe['bb_lowerband'])
| (dataframe['sqzmi'] == True) & ((dataframe['fastd'] > dataframe['fastk']) & (dataframe['fastd'] < 20))
3.3 Volume Filtering
(dataframe['vfi'] < 0.0) & (dataframe['volume'] > 0)
IV. Risk Management Highlights
4.1 Extremely Loose Linear-Decay Stop-Loss
Timeline (minutes): 0 ---- 166 ---->
Stop-loss value: -8.5% ----> -2%
4.2 Ultra-Aggressive Trailing
- Triggers when profit exceeds 37.8%
- Trailing distance 29.5%
V. Strategy Pros & Cons
Pros
- Extremely short ROI ladder: First target within 10 minutes
- Extremely loose stop-loss: -29.9% nearly unlimited
- Trend profit maximization: Dynamic ROI lets profits run
- Ultra-long holding time: 166-minute decay window
Cons
- Extremely large potential loss: Approaching -30% starting stop-loss
- Target may be unreachable: 5.5% in low-volatility markets is hard to achieve
- High drawdown risk: Loose stop-loss means higher risk
- Only suitable for extreme volatility
VI. Summary
CryptoFrogHO3A1 is the extreme version of the CryptoFrogHO3 series:
- Ultra-short ROI ladder: 5.5% first target within 10 minutes
- Extremely loose stop-loss: -29.9% nearly unlimited
- Trend profit maximization: Dynamic ROI lets profits run
- Ultra-long decay window: 166-minute decay time
Usage Recommendation: Designed for ultra-high-volatility markets, extremely high risk. Only suitable for highly experienced traders. Regular users should use more conservative parameters.