Noon Barbari
Registrarse
Todos los artículos
conceptoPublicado ·7 min de lectura

Long vs short, explained: how shorting actually works (and breaks)

Going long is intuitive — buy low, sell high. Going short feels backwards until you see the borrow mechanics. Here is what shorting really is, what it costs, and the asymmetric risk that catches retail traders off guard.

En esta página

Long is easy — buy something, hope it goes up, sell at a higher price. Profit equals (sell − buy) × quantity. Most people understand long instinctively because it's how every other transaction in life works. Short is the operation that confuses retail traders for months, even though the maths is exactly the same with the signs flipped.

What a short actually is

A short is a bet that price will go down. Operationally, you borrow the asset from someone (the broker, or another trader), sell it immediately at the current price, wait for the price to drop, buy it back cheaper, and return it to the lender. Your profit is the difference between the price you sold at and the price you bought back at, minus borrow costs.

PnL of a long vs short on the same $1,000 position
Long $1,000 of BTC at $50,000  (0.02 BTC)
  BTC rises to $55,000 → sell, get $1,100 → +$100 (+10%)
  BTC falls to $45,000 → sell, get $900 → -$100 (-10%)

Short $1,000 of BTC at $50,000 (borrow 0.02 BTC, sell for $1,000)
  BTC falls to $45,000 → buy back for $900 → +$100 (+10%)
  BTC rises to $55,000 → buy back for $1,100 → -$100 (-10%)

Same maths, signs flipped. PnL = (entry − exit) × quantity for short.

Perpetual swaps: the crypto-native short

In crypto, almost no one actually borrows BTC to short it. Instead, exchanges run a derivative called the perpetual swap (perp). A perp is a contract that tracks the spot price, with no expiry, and lets you go long or short with the same UI. Going short on a perp is functionally identical to short-selling, but the borrow happens automatically inside the contract.

Perps stay anchored to spot via the funding rate — a periodic payment between longs and shorts. When longs dominate (price above spot), longs pay shorts. When shorts dominate, shorts pay longs. Funding is paid every 8 hours on most exchanges, usually 0.01-0.05% per period (so up to 0.15% per day, or 55% per year if it stays one-sided).

The asymmetric risk of shorting

A long has bounded downside (price can fall to zero, losing 100% of capital) and unbounded upside (price can rise without limit). A short flips this: bounded upside (price can only fall to zero, gaining 100%) and theoretically unbounded downside (price can rise without limit). On any single trade, that asymmetry rarely bites — but over many trades, the occasional 3× squeeze can wipe out a year of careful shorting profits.

Practical defence: shorts need tighter stops than longs in volatile markets. The right way to size a short is by maximum expected adverse excursion (the worst rally you can tolerate before getting out), not by potential downside. A 2× ATR stop on a short might be reasonable in a downtrend and suicidal in a sideways market where any reversal can spike 8% in a candle.

When shorting makes sense

  • Confirmed downtrend (lower highs and lower lows on the higher timeframe). Shorting in a confirmed downtrend has roughly the same edge as longing in a confirmed uptrend.
  • Mean reversion in a range. If price is at the top of an established range with overbought signals, shorting back to the mean has a measurable edge.
  • Pairs / market-neutral. Short one asset against a long position in a correlated one to harvest relative-value spreads without taking directional risk.
  • Hedging an existing long book. A short on BTC can hedge a long position in altcoins during a market-wide correction.

When shorts almost always lose money: trying to short a strong uptrend without a clear structural reason, fading every "too high" intuition, and shorting low-cap alts on hope. Strong uptrends in crypto can run 5×, 10×, 20× from "obviously overbought" before they stop.

Rule snippet for a short

rules.yaml — short the bounce in a confirmed downtrend
strategy:
  name: short_downtrend_bounces
  side: short
  indicators:
    - { id: swing, kind: SwingDetector, lookback: 5 }
    - { id: rsi,   kind: RSI, period: 14 }
  rules:
    entry:
      type: AND
      children:
        - { type: eq, left: swing.is_downtrend, right: 1 }   # HHs failing, LLs forming
        - { type: gt, left: rsi, right: 60 }                  # bounce to overbought
    exit:
      type: OR
      children:
        - { type: lt, left: rsi, right: 35 }                  # take profit
        - { type: gt, left: bar.close, right: swing.last_lower_high }  # structure broke
  risk:
    size_pct: 0.7
    stop_loss_atr: 2.5
    note: smaller size + tighter stop than the matching long strategy

Next steps

Shorting is much safer when sized properly — see the position sizing post for the maths. And leverage and margin covers what happens when shorts go wrong faster than expected.

Pruébalo con tus datos

Cada concepto de arriba está implementado en la plataforma. Backtest, walk-forward, paper trading, luego live — el mismo conjunto de reglas en cada etapa.

Lecturas relacionadas