5.6.4Asset Allocation & Rebalancing

Learn about rebalancing strategies

2,906 words13 min readdifficulty · medium1 backlinks

Core concept

Why it exists:

  1. Drift prevention: Market movements cause allocations to drift from targets
  2. Risk management: Prevents unintended concentration in volatile assets
  3. Discipline: Removes emotion from buy/sell decisions
  4. Return enhancement: Studies show modest improvement over never rebalancing (≈0.35-0.5% annually)

Rebalancing strategies (the decision frameworks)

1. Calendar-based (Time-triggered)

Derivation from first principles:

Start with a portfolio of NN assets. At time t=0t=0, you invest:

Vi(0)=wiVtotal(0)V_i(0) = w_i^* \cdot V_{\text{total}}(0)

After time Δt\Delta t, asset ii grows by return rir_i:

Vi(Δt)=Vi(0)(1+ri)=wiVtotal(0)(1+ri)V_i(\Delta t) = V_i(0) \cdot (1 + r_i) = w_i^* \cdot V_{\text{total}}(0) \cdot (1 + r_i)

Total portfolio value:

Vtotal(Δt)=i=1NwiVtotal(0)(1+ri)=Vtotal(0)i=1Nwi(1+ri)V_{\text{total}}(\Delta t) = \sum_{i=1}^{N} w_i^* \cdot V_{\text{total}}(0) \cdot (1 + r_i) = V_{\text{total}}(0) \sum_{i=1}^{N} w_i^* (1 + r_i)

New (drifted) weight of asset ii:

wi(Δt)=Vi(Δt)Vtotal(Δt)=wi(1+ri)j=1Nwj(1+rj)w_i(\Delta t) = \frac{V_i(\Delta t)}{V_{\text{total}}(\Delta t)} = \frac{w_i^* (1 + r_i)}{\sum_{j=1}^{N} w_j^* (1 + r_j)}

Why this step? The numerator is asset ii's new value; denominator is the new total. This shows mathematically how winners become overweight.

Calendar rebalancing: At predetermined trebalt_{\text{rebal}}, sell/buy to force:

wi(trebal+)=wiw_i(t_{\text{rebal}}^+) = w_i^*

Amount to transact in asset ii: ΔVi=Vtotal(trebal)(wiwi(trebal))\Delta V_i = V_{\text{total}}(t_{\text{rebal}}) \cdot (w_i^* - w_i(t_{\text{rebal}}^-))

Why this step? If ΔVi>0\Delta V_i > 0, you buy more of ii (it's underweight). If ΔVi<0\Delta V_i < 0, you sell (overweight).

Pros:

  • Simple, emotionless
  • Predictable (plan taxes, cashflow)
  • Low monitoring cost

Cons:

  • Ignores market volatility between dates
  • May rebalance when drift is tiny (wasted transaction costs)
  • May miss large drifts mid-period

2. Threshold-based (Drift-triggered)

Derivation:

Define the drift for asset ii:

di(t)=wi(t)wid_i(t) = w_i(t) - w_i^*

Absolute threshold: Trigger if di(t)>ϵabs|d_i(t)| > \epsilon_{\text{abs}} (e.g., 5 percentage points)

Relative threshold: Trigger if di(t)wi>ϵrel\frac{|d_i(t)|}{w_i^*} > \epsilon_{\text{rel}} (e.g., 25%)

Why this step? Absolute thresholds treat all drifts equally. Relative thresholds scale with the asset's importance (5% drift on a50% allocation is more significant than 5% drift on a 10% allocation).

Common choice: 5% absolute or 20-25% relative, whichever is stricter.

Pros:

  • Responsive to volatility
  • Avoids unnecessary trades
  • Empirically performs best in volatile markets

Cons:

  • Requires continuous monitoring
  • More complex to implement
  • Unpredictable timing (harder to tax-plan)

3. Hybrid (Time + Threshold)

Why this exists: Combines the discipline of calendar (predictable checks) with the efficiency of thresholds (trade only when needed).


Transaction mechanics

Amount to buy/sell

For asset ii in a portfolio of total value VV:

ΔVi=V(wiwicurrent)\Delta V_i = V \cdot (w_i^* - w_i^{\text{current}})

Why this formula?

  • Current value of asset ii: VwicurrentV \cdot w_i^{\text{current}}
  • Target value: VwiV \cdot w_i^*
  • Difference is what you need to trade

If ΔVi>0\Delta V_i > 0: Buy ΔVi\Delta V_i worth of asset ii
If ΔVi<0\Delta V_i < 0: Sell ΔVi|\Delta V_i| worth of asset ii


Tax considerations

Tax-loss harvesting opportunity: When rebalancing forces you to sell a loser, you can:

  1. Sell the position at a loss
  2. Immediately buy a similar (but not identical) asset to maintain allocation
  3. Offset gains elsewhere or carry forward the loss

Wash-sale rule: Can't buy a "substantially identical" security within 30 days before or after the sale. Solution: buy a similar ETF/fund (e.g., sell VTI, buy ITOT—both total market, different providers).


Frequency trade-offs


Common mistakes


Advanced: constant-proportion portfolio insurance (CPPI)

A dynamic strategy where you increase equity exposure as portfolio value rises:

Equity allocation=mVFV\text{Equity allocation} = m \cdot \frac{V - F}{V}

Where:

  • VV = current portfolio value
  • FF = floor (minimum acceptable value)
  • mm = multiplier (typically 2-3)

Why this exists: Provides downside protection (allocation drops as you approach floor) while capturing upside (allocation rises with gains).

Not a typical rebalancing strategy—included for completeness. Most retail investors should stick to calendar or threshold-based.


Practical decision framework

Choose calendar if:

  • You value simplicity and predictability
  • Your portfolio is <$100k (transaction costs are proportionally higher)
  • You can tax-loss harvest at rebalancing time

Choose threshold if:

  • Your portfolio is volatile (high-growth stocks, international exposure)
  • You have low/no transaction costs (many brokers now zero-commission)
  • You can monitor quarterly

Choose hybrid if:

  • You want the best of both
  • You're in accumulation phase (frequent contributions naturally rebalance)

Active recall practice

Recall Explain rebalancing to a 12-year-old

Imagine you have a candy jar with 60chocolates and 40 lollipops. Every day, some candies get eaten, but chocolates are more popular, so they disappear faster. After a week, you have 40 chocolates and 40 lollipops—now it's 50/50, not 60/40 like you wanted!

Rebalancing is like going to the store to buy more chocolates until you're back to 60/40. You're not trying to guess which candy will be popular tomorrow; you just want to keep your favorite mix.

In investing, some assets (like stocks) grow faster than others (like bonds). Rebalancing means selling some of the fast-growers and buying more of the slow ones to keep your risk level steady. It feels weird to sell winners, but it keeps your "candy mix" exactly how you like it!



Connections

  • 5.6.01-Define-asset-allocation-and-its-importance — Why we have target allocations in the first place
  • 5.6.02-Understand-different-asset-allocation-strategies — The specific allocations we're rebalancing toward
  • 5.6.03-Factors-influencing-asset-allocation-decisions — How risk tolerance and goals determine your thresholds
  • 5.8.01-Understand-tax-efficient-investingstrategies — Tax-loss harvesting during rebalancing
  • 3.4.02-Calculate-and-interpret-portfolio-returns — Measuring the benefit of rebalancing
  • 6.2.03-Implement-a-systematic-investment-plan — Dollar-cost averaging as a rebalancing mechanism

#flashcards/stock-market

What is rebalancing? :: The process of realigning portfolio asset weights back to a predetermined target allocation by periodically buying or selling assets to maintain the original or desired level of risk.

Name the three main rebalancing strategies :: (1) Calendar-based (time-triggered), (2) Threshold-based (drift-triggered), (3) Hybrid (scheduled checks + drift threshold)

In calendar rebalancing, when do you trade?
At fixed time intervals (monthly, quarterly, annually) regardless of how much the portfolio has drifted.
In threshold rebalancing, when do you trade?
Only when an asset's weight drifts beyond a tolerance band (e.g., 5% absolute or 20-25% relative to target).
What is the formula for calculating how much to buy or sell of asset i during rebalancing?
ΔVi=V(wiwicurrent)\Delta V_i = V \cdot (w_i^* - w_i^{\text{current}}) where V is total portfolio value, w* is target weight, w_current is actual weight
If stocks are 70% of your portfolio but target is 60%, do you buy or sell stocks?
Sell stocks (they're overweight). You'd sell enough to bring them back to 60% and use proceeds to buy underweight assets.
Why might you rebalance only annually instead of monthly?
Transaction costs (commissions, spreads, taxes) can exceed the benefit of more frequent rebalancing. Studies show annual is near-optimal for retail investors.
What is a common absolute threshold for rebalancing?
5 percentage points (e.g., rebalance if allocation drifts from 60% to 65% or 55%)
What is a common relative threshold for rebalancing?
20-25% of the target weight (e.g., for a 50% target, rebalance if it drifts beyond 50% ± 12.5% = 37.5% to 62.5%)
In a hybrid strategy, when do you rebalance?
At regular intervals (e.g., quarterly), but only if the drift exceeds a threshold. Combines predictability of calendar with efficiency of threshold.

Your portfolio is 200k:75%stocks(200k: 75\% stocks (150k), 25% bonds (50k).Targetis60/40.Howmuchdoyoutrade?:::Targetstocks:50k). Target is 60/40. How much do you trade? ::: Target stocks: 200k × 0.6 = 120k.Sell120k. Sell 30k stocks (150k150k - 120k). Target bonds: 200k×0.4=200k × 0.4 = 80k. Buy 30kbonds(30k bonds (80k - $50k).

What is the empirical annual benefit of rebalancing vs. never rebalancing?
Approximately 0.35-0.5% per year (Vanguard studies), primarily from risk reduction and volatility dampening.
Why is rebalancing NOT market timing?
You're not predicting future returns. You're mechanically restoring a predetermined risk level, which incidentally forces "buy low, sell high" as a side effect.
What is tax-loss harvesting in the context of rebalancing?
Selling losing positions during rebalancing to realize capital losses, which can offset gains elsewhere or be carried forward, while immediately buying a similar (not identical) asset to maintain allocation.
What is the wash-sale rule constraint?
You cannot buy a substantially identical security within 30 days before or after selling at a loss, or the loss is disallowed. Work around by buying a similar but different fund (e.g., different provider's index fund).

Concept Map

creates

realigns to

prevents

enforces

adds ~0.35-0.5% yearly

NOT

solved by

implemented via

option

resets at

derived from

computes

positive buys / negative sells

Portfolio drifts from target

Rebalancing problem

Rebalancing

Target allocation

Unintended risk concentration

Discipline buy low sell high

Return enhancement

Market timing

Rebalancing strategies

Calendar-based

Fixed intervals

Drifted weight formula

Transaction amount delta V

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Rebalancing ka matlab hai apna portfolio ka balance wapas target pe lana. Samjho tumhara plantha 60% stocks aur 40% bonds rakhne ka. Par stocks badh gaye, toh ab 75% stocks ho gaye—zyada risky ho gaya tumhara portfolio! Rebalancing mein tum kuch stocks bechte ho aur bonds khareedte ho taki wapas 60/40 pe aa jao. Ye market timing nahi hai, ye discipline hai. Tum automatically "winners becho, losers kharedo" kar rahe ho, aur apna risk level control mein rakh rahe ho.

Teen main strategies hain: (1) Calendar-based—har saal ya quarter mein fix time pe rebalance karo, chahe thoda sa hi drift ho; (2) Threshold-based—tab rebalance karo jab koi asset 5% ya zyada hatt jaye target se, bech mein kuch mat karo; (3) Hybrid—regular check karo (jaise quarterly) lekin trade tabhi karo jab threshold cross ho. Har strategy ka apna fayda hai. Calendar simple hai, predictable hai. Threshold efficient hai, sirf zaroorat padne pe trade karte ho. Hybrid dono ka best hai—discipline bhi, aur unnecessary trades se bachte bhi.

Zyada frequent rebalancing (jaise daily ya weekly) galti hai—transaction costs aur taxes tumhara fayda kha jayenge. Studies dikhati hain ki annual rebalancing ya5% threshold best hota hai most investors ke liye. Aur bull market mein jab stocks bahut upar hain, tab rebalancing mat chhodo—wahi time hai jabki tumhe winners bechke risk control karna chahiye. Emotions ko side mein rakho, apni strategy pe tike raho.

Rebalancing ka maximum benefit ye hai ki tumhara risk constant rahta hai, aur long-term mein thoda better return bhi mil sakta hai (studies mein 0.4-0.5% per year). Ye chhota lag sakta hai, par 20-30 saal mein compound hoke bada farak padta hai. Sabse important—ye tumhe disciplined rakhta hai, emotions se door, aur apne original plan ke saath aligned.

Test yourself — Asset Allocation & Rebalancing

Connections