> For the complete documentation index, see [llms.txt](https://docs.socialhood.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.socialhood.app/terminal-launchpad/trading.md).

# Trading & Live Data

The Terminal's token pages are built to feel like a trading terminal, not a webpage that happens to show numbers.

## Realtime, not "refresh-time"

* **Trades stream in over WebSocket** — every swap on the pool is pushed to your screen sub-second, not polled every few seconds. No lag, no gaps.
* **The chart is live** — the price line moves the moment a trade lands.
* **Trade history** loads instantly from the chain's indexer with real timestamps: side (BUY / SELL), trader, size in the pair currency, and age.
* **Holders** shows the top holders with their share of supply, refreshed continuously.

## Buying & selling

The buy/sell panel trades through the public Uniswap SwapRouter — the same route every bot uses:

* **Buy**: pay in ETH; the route hops through the pair automatically (e.g. `ETH → USDG → AAPL → token` for a stock-paired launch). One transaction.
* **Sell**: the reverse route, and you receive **native ETH** back — no WETH stuck in your wallet. One transaction (plus a one-time approve).

During a token's first \~5 minutes the [anti-sniper limits](/terminal-launchpad/fair-launch.md) apply — trades that would push a wallet over 5% of supply revert.

## Token info, all onchain

Contract address, pair, LP status, airdrop terms, and the anti-sniper policy are displayed from chain state. If the page says LP is locked, that's not a promise — it's a read.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.socialhood.app/terminal-launchpad/trading.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
