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.
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: ______
```
5. The "Revenge Trading" Emergency Protocol
Revenge trading (increasing size after a loss to "get it back") destroys accounts. If you feel the urge:
6. The Three Consecutive Losses Rule
Losses are normal. Three in a row is a signal. Execute this exact sequence:
7. Next Step
Part 4 covers EA strategy principles – non-martingale logic, volatility-adaptive EAs, and robust code structure.
Reference: