> For the complete documentation index, see [llms.txt](https://docs.force.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.force.xyz/perp-mechanics/external-price.md).

# External Price

The **external price** is a separate value, submitted alongside the oracle and mark prices, equal to the last price an external market actually set.

| Session      | External price                                                                       |
| ------------ | ------------------------------------------------------------------------------------ |
| **Cash**     | Equal to the oracle price                                                            |
| **Extended** | Equal to the oracle price                                                            |
| **Internal** | **Frozen** at the last externally priced value, while the oracle advances on its own |

Cash and Extended are both external sessions: a real market set the price, so the external price and the oracle price are the same number. They separate only in Internal, when no market is open and the oracle is advancing on the order book alone.

## What it is used for

**It bounds the mark price.** This is the important one. The mark price is restricted to within **±(1 / max leverage)** of the external price, so for a market with 20x maximum leverage the mark cannot sit more than 5% away from the last price a real market set.

| Market       | Max leverage | Mark bound around the external price |
| ------------ | ------------ | ------------------------------------ |
| FORCE-US10Y  | 20x          | ±5%                                  |
| FORCE-MORT30 | 10x          | ±10%                                 |

The bound matters most exactly where it is most needed. During Internal the external price is frozen, often for a whole weekend, so the bound is anchored to Friday's close and does not drift with the book. A trader who pushes a thin weekend book can move the oracle only within that band, no matter how far they push. It is the structural limit on low-liquidity manipulation, and it complements the [internal EMA](/perp-mechanics/oracle-price.md), which makes the oracle slow to move at all.

A consequence worth knowing: if a position's liquidation price falls outside the active bound, that position cannot be liquidated while the bound is in effect.

**It separates observed from derived.** The venue can always tell the difference between a price a market set and a price the oracle produced in the absence of one, without inspecting the session stamp.

{% hint style="info" %}
Force computes and submits the external price. The bound itself is enforced by Hyperliquid, not by the Force oracle. See Hyperliquid's HIP-3 documentation for how the exchange applies it.
{% endhint %}


---

# 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.force.xyz/perp-mechanics/external-price.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.
