Summary: Part 3 of a 10-part series. Concrete psychological tools for forex traders: post-loss cooldown timer, forced break rules, trade journal template, and a pre-commitment contract.




Title: Trading Psychology Part 3: Loss Recovery, Discipline and the Pre-Commitment Contract

"Keep your emotions under control" is useless advice. It tells you what to do, not how. This guide provides four mechanical tools that force disciplined behavior regardless of how you feel.

1. Tool 1 – The Post-Loss Cooldown Timer
After any losing trade, you cannot trade again until a timer expires.
  • Rule: Loss ≤ 1% of account → cooldown 15 minutes

  • Rule: Loss between 1% and 3% → cooldown 2 hours

  • Rule: Loss > 3% OR second consecutive loss → cooldown 24 hours

  • Implementation: Set a phone alarm. Do not disable it early. Use this time to review the losing trade without revenge impulses.


  • 2. Tool 2 – The Forced Break After Drawdown
    When your account hits a maximum drawdown threshold, the system forces a break.
    ```python
    # Forced break logic for trading psychology
    def check_drawdown_break(peak_equity, current_equity):
    drawdown = (peak_equity - current_equity) / peak_equity * 100
    if drawdown >= 8 and drawdown < 12:
    return "Reduce size by 50% for 5 trades"
    elif drawdown >= 12 and drawdown < 20:
    return "STOP trading for 48 hours. Review every trade."
    elif drawdown >= 20:
    return "STOP trading for 2 weeks. Return to demo only."
    else:
    return "Normal trading"
    ```

    3. Tool 3 – The Trade Journal Template (With Red Flag Section)
    A trading journal is useless if it only records prices. Use this structured format:

    | Field | Your Entry |
    |-------|------------|
    | Date & Time | |
    | Pair & Direction | |
    | Entry Price / Stop / TP | |
    | Pre-trade checklist passed? | Yes / No |
    | Emotional state before entry (1-5): 1=calm, 5=euphoric/fearful | |
    | Actual outcome | |
    | Red flags after trade | |
    | – Did I move my stop? | Yes / No |
    | – Did I add to a losing position? | Yes / No |
    | – Did I trade outside allowed hours? | Yes / No |
    | – Did I exceed daily trade limit? | Yes / No |

    *If ANY red flag is Yes, highlight the trade in red. Three red-flag trades in one week = stop trading for 1 week.*

    4. Tool 4 – The Pre-Commitment Contract
    Write this on paper. Sign it. Place it next to your trading screen.
    ```
    I, [NAME], agree to the following rules:

    1. I will risk no more than [1%] per trade.
    2. I will not add to a losing position. Ever.
    3. If I lose [3] trades in a row, I stop for [24] hours.
    4. If my drawdown reaches [15%], I stop trading for [1] week.
    5. I will review my trade journal every [Sunday] night.

    Violation penalty: [e.g., donate $100 to a cause I dislike]
    Signature: ______ Date: ______
    ```
  • Why it works: Pre-commitment separates your rational planning self from your future emotional self. The penalty creates accountability.


  • 5. The "Revenge Trading" Emergency Protocol
    Revenge trading (increasing size after a loss to "get it back") destroys accounts. If you feel the urge:
  • Step 1 – Close your trading platform immediately

  • Step 2 – Stand up and walk away for 30 minutes

  • Step 3 – Read your pre-commitment contract aloud

  • Step 4 – If still tempted, reduce leverage to 0.5x or switch to demo only for that day

  • Step 5 – Record the event in your trading journal under "emotional states"


  • 6. The Three Consecutive Losses Rule
    Losses are normal. Three in a row is a signal. Execute this exact sequence:
  • Trade 1 loss → normal

  • Trade 2 loss (consecutive) → reduce risk to 0.5% for next trade

  • Trade 3 loss (consecutive) → STOP. No trades for 24 hours. Review all three trades. Find one improvement.

  • After 24 hours → resume with 0.5% risk, not 1%


  • 7. Next Step
    Part 4 covers EA strategy principles – non-martingale logic, volatility-adaptive EAs, and robust code structure.

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

  • Steenbarger, B. (2003). *The Psychology of Trading*. Wiley.