> For the complete documentation index, see [llms.txt](https://docs.amoeba.farm/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.amoeba.farm/trading/01-about-capped-options.md).

# About Capped Options

Amoeba Farm starts with capped options because hardware input markets are not ideal for liquidation-heavy products.

Hardware prices can update slowly, change in jumps, or require evidence windows. A capped monthly option lets the user know the maximum loss and maximum payout before entry.

## The Basic Idea

A capped option pays from a market movement, but only up to a defined maximum.

For a buyer, the key questions are:

* What market am I trading?
* What month or expiry?
* What direction?
* What premium do I pay?
* What is my maximum loss?
* What is my maximum payout?
* When does it settle?

## Why the Cap Matters

The cap makes the risk easier to inspect.

Buyers know the most they can lose. Writers know the worst-case payout they are backing. The market does not need to pretend that hardware input prices can support constant liquidation checks.

## Spreads

A call spread is a common way to implement a capped upside view. A put spread is a common way to implement a capped downside view.

In both cases, the product should show the user the bounded risk before confirmation.

## Tiny Example

A RAMX call spread might show:

| Field          | Example        |
| -------------- | -------------- |
| Market         | RAMX           |
| Expiry         | August monthly |
| Direction      | Upside         |
| Premium paid   | 10 USDC        |
| Maximum loss   | 10 USDC        |
| Maximum payout | 50 USDC        |
| Liquidation    | None           |

Those numbers are examples only. A live trade preview should show the actual premium, fees, maximum loss, maximum payout, and settlement date before the user confirms.

## Settlement

At expiry, the contract uses the published oracle result and the product's payoff rule.

The oracle computes the market movement. The contract computes the payout.


---

# 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.amoeba.farm/trading/01-about-capped-options.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.
