## 주문 규칙
- 정수(whole-share) 단위의 주식 주문만 지원합니다. 소수점 단위 주식(fractional shares)은 주문하지 마십시오.
- side는 BUY, SELL, HOLD 중 하나입니다.
- BUY/SELL 주문은 quantity를 사용합니다. quantity는 실제 주문할 주식 수이며 1 이상의 정수입니다.
- BUY quantity는 order_budget, 현금 버퍼, 포지션 집중도, 현재가를 감안해 감당 가능한 수량만 입력하십시오.
- SELL quantity는 현재 보유 수량 이하만 입력하십시오.
- orders 배열에는 여러 종목의 주문을 넣을 수 있습니다. 거래가 필요 없으면 빈 배열 []로 반환하십시오.
- rationale은 사람이 읽는 주문 판단 요약문으로 작성하십시오. 1-2문장, 250자 이내로 제한합니다.
- 상세 thesis 근거는 rationale에 길게 쓰지 말고 thesis_core, supporting_factors, risk_factors, sizing_reason, invalidation_conditions, expected_outcome, time_horizon_days 필드에 구조화하십시오.
- supporting_factors[].type은 catalyst|event|indicator|metric|macro_factor|regime|strategy_tag|thesis|scenario 중 하나를 사용하십시오. 이 필드들은 thesis를 supports 하는 근거입니다.
- risk_factors[].type은 risk|event|macro_factor|regime|scenario|indicator|metric 중 하나를 사용하십시오. 이 필드들은 thesis에 risk_to 관계입니다.
- invalidation_conditions[].type은 risk|event|indicator|metric|macro_factor|regime|scenario|thesis 중 하나를 사용하십시오. 이 필드들은 thesis를 invalidates 하는 조건입니다.
- supporting_factors, risk_factors, invalidation_conditions의 evidence는 source-grounded relation triple 추출에 쓰이므로 해당 주문 판단 안에 명시된 짧은 근거 문구를 그대로 적으십시오.
- strategy_refs는 thesis lifecycle 판정과 이후 메모리 검색/분석에 쓰이며 판단 근거를 나타내는 추가 전략/이벤트 태그를 함께 넣을 수 있습니다.
- SELL 주문의 strategy_refs에는 아래 lifecycle ref 중 의미가 맞는 값을 최소 1개 포함하십시오.
  - thesis_invalidated: 기존 투자 thesis가 깨져서 매도/축소
  - thesis_realized: thesis가 실현되어 수익 실현
  - risk_reduction: thesis 파기보다는 리스크/집중도/이벤트 리스크 축소
  - rebalancing: 목표 비중 조정

## 출력 형식 (반드시 이 JSON 형식을 준수)
```json
{
  "explore_summary": "핵심 논리와 계획 요약",
  "orders": [
    {
      "ticker": "AAPL",
      "side": "BUY",
      "quantity": 1,
      "rationale": "AAPL 1주 추가 매수. 실적 성장 thesis가 유지되고 현재 현금/집중도 기준에서 감당 가능한 증액이다.",
      "thesis_core": "AAPL의 실적 성장 모멘텀이 중기 EPS 개선을 견인한다.",
      "supporting_factors": [
        {"label": "실적 성장 모멘텀", "type": "catalyst", "evidence": "실적 성장 모멘텀이 AAPL 매수 thesis를 지지한다."}
      ],
      "risk_factors": [
        {"label": "과도한 집중 리스크", "type": "risk", "evidence": "1주 증액은 과도한 집중 리스크 없이 성장 노출을 높이는 규모다."}
      ],
      "sizing_reason": "현재 sleeve 현금, order_budget, 기존 AAPL 보유 수량을 감안해 1주만 추가한다.",
      "invalidation_conditions": [
        {"label": "실적 성장 둔화", "type": "event", "evidence": "실적 성장 둔화는 AAPL 성장 thesis를 훼손한다."}
      ],
      "expected_outcome": "중기 EPS 개선",
      "time_horizon_days": 60,
      "thesis_confidence": 0.7,
      "strategy_refs": ["momentum", "earnings_growth"]
    }
  ]
}
```
