import json

results = {
    "results": [
        {
            "candidate_id": "candidate_2026-07-08T04-00-00Z_long_liquidity_sweep_reversal",
            "timestamp": "2026-07-08T04:00:00Z",
            "decision": "needs_more_context",
            "reason": "At 04:00, M5 pushes down slightly then chops around 4124. M30 03:30 closed bearish at 4123.55 inside H4 01:00 wick. No clear structure shift or Fib entry evidence for a Long yet. H4 05:00 proceeds to dump massively.",
            "htf_context": "H4 01:00 wick high 4131, price retracing.",
            "m30_structure": "Bearish close at 03:30, no bullish structure.",
            "m15_m5_execution": "M5 chop with slight downward pressure at 04:00, no MSS.",
            "entry": None,
            "stop": None,
            "target": None,
            "r": None,
            "promoted_to_journal": False
        },
        {
            "candidate_id": "candidate_2026-07-08T11-45-00Z_short_liquidity_sweep_reversal",
            "timestamp": "2026-07-08T11:45:00Z",
            "decision": "needs_more_context",
            "reason": "At 11:45, M5 surges bullishly from 4064 to 4072. M30 11:30 is a strong bullish candle (C:4062.33). Recommending short against strong momentum without clear MSS. Needs deeper manual review.",
            "htf_context": "H4 09:00 recovering from massive dump.",
            "m30_structure": "Bullish momentum at 11:30.",
            "m15_m5_execution": "M5 strong bullish push at 11:45.",
            "entry": None,
            "stop": None,
            "target": None,
            "r": None,
            "promoted_to_journal": False
        },
        {
            "candidate_id": "candidate_2026-07-08T12-00-00Z_long_liquidity_sweep_reversal",
            "timestamp": "2026-07-08T12:00:00Z",
            "decision": "needs_more_context",
            "reason": "At 12:00, M5 pulls back slightly to 4064 then rallies to 4075 by 12:15. While directionally correct, entry criteria (Fib 50/62 + PD array) and exact stop/target are not evident from raw OHLCV alone. Keeping conservative.",
            "htf_context": "H4 09:00 bullish recovery.",
            "m30_structure": "Bullish structure forming.",
            "m15_m5_execution": "M5 rally continues after slight pullback at 12:00.",
            "entry": None,
            "stop": None,
            "target": None,
            "r": None,
            "promoted_to_journal": False
        }
    ]
}

with open('/home/aryy/.hermes/profiles/finance/backtests/xauusd_2026/hybrid/reviews/manual_replay_results/replay_result_00763_00766.json', 'w') as f:
    json.dump(results, f, indent=2)

