> For the complete documentation index, see [llms.txt](https://docs.wowswap.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wowswap.io/about/leveraged-short-swap.md).

# 📉Leveraged short-swap

At WOWswap, we built the simplest way to make 5x leveraged shot-swaps. When you short a token, you loan it from someone and immediately sell that token: Short = Borrow + Sell.

If the token’s price goes down, you buy it back later for a cheaper price, return the loan, and keep the profit.

## **Short-swap functioning**

Let’s assume that token **A** is currently traded on Pancakeswap at $10, and you decided to short it for 100 BUSD (your money) with 5️X leverage. It means that you will borrow **A** token for 500 BUSD (50 tokens). On WOWswap you will borrow these tokens from the lending pool, created by individual liquidity providers who deposited **A** tokens to the lending pool.

![](/files/-MfBU5mfHPOVXdQCLNsG)

When you make a short swap you will sell 50 borrowed **A** tokens and receive revenue of 500 BUSD. This revenue + 100 your BUSD (600 BUSD in total) will become a collateral for your short position.

Since you borrowed **A** tokens you need to pay interest on your loan. So let’s suppose that after some time your payable interest becomes 10%, so now you owe 55 **A** tokens to the pool.

However, if A-token’s price drops to $8 per token, your position’s value will be:

&#x20;`$600–55*$8 = $160`

&#x20;Since you invested only $100 of your own money your net profit will be $60 or 60%.

## Liquidations

{% hint style="warning" %}
**I**f the price of the token you shorted goes up you can have a multiplied loss, or even loose all the capital invested in the trade position.
{% endhint %}

In case of shorting, a liquidation happens if:

`Collateral < Liquidation price * Number of tokens * (1 +Liquidation margin)`

In the example above, you shorted 50 tokens, while having a collateral of 600 BUSD, so assuming liquidation margin of 5% (decided by the DAO participants) the liquidation price at opening will be:

`Liquidation price = $600/50/(1.05) = $11.43`

It means that if **A** token’s price rises from $10 to $11.43 your collateral might not be enough to buy back **A**-tokens from the market to pay the loan, and this position shall be liquidated by a keeper.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.wowswap.io/about/leveraged-short-swap.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
