Health Factor
Introduction
Users can borrow against their supplied assets. All positions must be over-collateralized. The risk of a position can be understood through the Health Factor, which represents the combined collateral ratios of the borrowed assets.
Computation
The Health Factor is computed per account instead of per asset.
Each asset on Burrow has a configuration value collateral_factor
which indicates the expected price stability factor.
The higher the factor, the higher expectation of the stability of the price of the corresponding asset.
To compute the current health factor for the account, we need to know the current prices of all collateral and borrowed assets.
Firstly, we compute the adjusted sums of all collateral assets and borrowed assets.
adjusted_collateral_sum = sum(collateral_i * price_i * collateral_factor_i) adjusted_borrowed_sum = sum(borrowed_i * price_i / collateral_factor_i)
Now we can compute the health factor:
health_factor = adjusted_collateral_sum / adjusted_borrowed_sum
If the health factor is higher than 100%, it means the account is in a good state and can't be liquidated.
If the health factor is less than 100%, it means the account can be partially liquidated and can't borrow more without repaying some amount of the existing assets or providing more collateral assets.
Last updated