Summary: Part 7 of a 10-part series. A complete manual trading strategy using price action and market structure. Covers key level rejection, the two-try rule for false breaks, and trade management.




Title: Manual Trading Strategy Part 7: Price Action, Structure and the Two-Try Rule

Indicators are lagging. A manual trading strategy based on price action and market structure gives you real-time edge without calculation delays. This guide provides a complete, rules-based manual system that requires zero indicators. Just price, structure, and one filter.

1. Core Concept – Market Structure 101
Structure is the sequence of higher highs (HH) and higher lows (HL) for uptrends, or lower highs (LH) and lower lows (LL) for downtrends.
  • Uptrend definition: Price makes HH and HL. The trend continues until a LH and LL appear.

  • Downtrend definition: Price makes LH and LL. The trend continues until a HH and HL appear.

  • Break of structure (BOS): Price breaks a previous HH (in downtrend) or LL (in uptrend)

  • Change of character (CHoCH): Price breaks a previous HL (in uptrend) or LH (in downtrend) – signals potential reversal


  • 2. The Setup – Key Level Rejection
    This is the highest-probability manual entry without indicators.
    ```
    Setup rules for LONG (sell setup is symmetrical):
    1. Identify a key support level (previous swing low, round number, or 4H consolidation low)
    2. Price approaches the level but does NOT close below it
    3. Look for rejection candlestick pattern on 1H or 4H:
    - Long lower wick (≥2x the body) = hammer/pin bar
    - Bullish engulfing closing above previous candle's midpoint
    4. Entry: At the close of the rejection candle + 2 pips
    5. Stop loss: 5 pips below the rejection candle's low OR 1.5x ATR(14)
    6. Take profit: Next key resistance level OR 2.5x risk distance
    ```
  • Required filter: Only take rejection setups when the higher timeframe trend (4H or daily) aligns. 4H uptrend = only long rejections. 4H downtrend = only short rejections.


  • 3. The Two-Try Rule for False Breaks (Critical)
    False breaks (price pokes above resistance then reverses) trap breakout traders. Use the two-try rule to avoid them.
    ```python
    # Two-try rule logic for manual trading
    false_break_count = 0
    key_level = 1.1050 # example resistance

    def on_price_action(price):
    global false_break_count
    if price > key_level and closes_below(key_level):
    false_break_count += 1
    mark_chart("False break #" + false_break_count)

    if false_break_count == 2:
    alert("Two false breaks confirmed. Real break likely.")
    enter_trade_on_third_break()
    false_break_count = 0
    ```
  • Rule 1: The first break above resistance is ALWAYS suspect. Do not take it.

  • Rule 2: The second break that fails (closes back below) confirms the level is weak.

  • Rule 3: The third break (or second consecutive close above) is the real trade.

  • Why it works: Institutional orders need liquidity from trapped breakout traders. Two false breaks exhaust that liquidity.


  • 4. Complete Manual Trade Workflow
    ```
    STEP 1 – Daily prep (15 minutes)
  • Mark key levels on daily and 4H: previous week's high/low, yesterday's high/low, round numbers

  • Identify 4H trend direction


  • STEP 2 – Monitor session (London-NY overlap only)
  • Wait for price to approach a key level from step 1

  • Check alignment: 4H trend matches direction (long in uptrend, short in downtrend)


  • STEP 3 – Entry trigger
  • See rejection candle or two-try false break pattern

  • Enter on candle close


  • STEP 4 – Management
  • Set hard stop loss immediately

  • First target: next key level (usually 1.5x-2x risk)

  • Second target: let run with trailing stop (ATR-based, moved after +1.5x ATR profit)


  • STEP 5 – Exit and log
  • Record trade in journal with screenshot

  • Note emotional state and whether all rules followed

  • ```

    5. The "No Indicator" Rule – Why It Works
    Indicators (RSI, MACD, moving averages) are derivatives of price. They will always lag. Price action is the raw data.
  • Backtest advantage: Pure price action systems overfit less because they have no parameters to optimize

  • Execution advantage: You see the signal in real-time, not after two bars of calculation delay

  • Edge source: Most retail traders rely on lagging indicators. You are trading the same data but faster


  • 6. Daily Timeframe Key Level Template
    Print this. Update every weekend.

    | Level Type | Level Value (price) | Strength (1-5) |
    |------------|---------------------|----------------|
    | Previous week high | | |
    | Previous week low | | |
    | Previous month high | | |
    | Previous month low | | |
    | Round number (e.g., 1.1000) | | |
    | 4H swing high (last 5 days) | | |
    | 4H swing low (last 5 days) | | |

    *Strength score: 5 = touched 3+ times, 4 = touched twice + round number, 3 = touched twice, 2 = once on high volume, 1 = once only*

    7. Common Manual Trading Errors
  • Chasing price: Entering after a 30-pip move without pullback → wait for retrace to value zone

  • Moving the stop loss: Widening stop after entry → violates discipline (see Part 3)

  • Taking profit too early: Exiting at first sign of opposite wick → let structure play out

  • Trading against 4H trend: 70% of your losses will come from counter-trend trades


  • 8. Next Step
    Part 8 covers trade journal and review system – the structured feedback loop that separates improving traders from stagnating ones.

    Reference:
  • Douglas, M. (2000). *Trading in the Zone*. Prentice Hall.

  • Coulling, P. (2013). *The Universal Principles of Successful Trading*. Wiley.