Missing historic data for AAN

There seems to be missing historic OHLCV data for AAN (“The Aaron’s Company, Inc.”) after 2024-10-03, is there a wider issue?
Thanks
Jim

Hey :wave:

AAN had a cash merger on 2024-10-03 so it hasn’t been traded since then.

You can check this on the corporate actions endpoint:

$ curl -s -H "APCA-API-KEY-ID: ${APCA_API_KEY_ID}" -H "APCA-API-SECRET-KEY: ${APCA_API_SECRET_KEY}" \
"https://data.alpaca.markets/v1/corporate-actions?symbols=AAN&types=cash_merger&start=2024-10-01" | jq .
{
  "corporate_actions": {
    "cash_mergers": [
      {
        "acquiree_symbol": "AAN",
        "effective_date": "2024-10-03",
        "payable_date": "2024-10-15",
        "process_date": "2024-10-03",
        "rate": 10.1
      }
    ]
  },
  "next_page_token": null
}