# Terminology

* **Pool:** Vessel’s AMM pool consists of two assets, the base asset and the quote asset, aligning with trading pair terminology. For example, in an ETH/USDT pool, ETH is the base asset while USDT is the quote asset.
* **Tick:** A tick represents discrete prices used in the AMM pool. Each pool is instantiated with a predefined set of ticks that remain unchanged throughout its lifecycle. In Vessel, ticks are defined in an arithmetic sequence, represented as a tuple $$\<Tick\_0, TotalTicks, TickSpacing>$$:

  ▪ $$Tick\_0=MinPrice$$

  ▪ $$Tick\_i=Tick\_0+TickSpacing \times (i-1), 0 \le i < TotalTicks$$
* **Interval:** An interval is the minimal divisible price range in the AMM pool. $$Interval\_i$$ covers the price range $$\[Tick\_i, Tick\_{i+1}]$$, managing buy orders at $$Tick\_i$$ and sell orders at $$Tick\_{i+1}$$.
* **Liquidity:** Liquidity is the total size in base asset of orders managed by the AMM within a specific range. The liquidity of $$Interval\_i$$ is the sum of buy order sizes at $$Tick\_i$$ and sell order sizes at $$Tick\_{i+1}$$. The pool's total liquidity is the sum across all intervals.
* **Position:** A position indicates how an LP provides liquidity within a specific range, defined by $$\<Tick\_L, Tick\_R,L>$$, covering $$\[Tick\_L, Tick\_R]$$, with $$L$$ liquidity in each interval.


---

# Agent Instructions: 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:

```
GET https://vesselfinance.gitbook.io/vessel/vaelob/terminology.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
