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.
2. The Setup – Key Level Rejection
This is the highest-probability manual entry without indicators.
``
Setup rules for LONG (sell setup is symmetrical):
Identify a key support level (previous swing low, round number, or 4H consolidation low)
Price approaches the level but does NOT close below it
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
Entry: At the close of the rejection candle + 2 pips
Stop loss: 5 pips below the rejection candle's low OR 1.5x ATR(14)
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.
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
8. Next Step
Part 8 covers trade journal and review system – the structured feedback loop that separates improving traders from stagnating ones.
Reference: