# Static Super Wide

## Basic Overview <a href="#basic-overview" id="basic-overview"></a>

The Static Super Wide Strategy is an incredibly simple design that mimics Uniswap V2 style price support with improved efficiency. Just a single position is made that is **very** wide. This width is fixed and is typically wider than necessary even in black swan type market movements. The goal of a strategy like this is to make the underlying asset ratio extremely predictable, so that pricing the LP token is consistent over time. This consistency is very helpful in bonding programs where the LP token is traded more for the underlying assets it represents.

## Ideal Applications <a href="#ideal-applications" id="ideal-applications"></a>

Markets where a V2 style distribution is desired, or for consistently predictable LP token share price for use in programs like Smart Bonds.

## Strategy Details <a href="#strategy-details" id="strategy-details"></a>

The Static Super Wide Strategy operates by creating a position centered on a provided center point and the width is defined as a percentage of the total feasible price range of the CLAMM.

## Technical Explanation <a href="#technical-explanation" id="technical-explanation"></a>

The Static Super Wide Strategy uses two main parameters in determining its positioning:

### Configuration Parameters <a href="#configuration-parameters" id="configuration-parameters"></a>

1. **Starting Tick**:
   * The center of the liquidity position
   * Often the current tick of the pool is used here, this is more to align the position on a grander scale to be in the right section of the feasible tick range.
2. **Percent of Max Range**:
   * a value 0 > n > 1 that represents the percent of the full range of ticks on the CLAMM
   * 0.5 is popular, but values as low as 0.16 are still extremely conservative for maintaining the asset ratio.

### What is the Max Range? <a href="#what-is-the-max-range" id="what-is-the-max-range"></a>

For most CLAMMs - Uniswap V3 and Algebra based pools - the price ratio of the two assets is tracked as a tick value. When a liquidity position is made the range is determined in these ticks. This gives the pool certain composable points to track accounting between. There is a limit to this tick range which goes from -887272 to 887272, or a 1 to ±3.4e38 price ratio. This price range is massive, and most token pairings will not use most of this range. A V2 style liquidity position would cover this whole range, however this is overkill given that the biggest lifetime price movements traverse roughly 8% of this range. Hence a position set to 16% of the max range would be able to support the entire rise of Bitcoin and the fall of Terra Luna simultaniously. This gives increased liquidity efficiency while maintaining a similar risk profile.

{% hint style="info" %}
Learn more about ticks in [Uniswap's V3 whitepaper](https://uniswap.org/whitepaper-v3.pdf)
{% endhint %}

## Implementation Considerations <a href="#implementation-considerations" id="implementation-considerations"></a>

* The strategy is static, while it is unlikely the price will leave the position range the possibility should be considered
* Narrower widths will result in higher fees earned, but increases risk by a small degree

## Alternatives <a href="#alternatives" id="alternatives"></a>

If the main goal is having a consistently priced asset there are other strategies that can provide similar results:

* Classic Rebalance: this might be a good option in large pools with plently of counter liquidity. This strategy can be configured incredibly wide to get a similar result
* Fluid Liquidity: this strategy can also be configured incredibly wide with the default position width, this with the full range sprawl option gan give similar results


---

# 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://docs.yfarmer.xyz/alm/modules/static-super-wide.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.
