> For the complete documentation index, see [llms.txt](https://docs.symm.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.symm.io/options-protocol-architecture/core-financial-concepts.md).

# Core Financial Concepts

### Options fundamentals

An option is a derivative contract that gives the buyer the right to buy or sell an underlying asset at a predetermined price (the *strike price*) by a set expiration date. The seller (the *writer*) is obligated to fulfil the contract if the buyer exercises.

**Option types:**

* **Call options:** the right to buy the underlying asset.
* **Put options:** the right to sell the underlying asset.

**Example:** A call option on 100 ETH with a $3,000 strike price gives the buyer the right to purchase 100 ETH at $3,000 by expiration. If ETH trades at $4,000 at expiration, the buyer's profit is:

```
profit = (4,000 - 3,000) × 100 = $100,000

```

#### Profit and loss (PnL)

PnL is the difference between the settlement (execution) price and the strike price:

* **Call options:** `PnL = (Settlement Price - Strike Price) × Quantity`
* **Put options:** `PnL = (Strike Price - Settlement Price) × Quantity`

The protocol settles balances between PartyA and PartyB from the calculated PnL, so the underlying assets never have to change hands.

### Collateral, liquidation, and solvency

A seller facing a large loss has an incentive to walk away from their obligation. Collateral guards against that: the seller must keep a minimum balance of a designated *collateral token* as a guarantee. For simpler accounting, Symmio uses that same collateral token to pay the option premium.

When a party falls below its collateral requirement, the [liquidation system](/options-protocol-architecture/technical-architecture/liquidation-system.md)

### Solvency requirements

#### PartyB solvency

#### PartyB must stay solvent against the *loss coverage rati*o, which sets the minimum collateral required relative to unrealized losses. With a 30% loss coverage ratio, for example, PartyB must hold collateral equal to 30% of its unrealized losses.

* **Effecti**v**e UPN**L`: effectiveUpnl = upnl > 0 ? upnl : (upnl * lossCoverage) / 1e18`
* <sup>Solvency check: balance + (effectiveUpnl \* 1e18) /</sup> collateralPrice ≥ 0

#### PartyA solvency

PartyA must hold enough *maintenance margin* to cover potential losses from its short positions when writing (selling) options.

Solvency check: (balance - totalMM) + (upnl \* 1e18) / collateralPrice ≥ 0, where totalMM is the total maintenance margin across all open positions.

### Protocol participants

#### PartyA (trader/user)

Initiates trading by creating and sending intents, and can be the buyer or the seller of an option. PartyA provides premium payments when buying, maintains maintenance margin when selling, and pays trading and affiliate fees.

#### PartyB (liquidity provider/market maker)

Responds to and fills trading intents, providing liquidity by taking the opposite side. PartyB must be whitelisted by PartyA to participate, and must maintain its solvency requirements.


---

# 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.symm.io/options-protocol-architecture/core-financial-concepts.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.
