import json
import datetime

with open('data_693_696.json', 'r') as f:
    data = json.load(f)

print("\n--- Candidate 1: 2026-06-23T22:15:00Z (Short) ---")
for b in data['m30']:
    t = b['time']
    if isinstance(t, int) or isinstance(t, float):
       if t > 20000000000: t = t/1000
       t = datetime.datetime.utcfromtimestamp(t).strftime('%Y-%m-%dT%H:%M:%SZ')
    if "2026-06-23T18:00:00Z" <= t <= "2026-06-23T23:00:00Z":
        print(f"M30: {t} O:{b['o']} H:{b['h']} L:{b['l']} C:{b['c']}")

print("\n--- Candidate 2: 2026-06-24T01:30:00Z (Short) ---")
for b in data['m30']:
    t = b['time']
    if isinstance(t, int) or isinstance(t, float):
       if t > 20000000000: t = t/1000
       t = datetime.datetime.utcfromtimestamp(t).strftime('%Y-%m-%dT%H:%M:%SZ')
    if "2026-06-23T23:30:00Z" <= t <= "2026-06-24T03:00:00Z":
        print(f"M30: {t} O:{b['o']} H:{b['h']} L:{b['l']} C:{b['c']}")
