Skip to main content

BigZ07Next Strategy Analysis

I. Strategy Overview

BigZ07Next is a high-complexity trend-following quantitative trading strategy built on the NostalgiaForInfinityV8 framework. The strategy uses multi-timeframe analysis and multi-condition composite filtering to capture trend reversal and continuation opportunities in volatile markets.

Core Features

FeatureDescription
Entry Conditions14 independent conditions
Exit Conditions8 basic conditions + 50+ custom rules
Protection MechanismsMulti-level take-profit + pump protection + recovery mechanisms
Timeframe5-minute main cycle + 1-hour auxiliary
Recommended Positions4-6 pairs

Core Parameters

ParameterDefaultDescription
timeframe5mMain trading cycle
stoploss-0.10Fixed stoploss line -10%
trailing_stopTrueEnable trailing take-profit
trailing_stop_positive0.01Trailing activation threshold 1%
trailing_stop_positive_offset0.025Trailing pullback starting point 2.5%
exit_profit_onlyTrueOnly allow exit when profitable

II. Strategy Configuration Analysis

2.1 Timeframe Configuration

BigZ07Next uses dual-timeframe architecture:

  • Main Timeframe (5 minutes): Used for daily trading decisions, capturing short-term price volatility
  • Information Timeframe (1 hour): Used for trend judgment and filtering, providing medium to long-term market perspective

Core logic of this design: Confirm trend direction at 1-hour level, find specific entry points at 5-minute level.

2.2 Order Type Configuration

order_types = {
'entry': 'market',
'exit': 'market',
'stoploss': 'market',
'stoploss_on_exchange': False
}

2.3 ROI Return Target Table

Holding Time (minutes)Expected Return
0-102.8%
10-401.8%
40-1800.5%
180+1.8%

III. Entry Conditions Details

Strategy contains 14 independent entry conditions (buy_condition_0 to buy_condition_13), each can be independently enabled/disabled. All conditions are "OR" relationship, satisfying any one triggers buy signal.

Conditions Overview

ConditionCore LogicKey Indicators
buy_condition_0RSI oversold + continuous decline filterRSI < 30, RSI_1h < 71
buy_condition_1Bollinger lower rail + volume contractionClose < BB_lower * 0.989
buy_condition_2Bollinger lower rail + volume contraction variantClose < BB_lower * 0.982
buy_condition_31h level above EMA200 + RSI oversoldRSI < 14.2
buy_condition_41h RSI extremely low + volume contractionRSI_1h < 16.5
buy_condition_5MACD golden cross + Bollinger lower railEMA26 > EMA12
buy_condition_6RSI_1h low + MACD golden crossRSI_1h < 39
buy_condition_7RSI_1h extremely low + MACD patternRSI_1h < 15
buy_condition_8Dual RSI oversoldRSI < 28, RSI_1h < 20
buy_condition_9RSI combination filterRSI < 10, RSI_1h < 35
buy_condition_10MACD momentum reversal + 1h BollingerMACD Hist > 0, 1h close < BB_lower
buy_condition_11Bollinger Band narrowing + MACD continuous riseBB bandwidth narrows, Hist continuously positive
buy_condition_12Breakout buy patternClose > EMA200, breaks BB lower rail
buy_condition_13Extreme oversold + capital outflowCMF < -0.435, RSI < 22

Entry Conditions Common Characteristics

All entry conditions share following filtering logic:

  1. Volume Threshold: 48-period volume mean needs to be 40% higher than 48 periods ago
  2. Trend Requirement: Most conditions require closing price above EMA200
  3. Volume Validity: All conditions require current volume > 0

IV. Exit Logic Details

4.1 Multi-Layer Exit System

Strategy implements comprehensive exit protection:

  1. ROI Take-Profit: Time-based profit targets
  2. Trailing Stop: Dynamic profit protection
  3. Custom Exit Rules: 50+ custom conditions
  4. Pump Protection: Detects abnormal volatility

4.2 Recovery Mechanisms

Strategy includes recovery exit conditions for positions with losses, allowing exit at small profits to minimize losses.


V. Technical Indicator System

Trend Indicators

  • EMA200 (5-minute and 1-hour)
  • EMA50 (1-hour)

Momentum Indicators

  • RSI (14-period, dual timeframe)
  • MACD (12,26,9)

Volatility Indicators

  • Bollinger Bands (20,2)

Volume Indicators

  • Volume mean (48-period)
  • CMF

VI. Strategy Pros & Cons

6.1 Advantages

  1. Comprehensive protection mechanisms
  2. Rich entry conditions (14 types)
  3. Multi-layer exit system
  4. Pump protection for extreme volatility

6.2 Limitations

  1. High complexity increases understanding difficulty
  2. May exit too early in strong trends
  3. Requires significant monitoring

VII. Applicable Scenarios

  • Volatile markets
  • Oscillating conditions
  • Markets with clear support/resistance
  • Strong one-sided trends
  • Low volatility environments
  • Illiquid trading pairs

VIII. Summary

BigZ07Next is a complex trend-following strategy built on NostalgiaForInfinityV8 framework. Through 14 entry conditions, multi-layer exit system, and comprehensive protection mechanisms, it builds a sophisticated trading system.

Key Features:

  • 14 independent entry conditions
  • 50+ custom exit rules
  • Multi-level protection
  • Suitable for volatile markets

Risk Warning: High complexity requires thorough understanding before use. Conduct sufficient backtesting and paper trading.