Price, tick index and sqrt price correlation calculation
What's difference between price, tick index and sqrt price?
Price
Token exchange ratio (e.g., token1/token0
)
Continuous value, updates in real-time
Directly determines trading rates
Tick Index
Discretized price interval index
Spacing determined by fee tiers
Manages liquidity distribution ranges
Sqrt Price
Square root of price
Stored as fixed-point numbers (e.g., sqrtPriceX64
)
Simplifies on-chain calculations, improves efficiency
Notes:
Price: Represents the real-time ratio between two tokens (e.g., ETH/USDC).
Tick Index:
Derived from
P = 1.0001^i
, wherei
is the Tick Index.Liquidity can only be provided at discrete Ticks (e.g., multiples of 10).
Sqrt Price:
Used for computational efficiency (avoids floating-point operations).
In Uniswap V3, stored as
sqrtPriceX64
(Q64 fixed-point format).
1. Tick index to price
when you want to open position, you dont know how to set your tick_lower and tick_upper.
use /src/math/tick.ts TickMath.
tickIndexToPrice()
2.Price to tick index
use /src/math/tick.ts TickMath.priceToTickIndex()
3. Tick index to sqrt price x64
use /src/math/tick.ts TickMath.tickIndexToSqrtPriceX64()
4. Sqrt price x64 to tick index
use /src/math/tick.ts TickMath.sqrtPriceToTickIndex()
5. Price to sqrt price
use /src/math/tick.ts TickMath.
priceToSqrtPriceX64()
6. Sqrt price to price
use /src/math/tick.ts TickMath.sqrtPriceX64ToPrice()
7. Convert the tick index from i32 to u32
In the TS SDK, for easier display, we will convert u32 to i32. If you need to call the contract directly, you can also use the method below to convert i32 to u32.
Last updated