Liquidity and positions

Relevant and important files:

  • base/Positions.sol

  • libraries/LiquidityMath.sol

  • libraries/TickManagement.sol

Definition of liquidity

As stated in the article about swap calculations, the internal state of the AMM Algebra at any moment is determined by two values:

P\sqrt P - the root of the current price of token1 relative to token0.

LL - liquidity.

A change in the current price in the pool (via swaps) entails the movement of tokens from / to the pool, with the number of tokens depending on a coefficient called liquidity. Formulas linking token deltas, price change and liquidity value:

ΔP=ΔY/L\Delta \sqrt P = \Delta Y / L

Δ1/P=ΔX/L\Delta 1 / \sqrt P = \Delta X / L

Thus, the liquidity LL can be defined as a coefficient that determines the "speed" of price change when tokens are swapped. Change of P\sqrt P (or 1/P1 / \sqrt P, depending on the direction of swap) is inversely proportional to liquidity. This means that the greater the liquidity, the more tokens need to be swapped to move the price by a given value.

Liquidity position

Algebra Integral is based on the concept of concentrated liquidity. This means that users can provide their tokens as liquidity for swaps at a certain price range. The following describes what this means and how the value of liquidity is related to tokens.

A liquidity position in Algebra Integral is an entity defined by the following parameters:

  1. Position owner

  2. Lower tick - the tick corresponding to the lowest price at which the liquidity of this position can be used

  3. The upper tick is the tick corresponding to the highest price at which the liquidity of this position can be used

  4. ΔL\Delta L - liquidity value associated with this position

The liquidity value associated with the position ΔL\Delta L adds to the global liquidity value when the position becomes active (price inside the specified tick range) and subtracted from the global liquidity value when the position becomes inactive (price outside the specified tick range). These changes take place during the swap on the crossing of position-related ticks.

Thus, the value ΔL \Delta L must ensure the fulfillment of the formulas from the liquidity definition section on the price range defined by the upper and lower tick of the position. Then the correlation between the number of tokens and ΔL \Delta L can be obtained as follows. Let:

Ptop\sqrt P_{top} - the price root value corresponding to the upper tick of the position.

Pbottom\sqrt P_{bottom} - the price root value corresponding to the lower tick of the position.

Pcurrent\sqrt P_{current} - the current value of the price root in the pool.

Note that during the upward price movement (oneToZero) the pool buys token1 (Y) and sells token0 (X). On the other hand, during the downward price movement (zeroToOne) the pool buys token0 and sells token1.

This means that a liquidity position must, on the one hand, provide enough token0 for the sale to move the price up to the Ptop\sqrt P_{top}, and, on the other hand, provide for sale a sufficient amount of token1 to move the price to Pbottom\sqrt P_{bottom} .

Correlation between the liquidity value and the amount of tokens

ТThen we can express the correlation between the number of tokens and ΔL \Delta L, if Pcurrent\sqrt P_{current} is inside the price range of the position:

ΔX=(1/Ptop1/Pcurrent)ΔL\Delta X = - (1 / \sqrt P_{top} - 1 / \sqrt P_{current}) * \Delta L

ΔY=(PbottomPcurrent)ΔL\Delta Y = - (\sqrt P_{bottom} - \sqrt P_{current}) * \Delta L

IfPcurrent\sqrt P_{current} is not inside the position's price range, the amount of tokens associated with the position must cover price movement in one direction only (depending on the position of the current price).

If the current price is higher than the upper price of the position ( PcurrentPtop\sqrt P_{current} \ge \sqrt P_{top} ):

ΔX=0\Delta X = 0

ΔY=(PtopPbottom)ΔL\Delta Y = - ( \sqrt P_{top} - \sqrt P_{bottom}) * \Delta L

If the current price is below the price range of the position ( Pcurrent<Pbottom\sqrt P_{current} \lt \sqrt P_{bottom} ):

ΔX=(1/Ptop1/Pbottom)ΔL\Delta X = - (1 / \sqrt P_{top} - 1 / \sqrt P_{bottom}) * \Delta L

ΔY=0\Delta Y = 0

Thus, when creating a position with the given ΔL\Delta L, Ptop\sqrt P_{top}, Pbottom\sqrt P_{bottom} user must provide ΔX\Delta Xtoken0 and ΔY\Delta Ytoken1, calculated according to the above formulas taking into account the current price in the pool.

On the other hand, when withdrawing liquidity, the user should receiveΔX\Delta Xtoken0 and ΔY\Delta Ytoken1, also calculated using the same formulas considering the current price and the change in ΔL\Delta L.

Fee distribution between liquidity positions

For swaps, the pool deducts a fee that is allocated to the currently active liquidity positions (positions whose liquidity is used for the swap).

Two accumulators of the following form are used for this purpose:

totalFeeGrowthToken0=Famountx/LtotalFeeGrowthToken0 = \sum F^x_{amount} / L

totalFeeGrowthToken1=Famounty/LtotalFeeGrowthToken1 = \sum F^y_{amount} / L

where Famount{x,y}F^{\{x, y\}}_{amount} - the collected amount of fees in token0 or token1, LL - the current global value of the fee.

During swap, each iteration of the main loop holds the commission in the input token and increments the value of the corresponding accumulator.

Thanks to this mechanism, it is easy to calculate the share of fees due to each liquidity position. With the help of the ticks mechanism, it is possible to know at any moment what parts of accumulators were added at the moment when the price was between two given ticks. The definition of accumulator increments within the tick range is described in more detail in the article about ticks.

The corresponding values of accumulators increment are recorded in the position when it was created, let's call them:

innerFeeGrowthToken0oldinnerFeeGrowthToken0_{old} - accumulator increment for token0 that occurred between specified ticks

innerFeeGrowthToken1oldinnerFeeGrowthToken1_{old} - accumulator increment for token1 that occurred between specified ticks

Then the amount of tokens that correspond to the share of the fees for a liquidity position can be calculated at any time:

Δfeesx=ΔL(innerFeeGrowthToken0newinnerFeeGrowthToken0old)\Delta fees_x = \Delta L *(innerFeeGrowthToken0_{new} - innerFeeGrowthToken0_{old})

Δfeesy=ΔL(innerFeeGrowthToken1newinnerFeeGrowthToken1old)\Delta fees_y = \Delta L *(innerFeeGrowthToken1_{new} - innerFeeGrowthToken1_{old})

This is followed by an update of innerFeeGrowthToken0oldinnerFeeGrowthToken0_{old} and innerFeeGrowthToken1oldinnerFeeGrowthToken1_{old}