Hunting Dark Horses (猎杀黑马) — Complete Implementation Specification

Author: Wang Ning (王宁) Original Language: Chinese (Simplified) Market Focus: A-shares (Shanghai & Shenzhen Stock Exchanges) Trading Style: Proactive identification and early positioning in undiscovered stocks before major moves


Table of Contents

  1. Core Philosophy

  2. Defining the Dark Horse

  3. Technical Screening Framework

  4. Volume Anomaly Detection

  5. Institutional Footprint Analysis

  6. Sector Rotation and Thematic Hunting

  7. Fundamental Catalysts

  8. Chart Pattern Recognition

  9. Entry Timing Techniques

  10. Position Building Strategy

  11. Risk Management Framework

  12. Holding Period Management

  13. Exit Strategy

  14. The Dark Horse Lifecycle

  15. Key Quotes and Principles


1. Core Philosophy

In the Chinese stock market lexicon, a "dark horse" (黑马) is a stock that no one expects to perform well but then delivers outsized returns. Wang Ning's approach is to systematically identify these stocks before the crowd catches on, using a combination of technical anomalies, volume analysis, and institutional behavior detection.

The philosophy rests on an asymmetric information model:


2. Defining the Dark Horse

2.1 Quantitative Characteristics

A dark horse candidate typically shows:

Characteristic Range
Market capitalization Small to mid-cap (1-20 billion RMB)
Average daily volume Below sector average (quiet stock)
Price position 30-60% below its all-time high
Analyst coverage Low (0-3 analysts covering)
Recent media mentions Minimal
Price change last 6 months Between -10% and +15% (flat / unnoticed)

2.2 Qualitative Characteristics

2.3 What a Dark Horse Is Not


3. Technical Screening Framework

3.1 Stage Analysis Foundation

Wang Ning adapts a stage analysis framework to identify dark horses in the transition from Stage 1 (basing) to Stage 2 (advancing):

3.2 Primary Screen Criteria

# Dark Horse Primary Screen
price > 5.0  # exclude ultra-low-price stocks
market_cap between 1_billion and 20_billion
avg_volume_20 > 500_000  # minimum liquidity
price_change_120_days between -0.15 and 0.15  # flat base
ma20_slope between -0.001 and 0.003  # flat or slightly rising
ma60 near ma120 (within 5%)  # moving averages converging
atr_20 / price < 0.03  # low volatility (compressed)

3.3 Secondary Filters

After the primary screen, apply:


4. Volume Anomaly Detection

Volume anomalies are the earliest footprint of institutional interest. Smart money cannot accumulate a meaningful position without leaving traces in volume data.

4.1 Types of Volume Anomalies

Quiet Accumulation Pattern (温和放量)

Spike-and-Retreat Pattern (脉冲放量)

Volume-Price Divergence (量价背离)

4.2 On-Balance Volume (OBV) Analysis

If OBV is rising while price is flat:
    -> Smart money is accumulating (BULLISH)
If OBV is flat while price is flat:
    -> No one cares about this stock yet (NEUTRAL — too early)
If OBV is declining while price is flat:
    -> Distribution is occurring (BEARISH — avoid)

4.3 Volume Ratio Indicator

volume_ratio = sum(volume on up days, 20 days) / sum(volume on down days, 20 days)

if volume_ratio > 1.5: strong accumulation signal
if volume_ratio between 1.0 and 1.5: mild accumulation
if volume_ratio < 1.0: distribution — avoid

5. Institutional Footprint Analysis

5.1 Shareholder Concentration

A-share companies report their top 10 shareholders quarterly. Track:

5.2 Dragon-and-Tiger List (龙虎榜)

The exchanges publish institutional buying/selling data for stocks that hit price limits or show unusual activity:

5.3 Block Trade Analysis (大宗交易)

Block trades occur off-exchange and are reported after hours:

5.4 Margin Balance Trends


6. Sector Rotation and Thematic Hunting

6.1 Sector Rotation Model

The A-share market follows recognizable rotation patterns:

  1. Early cycle: Financials, infrastructure, real estate lead
  2. Mid cycle: Manufacturing, consumer, technology lead
  3. Late cycle: Resources, materials, defensive sectors lead
  4. Risk-off: Utilities, consumer staples, gold

Dark horses are most often found in sectors that are about to rotate into favor. The stock has been ignored because its sector has been out of favor, but smart money anticipates the rotation.

6.2 Policy-Driven Themes

The A-share market is heavily influenced by government policy:

Dark horses often emerge from newly favored policy sectors. Identify the policy theme early, then screen for dark horse characteristics within that sector.

6.3 Sector Relative Strength Transition

Monitor sectors transitioning from relative weakness to relative strength:

sector_rs = sector_return_20d / market_return_20d

if sector_rs was < 0.8 (lagging) last month
   and sector_rs is now > 0.95 (catching up):
   -> This sector is transitioning; look for dark horses within it

7. Fundamental Catalysts

While the primary approach is technical, fundamental catalysts provide conviction for longer holding periods.

7.1 Earnings Inflection

7.2 Asset Revaluation

7.3 Competitive Position Improvement

7.4 Capital Events


8. Chart Pattern Recognition

8.1 The Long Base (长期底部)

8.2 The Cup-and-Handle (杯柄形态)

8.3 The Ascending Triangle (上升三角形)

8.4 The Volatility Squeeze (波动率收缩)


9. Entry Timing Techniques

9.1 The Volume Trigger Entry

Enter when the first significant volume expansion occurs from the base:

9.2 The Breakout Entry

Enter when price clears the top of the base/consolidation range:

9.3 The Early Accumulation Entry (Highest Risk, Highest Reward)

Enter within the base itself, before the breakout, based on accumulation evidence:

9.4 Entry Priority Matrix

Evidence Level Entry Timing Position Size Stop Width
Volume + Institutional + Fundamental Early (in base) 15-20% Wide (below base)
Volume + Technical breakout Breakout 20-25% Moderate (below breakout)
Technical breakout only Breakout + pullback 10-15% Tight (below resistance)

10. Position Building Strategy

10.1 Pyramiding Model

Dark horse positions are built gradually to manage the uncertainty inherent in early-stage identification:

10.2 Cost Averaging Within the Base

For early accumulation entries:

10.3 Maximum Position Limits


11. Risk Management Framework

11.1 Stop-Loss Levels

Entry Type Stop Level Maximum Loss
Early accumulation (in base) Below the base low by 3% 10-12%
Breakout entry Below resistance by 3% 5-8%
Pullback entry Below the pullback low 3-5%

11.2 Portfolio Risk Rules

11.3 Fundamental Stop

If the fundamental thesis is invalidated (earnings miss, management change, regulatory action), exit immediately regardless of price level.

11.4 Time-Based Risk Management


12. Holding Period Management

12.1 The Patience Phase (Weeks 1-4)

12.2 The Awakening Phase (Weeks 4-8)

12.3 The Running Phase (Weeks 8-20)

12.4 The Mature Phase (Beyond Week 20)


13. Exit Strategy

13.1 Profit Targets

13.2 Distribution Signals (Exit Triggers)

Exit the position when you observe:

13.3 Trailing Stop System

function trail_stop(position, current_price, ma10, ma20):
    gain = (current_price - position.avg_cost) / position.avg_cost

    if gain >= 0.50:
        return max(position.stop, ma10)
    elif gain >= 0.30:
        return max(position.stop, ma20)
    elif gain >= 0.15:
        return max(position.stop, position.avg_cost * 1.05)
    elif gain >= 0.05:
        return max(position.stop, position.avg_cost)
    else:
        return position.stop

14. The Dark Horse Lifecycle

Understanding where a dark horse is in its lifecycle is critical for timing:

Phase 1: Gestation (孕育期)
├── Smart money begins quiet accumulation
├── Volume anomalies first appear
├── Price: flat, in base
├── Duration: 2-6 months
└── Action: Identify and take initial position

Phase 2: Birth (启动期)
├── First meaningful breakout from base
├── Volume expansion confirms institutional buying
├── Price: breaks above base, gains 10-20%
├── Duration: 2-4 weeks
└── Action: Add to position, confirm thesis

Phase 3: Growth (成长期)
├── Sustained uptrend with strong volume
├── Analyst coverage begins
├── Price: trending higher, 20-50% from base
├── Duration: 1-3 months
└── Action: Hold core, take partial profits

Phase 4: Maturity (成熟期)
├── Everyone knows the story
├── Climax volume and wide ranges
├── Price: 50-100%+ from base
├── Duration: 2-4 weeks
└── Action: Exit systematically

Phase 5: Decline (衰退期)
├── Smart money has exited
├── Retail holds the bag
├── Price: declining from peak
└── Action: Completely out, never look back

16. Key Quotes and Principles

"The dark horse hides in the shadows of the market, ignored by all. Your advantage is patience — the patience to search where others will not look."

"Volume whispers before price shouts. Learn to hear the whisper, and you will be positioned before the shout."

"A declining shareholder count is the clearest sign that strong hands are gathering shares from weak ones. This is the footprint of the hunter becoming the hunted."

"Do not mistake a dying company for a dark horse. A dark horse is dormant, not dead. Always verify that the business underneath the chart is alive and improving."

"The best dark horses are found in sectors that are rotating from weakness to strength. Yesterday's laggard is tomorrow's leader."

"Patience is the dark horse hunter's greatest weapon and greatest challenge. You may hold for weeks with nothing happening. That silence is the price of positioning."

"When the dark horse finally runs and everyone is talking about it, your job is done. Sell your shares to the latecomers who just discovered what you found months ago."

"Three volume anomalies in a quiet stock within thirty days is not coincidence. It is a message from the market: someone knows something you do not yet know."

"Never fall in love with a dark horse that refuses to run. If ninety days pass without movement, free your capital for the next hunt."


This specification synthesizes the core methodology from "猎杀黑马" by Wang Ning, structured as an actionable implementation guide for proactive stock screening and early positioning in undiscovered winners in the A-share market.