# Borrowing against a liquidity position without closing it

> A Uniswap range is an asset worth borrowing against. Two operations put one in a vault and lend you money, with the position left earning fees throughout.

- Source: https://defiloops.com/blog/borrowing-against-a-liquidity-position-without-closing-it
- Published: 2026-09-16
- Category: Strategy
- Tags: uniswap, lending, leverage, liquidity
- Author: DeFiLoops

---
You need money and you own a liquidity position. The obvious move is to close it, which costs
you the fee income, books whatever the range has done to your ratio, and leaves you to rebuild
later at a price you cannot predict.

The position is an asset. You can borrow against it and leave it where it is.

## Two operations

<Spec rows={[
  ['Deposit and borrow', 'Moves a position you already hold into the vault and borrows against it in the same step. The borrow is optional — leave it out and the position is deposited, ready to borrow against later'],
  ['Borrow more', 'Draws further against a position already in the vault. The amount is required here, because nothing else in the step could say how much'],
]} />

That second detail is a small piece of design worth noticing. The step's own amount field is
carrying the position's identifier, so it cannot also carry a size — which means the borrow
amount has to be stated explicitly. A borrow of zero would be a transaction that did nothing,
so it is not treated as a default.

<Callout type="note" title="The proceeds land on your account">
  This is cash out, not leverage. The borrowed money arrives in your account and what happens
  next is your decision. If you want it working inside the position instead, that is
  [a different operation](/blog/adding-leverage-to-a-position-you-already-have).
</Callout>

## What the position keeps doing

It stays in the pool. It keeps collecting fees. The range is unchanged and the liquidity is
unchanged; the only new fact is a claim against it.

That is the entire argument for doing this rather than selling. A liquidity position that is
working has a return you stop receiving the moment you close it, and you cannot get back into
the same position at the same price by deciding to later.

## The cost of the debt

Two costs, and only one is the interest rate.

- **Interest**, continuously, on what you drew.
- **Everything else becomes harder.** Once there is debt against the position, collecting the
  fees, adding liquidity, moving the range and splitting it each require the debt to be cleared
  first — which is why they are all flash-funded operations here. That cost is invisible until
  you try to do routine maintenance and find it is
  [no longer routine](/blog/collecting-fees-you-have-already-earned-requires-borrowing-money).

## Which asset

The borrow asset determines which vault market you are in, and a different symbol is a
different market rather than a setting inside one. Choosing it is choosing where the position
lives, not just what arrives in your account.

<Callout type="warn" title="Deposit without borrowing is a real option">
  Leaving the borrow amount out deposits the position and lends you nothing. That is a
  perfectly sensible thing to do — it puts the position somewhere it can be borrowed against
  later without another decision about size today.
</Callout>