> For the complete documentation index, see [llms.txt](https://pacifica.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pacifica.gitbook.io/docs/api-documentation/api/api-faq/delayed-account_positions.md).

# Delayed account\_positions

**Question:**\
My `account_positions`/`account_orders` updates are sometimes delayed. What should I do to reliably construct a local state based on Pacifica's WS feeds?\
\
**Answer:**\
`account_positions` and `account_orders` are snapshot-driven channels. They show your current state but can be delayed under high load.\
\
For real-time updates with no delay, use our event-driven channels:

* `account_trades` - update on every fill as it happens
* `account_order_updates` - update on every order state change

We recommend using our snapshot-driven channels for initialization/checks, and our events-driven channels to construct a real-time local state.
