Why Most Traders Size Positions Wrong
Most traders pick a position size before they define their risk. They decide to "put $500 on this trade" or "use 10x leverage" without ever calculating how much they actually stand to lose if the trade goes against them.
This leads to three common mistakes: using a fixed dollar amount regardless of stop distance, applying a percentage of equity without accounting for the gap between entry and stop, and selecting leverage first then sizing around it.
All three approaches share the same flaw — they treat position size as an input. In reality, position size is the output of a risk equation. The inputs are your account equity, your risk tolerance per trade, and the distance between your entry price and your stop loss.
Many traders search for a "position size calculator," but the real question is: how much can you lose if you're wrong — and can your stop execute before liquidation? This guide applies to any market. The examples use leveraged crypto futures because leverage introduces liquidation risk — the one scenario where incorrect sizing does not just cost money, but can wipe your entire margin.
Position size is the output of a risk equation, not an input. You define how much you can afford to lose, then the math tells you how large the position should be.
The 1% Risk Formula (With Example)
The foundation of position sizing is the fixed-fractional risk model. You decide what percentage of your account equity you are willing to lose on any single trade — typically 0.5% to 2%. This is your risk fraction.
Two formulas do the work. First, compute your risk budget in dollars. Then divide that budget by the absolute distance between your entry price and stop loss to get the position size in base units.
This works for spot markets where there is no leverage. In leveraged markets, the true complexity appears when you add multi-TP exits and candle-close stops — because your risk boundary and fees are no longer single-step.
R$ = A × r
- R$
- Risk budget (dollars you can lose)
- A
- Account equity
- r
- Risk fraction (e.g. 0.01 for 1%)
Q = R$ / d_abs
- Q
- Position size (base units)
- R$
- Risk budget
- d_abs
- Absolute distance |entry − stop| in price units
BTC Long — Spot, No Leverage
The Leverage Trap
Leverage does not change your position size — it changes how much margin (collateral) the exchange requires to open the position. But it introduces a critical danger: the liquidation threshold.
At every leverage level, there is a price zone where your margin is consumed and the exchange force-closes your position. The higher the leverage, the closer this zone sits to your entry. If the liquidation threshold is closer to your entry than your stop loss, you'll be liquidated before your stop can execute.
This is the leverage trap. At extreme leverage, the gap between entry and liquidation can be smaller than a single candle wick. Professional risk managers define leverage as a function of stop distance — not the other way around.
Liquidation room ≈ 1 / L (as a fraction of price)
- Intuition
- At 10x, you have roughly 10% room. At 50x, roughly 2%. At 100x, roughly 1%.
In isolated margin, liquidation distance shrinks in proportion to 1/L. Exact liquidation prices vary by exchange and depend on maintenance margin rate, funding fees, and position tier. StratPilot adds a safety buffer on top of this relationship to keep your stop well ahead of the liquidation zone.
BTC Long at 50x — Stop Behind the Liquidation Zone
At 50x leverage, a move of roughly 2% against you is enough to consume your margin in a simplified model. Most traders who "use 50x" do not realize their stop loss is behind the liquidation wall.
Liquidation vs Stop Loss
There are three ways a position can close at a loss: your hard stop triggers (a limit or market order at a fixed price), a candle-close stop triggers (you exit manually when a candle closes beyond a level), or the exchange liquidates you when margin is consumed.
Only the first two are under your control. The third happens when your leverage is too high relative to your stop distance. The solution is a safety buffer parameter (b_liq) that ensures a minimum gap between your stop loss and the liquidation zone.
The formula below inverts the liquidation relationship to find the maximum safe leverage given your stop distance and desired buffer. In plain terms: choose leverage so that liquidation sits at least b_liq beyond your stop. Any leverage above this ceiling risks liquidation before your stop.
S_ref is your true risk boundary — the price where your position will actually exit. If you use an emergency hard stop, S_ref is that hard stop price. If you only have a simple stop, S_ref is the stop price. If your strategy uses candle-close exits without a hard stop, you must define an emergency stop first — candle-close levels are not risk boundaries.
L_max = 1 / (1 − (S_ref / E) × (1 − b_liq))
- L_max
- Maximum safe leverage
- S_ref
- Risk boundary stop (hard stop or emergency stop — not a candle-close level)
- E
- Entry price
- b_liq
- Safety buffer (e.g. 0.002 = 0.2% gap between stop and liquidation)
| Leverage | Approx Liquidation (Long) | Stop at $65,890 | Safe? |
|---|---|---|---|
| 10x | ~$60,516 | ~$5,374 buffer | Safe |
| 20x | ~$63,878 | ~$2,012 buffer | Safe |
| 50x | ~$65,895 | Behind stop | Liquidated |
Always calculate the maximum leverage without liquidation risk before choosing a leverage level. Let the math set the ceiling — not the exchange slider.
Why Tight Stops + Fees Kill Expectancy
The basic position sizing formula ignores trading fees. On a wide stop, fees are a rounding error. But on a tight stop — especially with leveraged futures — fees can consume 20% to 40% of your risk budget.
The fee-adjusted formula accounts for both entry and exit fees. It reduces your position size so that the total cost (stop-loss gap plus fees) stays within your risk budget. Slippage is treated the same way — it widens the effective risk distance.
The tighter your stop, the more each dollar of fees cuts into your risk-to-reward ratio. A trade with a 2R target on paper might be 1.4R after fees. Over hundreds of trades, that difference destroys expectancy.
Note: entry can be maker or taker depending on order type (limit vs market). Stops always execute as taker orders. The formula uses separate rates so you can model both.
Q = R$ / (d_abs_eff + E × (f_entry + f_exit))
- Q
- Fee-adjusted position size
- d_abs_eff
- Effective distance (including slippage)
- E
- Entry price
- f_entry
- Entry fee rate (maker or taker)
- f_exit
- Exit fee rate (taker at stop)
d_abs_eff = d_abs + 2 × slippagePrice
- d_abs_eff
- Effective risk distance
- d_abs
- Raw stop distance
- slippagePrice
- E × (slippageBps / 10,000)
Fees Shrinking R-Multiple
The tighter your stop, the more fees eat your edge. Always use fee-adjusted position sizing — especially on leveraged futures with taker fees.
Emergency Stops for Candle-Close Strategies
Many strategies use candle-close stops: "exit if the 4H candle closes below $65,890." This means you do not have a hard stop resting on the exchange. Between candle closes, price can wick far beyond the level you intended to exit.
If you size your position and calculate leverage based on the candle-close level, a wick can push price past the liquidation threshold before the candle closes. You get liquidated on a wick that would have recovered.
The solution is an emergency hard stop placed below the candle-close level by an ATR-based buffer. This emergency stop catches wicks while still respecting the candle-close logic for normal exits. Your leverage math must reference this hard stop, not the candle-close level.
S_em = S_candle − (k_atr × ATR) [long]
- S_em
- Emergency hard stop price
- S_candle
- Candle-close stop level
- k_atr
- ATR multiplier (e.g. 1.5)
- ATR
- Average True Range on the strategy timeframe
Your liquidation math must reference the hard (emergency) stop, not the candle-close level. The candle-close level is a decision trigger — the emergency stop is the risk boundary.
Advanced Position Sizing: Multi-TP + Candle-Close Stops
If you take partial profits at TP1, TP2, and TP3, your remaining size changes after each exit, your effective R distribution shifts, and fees apply on every leg — not just once.
If your strategy uses a candle-close stop, that level is a decision trigger, not a risk boundary. The true risk boundary is the emergency hard stop. Your leverage ceiling must be calculated from that emergency stop — otherwise you can be liquidated on an intra-candle wick even when the candle later closes "safe."
This is where spreadsheet sizing breaks — and where oversizing happens without you noticing.
Multi-TP + Emergency Stop Scenario
Why it's hard
- –Risk boundary is $65,650, not $65,890
- –Fees are charged on entry + each partial exit
- –Remaining position changes after each TP
- –Safe leverage is based on the worst-case wick + slippage path
What StratPilot computes automatically
- –Fee-adjusted total position size
- –TP quantities per level
- –Realized R per TP after fees
- –Max safe leverage + liquidation buffer from emergency stop
Position sizing is not a tactic — it's survival. Leverage compresses your margin for error. If your stop sits behind liquidation, your strategy never gets a chance to work. Discipline begins with math.
Calculate position size for multi-TP + candle-close stops — automatically.
StratPilot sizes your position from the true risk boundary (emergency stop), splits quantities across take-profits, and applies fees to every leg.