Skip to content
Published on

Wealth Management & Private Banking 2026 — UBS, Morgan Stanley, JP Morgan PB, BofA Merrill, Citi PB, Pictet, Julius Baer, Shinhan PB, MUFJ PB Deep Dive

Authors

Prologue — The Weight of UBS $5T and Korea Wealth Transfer

Sunday evening, 19 March 2023, the Swiss federal palace in Bern. When Finance Minister Karin Keller-Sutter announced "Credit Suisse can no longer exist independently," everyone in the room realized that UBS Group AG would become the single center of gravity for global wealth management. By early 2026 the merged UBS Global Wealth Management runs $5T+. No single financial institution has ever managed HNWI assets at this scale.

In the United States, Morgan Stanley Wealth Management took overall first place with $5.5T+ AUM. The 2020 E*TRADE acquisition and the 2021 Eaton Vance integration put retail brokerage, asset management, and PB under one roof. JP Morgan Private Bank accepts only $10M+ HNWI and runs $3T. Bank of America Merrill Lynch Wealth at $3.8T has the largest advisor headcount, Goldman Sachs Private Wealth Management at $1T+ focuses on UHNWI ($30M+), and Citi Private Bank connects affluent families across 60 countries as the cross-border PB standard.

Switzerland is still the European PB pinnacle. Pictet (founded 1805 in Geneva) is a seventh-generation partnership running $700B+, Lombard Odier (1796) is the oldest private bank still operating in its original partnership form, Julius Baer ($500B+) is the only listed Swiss PB, and Edmond de Rothschild is a living museum of family capitalism.

By 2026 in Korea, baby-boomer assets are transferring to the next generation in a true great wealth transfer. Statistics Korea projects about 2,500 trillion won of assets will move via inheritance and gifting over the next two decades. Shinhan PWM, KB Gold and Star, Woori Doore PB, Hana Club1, NH WM, Samsung Securities SNI, Mirae Asset PB, and Korea Investment PB share a 30 trillion won+ market.

Japan has household financial assets of 2,100 trillion yen (about $14T), of which HNWI ($1M+) holdings are estimated at $7T. Mizuho PB, SMBC PB, MUFG PB, Nomura PB, and Daiwa PWM serve a 2-million-strong HNWI market. With the 2024 new NISA launch, integrated PB-NISA-iDeCo advisory is now a core product set.

This piece maps the territory: HNWI and UHNWI definitions, new allocation standards (alternatives 25-40%), family office structures, estate planning and tax optimization, the Wealth Tech stack, and the differences between Korean, U.S., Japanese, and Swiss PB.


Chapter 1 — HNWI and UHNWI Definitions and Global Population

In the wealth management industry, the criteria for segmenting clients are essentially globally standardized. The Capgemini World Wealth Report, Knight Frank Wealth Report, and Credit Suisse (now UBS) Global Wealth Report share the same definitions.

SegmentInvestable assetsGlobal population (2025)Typical service
Mass affluent$100K – $1M~500 milliongeneral wealth advisory
HNWI$1M+ (investable)~23 millionbasic private banking
Very HNWI$5M+~2.5 milliondedicated advisor
UHNWI$30M+~470,000family office
Centi-millionaire$100M+~28,000single-family office
Billionaire$1B+~3,000family wealth

The U.S. holds roughly one-third of HNWI (~7.6 million), Japan ~3.7 million, China ~3 million, Korea ~900,000. As of 2025 Korea HNWI population grows ~6% per year and is expected to exceed 1.3 million by 2030.

The key is the definition of "investable assets". Primary residence, operating business interests, and pension entitlements are normally excluded. This threshold determines PB client eligibility.


Chapter 2 — Global Top 10 Wealth Managers in 2026

Based on Q1 2026 disclosures, the global wealth management ranking looks as follows.

RankFirmHQAUM (approx)Notes
1Morgan Stanley Wealth ManagementUSA$5.5TE*TRADE and Eaton Vance integrated, 16,000 advisors
2UBS Global Wealth ManagementSwitzerland$5.0TCredit Suisse integrated, 70 countries
3Bank of America Merrill Lynch WealthUSA$3.8T18,000 advisors, FA headcount leader
4JP Morgan Private Bank + AWMUSA$3.2TPB takes only $10M+, full-service
5Goldman Sachs AWMUSA$2.9TUHNWI focus, Marcus separate
6Wells Fargo WIMUSA$2.0T12,000 advisors
7Charles Schwab WealthUSA$1.5T+post-TD Ameritrade
8Citi Global WealthGlobal$1.1Tcross-border
9BNY Mellon Wealth ManagementUSA$0.4Ttrust strength
10Northern Trust WealthUSA$0.4TUHNWI, family office

Swiss PB are in a separate bucket:

  • Julius Baer: $500B+
  • Pictet: $700B+ (group), Wealth Management $300B+
  • Lombard Odier: $300B+
  • Edmond de Rothschild: $200B+
  • Bordier, Mirabaud, Rahn+Bodmer also exist as family PB

This ranking can be re-ordered by advisor count, average account size, alternative allocation share, or cross-border capability.


Chapter 3 — UBS Global Wealth Management, the $5T Integration

UBS started as Bank in Winterthur in 1862, took its current form via the 1998 merger of Union Bank of Switzerland and Swiss Bank Corporation, and announced the Credit Suisse acquisition in March 2023. Integration is rolling over roughly three years.

UBS Global Wealth Management is structured as:

  • GWM (Global Wealth Management): HNWI and UHNWI wealth management
  • Asset Management: funds, ETFs, index strategies
  • Personal & Corporate Banking: Swiss retail and corporate
  • Investment Bank: M&A, capital markets, FICC

GWM's advisory model is structured roughly like this.

# UBS GWM advisory model (conceptual code)
from dataclasses import dataclass
from enum import Enum

class ClientSegment(Enum):
    HNWI = "1M_to_10M"           # standard PB
    HIGH_HNWI = "10M_to_50M"     # Key Client
    UHNWI = "50M_to_500M"        # Family Office Group
    BILLIONAIRE = "500M_plus"    # dedicated team

@dataclass
class UBSAdvisoryStack:
    segment: ClientSegment
    relationship_manager: str
    investment_advisor: str
    wealth_planner: str          # estate, tax
    credit_specialist: str        # lombard loan
    alternative_specialist: str   # PE, HF, real estate
    family_office_lead: str | None
    region_specialist: str        # cross-border

def assign_stack(aum_usd: float) -> UBSAdvisoryStack:
    if aum_usd < 10_000_000:
        seg = ClientSegment.HNWI
        fo_lead = None
    elif aum_usd < 50_000_000:
        seg = ClientSegment.HIGH_HNWI
        fo_lead = None
    elif aum_usd < 500_000_000:
        seg = ClientSegment.UHNWI
        fo_lead = "FOG_lead_assigned"
    else:
        seg = ClientSegment.BILLIONAIRE
        fo_lead = "dedicated_principal_team"
    return UBSAdvisoryStack(
        segment=seg,
        relationship_manager="RM_assigned",
        investment_advisor="IA_assigned",
        wealth_planner="WP_assigned",
        credit_specialist="CS_assigned",
        alternative_specialist="AS_assigned",
        family_office_lead=fo_lead,
        region_specialist="REG_assigned",
    )

UBS also publishes a quarterly CIO House View (Chief Investment Office house view). This document is the shared asset-allocation guidance across the global GWM advisor network.

The hard work of CS integration is systems and advisor retention. Roughly 20,000 staff were redeployed in 2024-2025, and some senior advisors moved to Julius Baer, Pictet, or Vontobel.


Chapter 4 — Morgan Stanley Wealth Management at $5.5T

Morgan Stanley Wealth Management grew its wealth arm meaningfully after acquiring Citi's Smith Barney in 2009. It then folded in E*TRADE ($13B, 2020) and Eaton Vance ($7B, 2021) to combine retail, asset management, and PB.

Key stats:

  • AUM: $5.5T+
  • Advisors: ~16,000
  • Average advisor book: $340M+
  • Core platforms: Morgan Stanley Online and the integrated Smith Barney legacy stack

Morgan Stanley's goals-based wealth management (GBWM) has become the standard for U.S. wealth. Goals (retirement, education, philanthropy) are mapped on a time axis and assets are managed against each.

# Morgan Stanley GBWM concept — goal-segregated allocation
from dataclasses import dataclass, field
from datetime import date
from typing import Literal

GoalType = Literal["retirement", "education", "legacy", "philanthropy", "lifestyle"]

@dataclass
class WealthGoal:
    goal_type: GoalType
    target_amount: float
    target_date: date
    priority: int                # 1=must, 2=should, 3=nice
    risk_tolerance: str          # "conservative", "moderate", "aggressive"
    current_funded: float = 0.0
    monthly_contribution: float = 0.0

@dataclass
class GBWMPlan:
    client_id: str
    total_aum: float
    goals: list[WealthGoal] = field(default_factory=list)

    def funded_ratio(self) -> dict[GoalType, float]:
        return {
            g.goal_type: g.current_funded / g.target_amount if g.target_amount else 0
            for g in self.goals
        }

    def allocate_new_inflow(self, inflow: float) -> dict[GoalType, float]:
        """Fill highest-priority underfunded goals first."""
        result: dict[GoalType, float] = {}
        remaining = inflow
        for g in sorted(self.goals, key=lambda x: (x.priority, x.target_date)):
            need = max(0.0, g.target_amount - g.current_funded)
            alloc = min(remaining, need)
            result[g.goal_type] = alloc
            remaining -= alloc
            if remaining <= 0:
                break
        return result

Another differentiator for Morgan Stanley is stock plan administration. With the Solium acquisition, it runs employee stock plans for 5,000+ listed firms worldwide, and those participants flow naturally into Morgan Stanley Wealth.


Chapter 5 — JP Morgan Private Bank, $10M+ Full-Service

JP Morgan Private Bank traces back to the House of Morgan (1838), with PB taking off under J. Pierpont Morgan around 1850. By 2026, the PB unit runs $3T with a minimum of $10M+.

The differentiator is that banking + investment + lending + alternatives all sit under one relationship manager.

  • Deposit and checking: JPM Chase Private Client accounts
  • Investment: managed accounts, separately managed accounts (SMAs)
  • Credit: lombard loans, jumbo mortgages, art financing
  • Alternatives: hedge funds, PE, real estate, structured products
  • Philanthropy: donor-advised funds, charitable trusts
  • Next-gen: financial literacy programs for children and grandchildren
# JP Morgan PB full-service advisory (conceptual)
client_relationship:
  client_aum_usd: 50000000
  primary_rm: "RM_VP"
  team:
    - role: investor                  # investment decisions
      person: "Investment_Specialist"
    - role: banker                    # deposit and credit
      person: "Private_Banker"
    - role: wealth_planner            # estate, tax
      person: "WP_Specialist"
    - role: lending                   # lombard, real estate
      person: "Lending_Specialist"
    - role: alternatives              # PE, HF
      person: "Alts_Specialist"
    - role: trust_legal               # trust, legal
      person: "Trust_Officer"
  meeting_cadence:
    investment_review: quarterly
    full_team_review: semi_annual
    estate_review: annual

JP Morgan PB is also known for raising the alternatives allocation. UHNWI portfolios often hold 30-40% in alternatives. Its in-house alternatives arm runs hedge funds (JPM Asset Management), PE (One Equity Partners), and real estate (JPMREIT).


Chapter 6 — BofA Merrill Lynch Wealth + Bank of America Private Bank

Bank of America has two wealth tracks following the 2009 Merrill Lynch acquisition.

  • Merrill Lynch Wealth Management: For HNWI $250K+, ~18,000 advisors, $3.0T+ AUM. The "Total Merrill" integrated platform.
  • Bank of America Private Bank (formerly U.S. Trust): For HNWI and UHNWI $3M+, $0.7T+ AUM. Trust and estate planning strength.

The Merrill differentiator is advisor channel scale. Offices in every U.S. metro and an average advisor book of $170M+.

Merrill One is the integrated platform combining brokerage, advisory, banking, and credit cards in one dashboard. Clients move up the funnel from Merrill Edge (self-directed), Merrill Guided Investing (robo), Merrill Lynch Wealth (human advisor), to Bank of America Private Bank (UHNWI).

# Merrill client lifecycle funnel (conceptual code)
def determine_merrill_track(aum_usd: float, prefers_self_directed: bool) -> str:
    if aum_usd < 50_000 and prefers_self_directed:
        return "merrill_edge_self_directed"
    elif aum_usd < 250_000:
        return "merrill_guided_investing_robo"
    elif aum_usd < 3_000_000:
        return "merrill_lynch_wealth_advisor"
    else:
        return "bank_of_america_private_bank"

def cross_sell_priority(client_segment: str) -> list[str]:
    priorities = {
        "merrill_edge_self_directed": ["merrill_guided_investing", "boa_checking", "boa_credit_card"],
        "merrill_guided_investing_robo": ["merrill_lynch_wealth_advisor", "boa_mortgage"],
        "merrill_lynch_wealth_advisor": ["boa_private_bank", "lombard_loan", "estate_planning"],
        "bank_of_america_private_bank": ["family_office_services", "art_financing", "philanthropy"],
    }
    return priorities.get(client_segment, [])

Another Merrill strength is research. BofA Global Research employs about 1,000 analysts covering global markets, and reports flow directly to the advisor force.


Chapter 7 — Goldman PWM, Citi PB, Wells Fargo, Northern Trust, BNY Mellon

The second half of the U.S. PB top tier.

Goldman Sachs Private Wealth Management focuses on UHNWI ($10M+, in practice $50M+) and runs $1T+. PWM employs about 1,000 advisors, with an average book of $1B+. The differentiator is structured products and access to deals — Goldman PE, hedge fund, and structured products flow to PWM clients first.

Citi Private Bank is the standard for global cross-border wealth across 60 countries. For HNWI $25M+, it links the U.S., London, Singapore, Hong Kong, Zurich, and Dubai. Particularly strong with emerging-market UHNWI (LATAM, Middle East, Asia).

Wells Fargo Wealth and Investment Management grew its PB after acquiring Wachovia in 2008. $2.0T AUM and 12,000 advisors. The strength is the advisor network across the U.S. Midwest and West. After the 2016 unauthorized accounts scandal, rebuilding trust was a defining theme.

Northern Trust Wealth Management in Chicago specializes in UHNWI and family offices. AUM is "only" $0.4T but average account is the largest. With 195 years of trust operations, multi-generational wealth and family governance are core strengths.

BNY Mellon Wealth Management is the oldest U.S. bank (Bank of New York, 1784). Wealth is $0.4T, but the parent BNY Mellon's $50T+ global custody is the backbone of wealth-management infrastructure.

FirmAUMMinimumAvg accountStrength
Goldman PWM$1T+$10M+ (often $50M+)$1B+/advisorstructured products, deal access
Citi Private Bank$1.1T$25M+global cross-border60 countries
Wells Fargo$2.0T$250K+variesU.S. Midwest, West network
Northern Trust$0.4T$5M+largesttrust, multi-gen
BNY Mellon Wealth$0.4T$5M+largetrust, family office

Chapter 8 — Swiss PB: Pictet, Lombard Odier, Julius Baer, Edmond de Rothschild

Switzerland is the pinnacle of European PB and global wealth's "safe harbor" backed by 200+ years of reputation.

Pictet (Geneva, 1805) is an unlimited-liability partnership. Eight managing partners stake their family wealth on decisions and bear joint responsibility. AUM $700B+. Pictet Wealth Management is $300B+ of that. Other lines include institutional asset management, alternatives, and settlement (Pictet Asset Services). The core value: multi-generational wealth preservation.

Lombard Odier (Geneva, 1796) is the oldest still-operating private bank. AUM $300B+. The most active firm in ESG and sustainable finance, with its proprietary Sustainability Compass evaluation model.

Julius Baer (Zurich, 1890) is the only listed Swiss PB. AUM $500B+. Between 2012 and 2025 it globalized via ING Wealth (2010), Merrill Lynch Wealth's non-Swiss businesses (2012), and Reliance Group (2017). It took roughly $700M of provisions related to Signa Group real estate losses in 2023-2024.

Edmond de Rothschild (Geneva, Paris, 1953) is the wealth arm of the Rothschild family. AUM $200B+. A textbook of family capitalism and a cradle of multi-generational planning.

Common value props of Swiss PB:
1. multi-generational preservation of family wealth
2. fiscally privileged environment (low capital gains tax, possible inheritance exemption)
3. credibility of unlimited-liability partnership
4. currency diversification (CHF, EUR, USD)
5. political stability
6. tradition of confidentiality (weakened post-OECD CRS)
7. high-quality alternatives access (PE, HF)
8. family governance advisory (family council, succession plan)

The OECD's Common Reporting Standard (CRS) and U.S. FATCA have essentially ended the secret-account era in Switzerland, but PB value remains.


Chapter 9 — Asset Allocation: Multi-Asset + Alternatives 25-40%

By 2026 the PB allocation standard is no longer 60/40 (equity/bond). UHNWI portfolios hold 25-40% in alternatives.

Reference UHNWI allocations from UBS, JPM, and Goldman:

Asset classConservativeBalancedGrowth
Public equity25%40%50%
Public fixed income35%20%10%
Hedge funds10%12%10%
Private equity5%12%18%
Real estate (direct + REIT)10%8%7%
Infrastructure5%4%3%
Commodities and gold3%2%1%
Cash7%2%1%

The key is alternatives weight. HNWI averages about 15%, UHNWI 30%+. Filling that bucket requires PE, HF, real estate, infrastructure, private credit, art, and collectibles access — the PB differentiator.

# Mean-variance optimization with alternatives (conceptual code)
import numpy as np

# Asset classes: US eq, IntlDev eq, EM eq, Bond, HF, PE, Real estate, Commodities, Cash
mu = np.array([0.075, 0.070, 0.085, 0.040, 0.060, 0.110, 0.065, 0.045, 0.030])

# Apply illiquidity premium notes to PE and real estate
sigma_diag = np.array([0.16, 0.18, 0.22, 0.05, 0.08, 0.21, 0.12, 0.20, 0.005])
corr = np.array([
    [1.00, 0.80, 0.65, 0.10, 0.55, 0.50, 0.40, 0.15, 0.00],
    [0.80, 1.00, 0.70, 0.15, 0.50, 0.45, 0.45, 0.20, 0.00],
    [0.65, 0.70, 1.00, 0.20, 0.45, 0.40, 0.40, 0.25, 0.00],
    [0.10, 0.15, 0.20, 1.00, 0.10, 0.15, 0.10, 0.00, 0.20],
    [0.55, 0.50, 0.45, 0.10, 1.00, 0.50, 0.30, 0.20, 0.00],
    [0.50, 0.45, 0.40, 0.15, 0.50, 1.00, 0.45, 0.10, 0.00],
    [0.40, 0.45, 0.40, 0.10, 0.30, 0.45, 1.00, 0.15, 0.05],
    [0.15, 0.20, 0.25, 0.00, 0.20, 0.10, 0.15, 1.00, 0.00],
    [0.00, 0.00, 0.00, 0.20, 0.00, 0.00, 0.05, 0.00, 1.00],
])
sigma = np.outer(sigma_diag, sigma_diag) * corr

# illiquidity penalty: small penalty on PE and real estate
liq_penalty = np.array([0, 0, 0, 0, 0.005, 0.015, 0.010, 0, 0])
mu_adj = mu - liq_penalty

lam = 4.0  # higher risk aversion (PB UHNWI)
w_opt = np.linalg.solve(lam * sigma, mu_adj)
w_opt = np.clip(w_opt, 0, None)
w_opt = w_opt / w_opt.sum()

Another alternatives feature is lockup. PE funds typically have 10+ year vintage-level lockup, hedge funds have quarterly or annual redemption windows. Clients cannot redeem on demand — the source of the illiquidity premium.


Chapter 10 — Family Office: Single, Multi, Virtual

UHNWI ($30M+) wealth management evolves into the family office (FO) form. The structure goes beyond simple PB advisory and integrates the family's assets, businesses, and governance.

TypeAsset thresholdHeadcountCostNote
Single-family office (SFO)$250M+5-50$1-10M/year opsdedicated to one family
Multi-family office (MFO)$30M+outsourced0.5-1% AUMshared across families
Virtual family office (VFO)$10M+virtual teamvariablemosaic of RMs and advisors
Embedded FOvariesbank-internalbundledUBS, JPM internal FO

A typical SFO org chart looks like:

Family Office Org (example):

Family Council
├── Next-gen leadership development
└── External advisory board (3-5 members)

Family Office Principal (CEO and CIO)
├── Investment Office
│   ├── Public markets PM
│   ├── Alternatives Director (PE/HF/RE)
│   ├── Trading desk
│   └── Risk and compliance
├── Wealth Planning
│   ├── Tax counsel
│   ├── Estate attorney
│   ├── Trust administration
│   └── Insurance specialist
├── Philanthropy
│   ├── Foundation management
│   └── Donor-advised funds
├── Operations
│   ├── Accounting and reporting
│   ├── Custody and banking
│   └── Cybersecurity and data
└── Family Services
    ├── Concierge (travel, art, collectibles)
    ├── Education (next-gen, financial literacy)
    └── Lifestyle (yacht, aircraft, household staff)

The key KPI is after-tax, after-fee, multi-generational risk-adjusted return — not simple IRR, but the effective return after taxes, operating costs, and intergenerational transfer.

NEPC and Cambridge Associates family-office benchmarks put SFO operating cost at roughly 0.5-1.2% of AUM. MFO charge 0.5-1.0% advisory fees plus underlying fund fees.


Chapter 11 — Estate Planning: Cross-Generational Tax Optimization

For UHNWI, the core of wealth management is intergenerational wealth transfer. In the U.S., Korea, and Japan alike, estate and gift taxes are the most important variable.

U.S. estate-planning tools:

  • Irrevocable trust: Moves assets out of the estate. Dynasty trusts are multi-generational.
  • GRAT (Grantor Retained Annuity Trust): Transfers asset appreciation to children with little gift tax.
  • CLT/CRT (Charitable Lead/Remainder Trust): Combines charity and tax savings.
  • ILIT (Irrevocable Life Insurance Trust): Keeps life insurance outside the estate.
  • Family Limited Partnership (FLP): Bundles family assets into an LP for valuation discounts.
  • Roth conversion: Converts traditional IRA to Roth IRA to avoid future taxes.

The 2025 federal estate tax exemption is $13.99M/individual ($27.98M/couple). It may revert to around $7M from 2026 under the sunset clause. Korea and Japan have far lower exemptions.

# Estate tax simulation (conceptual code, U.S. federal)
def estimate_estate_tax(estate_value: float,
                        exemption: float = 13_990_000,
                        rate: float = 0.40) -> float:
    """Rough U.S. federal estate tax estimate, before state tax."""
    taxable = max(0.0, estate_value - exemption)
    return taxable * rate

def grat_zeroed_out(asset_value: float,
                    irs_7520_rate: float,
                    years: int) -> float:
    """Estimate value transferred to children under a zeroed-out GRAT."""
    annuity = asset_value * (irs_7520_rate / (1 - (1 + irs_7520_rate) ** -years))
    growth_assumption = 0.08
    fv = asset_value * (1 + growth_assumption) ** years
    annuity_fv = sum(annuity * (1 + growth_assumption) ** (years - t) for t in range(1, years + 1))
    return fv - annuity_fv

# Example
estate = 50_000_000
print(f"Estate tax (no planning): ${estimate_estate_tax(estate):,.0f}")
print(f"GRAT child transfer (10y, 5% 7520, 8% growth): ${grat_zeroed_out(20_000_000, 0.05, 10):,.0f}")

Korea has a top inheritance/gift rate of 50% (over 3 billion won base). Family business succession, financial-asset, and lump-sum deductions are the core PB advisory levers.

Japan has a top inheritance rate of 55% (over 600 million yen base). Spouse credit, small-residential-land special, and gift-time-of-inheritance taxation are Japan-specific tools.


Chapter 12 — Tax Optimization: Roth Conversion, Charitable, SALT

Tax optimization is the day job of wealth management. Representative U.S., Korea, and Japan strategies follow.

U.S.:

  • Roth conversion ladder: Convert portions of traditional IRA to Roth, concentrate conversions in low-rate years.
  • Tax-loss harvesting: Sell losing positions to offset gains. Now automated even in PB.
  • Charitable giving: Donate appreciated stock to avoid capital gains and claim deduction.
  • Donor-Advised Fund (DAF): Fidelity DAF, Schwab DAF, Vanguard DAF, NPT, etc., to time donations.
  • Qualified Opportunity Zone: Defer and reduce capital gains.
  • State tax planning: Relocate from California or New York to Florida or Texas.

Korea:

  • Max out the deduction caps: Pension savings + IRP up to 9 million won combined, with 13.2-16.5% tax credit.
  • ISA tax-free limit: 2.5 million won per 3 years (basic), 4 million (low-income).
  • Long-term holding capital gains preference: 1-house 1-household long-term deductions.
  • Corporate vehicles: Hold real estate and financial assets through a corporation.

Japan:

  • New NISA usage: 18 million yen lifetime cap.
  • iDeCo: 276,000 yen/year for salaried, 816,000 yen/year for self-employed.
  • Loss offsetting: Stock losses offset other capital gains.
  • Residency choice: Japan residents owe Japanese tax on global income, so citizenship and permanent-residence shifts matter.
# U.S. UHNWI annual tax calendar (conceptual)
tax_calendar:
  Q1:
    - prior_year_ira_contribution_until_april_15
    - estimated_tax_payment_1
    - charitable_pledge_for_year
  Q2:
    - estimated_tax_payment_2
    - mid_year_tax_loss_harvesting_review
    - GRAT_funding_consideration
  Q3:
    - estimated_tax_payment_3
    - back_door_roth_conversion
    - DAF_contribution_planning
  Q4:
    - estimated_tax_payment_4
    - year_end_TLH
    - charitable_giving_execution
    - estate_tax_exemption_review
    - state_residency_review

Chapter 13 — Wealth Tech: eMoney, Black Diamond, Orion, Envestnet

The Wealth Tech stack that powers wealth management operations is essential infrastructure for PB, MFO, and RIA.

PlatformCore capabilityUsers
eMoney Advisor (Fidelity)financial planning, simulationRIA, parts of PB
Black Diamond (SS&C)portfolio reporting, rebalancingmid-to-large RIA, MFO
Orion Advisor Solutionsreporting, trading, CRMmid-size RIA
EnvestnetTAMP, multi-asset platformlarge broker-dealer
AddeparUHNWI multi-custodian reportingfamily office
Tamarac (Envestnet)rebalancing, reportingRIA
iCapitalalternative investments platformPB, RIA
Yodlee/MXaccount aggregationretail wealth
BlackRock Aladdin Wealthrisk + portfoliolarge PB
Morningstar Directresearch, screeningbroad

Addepar has become the de facto standard for UHNWI and family office. It aggregates data across custodians (JPM, Northern Trust, Pictet, etc.) into a single reporting view. 2023 valuation $3B+.

iCapital is the platform standard for alternative investments. It digitizes PE, HF, and real-estate funds so PB can deliver them easily. 2023 valuation $6B+.

# Wealth Tech integration example - Aladdin Wealth + Addepar data flow (conceptual code)
from dataclasses import dataclass

@dataclass
class Position:
    custodian: str       # JPM, Northern Trust, Pictet, ...
    ticker_or_id: str
    qty: float
    market_value: float
    asset_class: str     # equity, fixed_income, hf, pe, real_estate

def aggregate_across_custodians(positions: list[Position]) -> dict:
    """Addepar style: multi-custodian aggregation."""
    by_class: dict[str, float] = {}
    for p in positions:
        by_class[p.asset_class] = by_class.get(p.asset_class, 0) + p.market_value
    total = sum(by_class.values())
    return {k: v / total for k, v in by_class.items()}

def aladdin_risk_view(positions: list[Position]) -> dict:
    """Aladdin Wealth: factor exposure + scenario PnL."""
    # In reality this decomposes via a factor model into beta, duration, credit, FX
    factor_exposure = {"equity_beta": 0.65, "duration": 4.2, "credit_spread": 0.08, "fx_usd": 0.78}
    scenarios = {"2008_GFC": -0.32, "2020_COVID": -0.18, "2022_rates_shock": -0.15}
    return {"factor": factor_exposure, "scenarios": scenarios}

eMoney, Black Diamond, and Orion are widely used by RIAs (registered investment advisors), while Addepar is fastest-growing in the family-office segment.


Chapter 14 — Korean PB: Shinhan, KB, Woori, Hana, NH, Samsung, Mirae, KI

The Korean PB market is roughly 30 trillion won+, split between five major banks and five major securities houses.

FirmBrandThresholdNote
Shinhan BankShinhan PWM (PB Centers)KRW 1BGangnam and Seocho centers
KB Kookmin BankKB Gold and StarKRW 500Mnationwide PB lounges
Woori BankDoore PBKRW 500MDoore lounges
Hana BankClub1 PBKRW 500Mintegrated advisory
NH Nonghyup BankNH WMKRW 300Mrural and regional wealth
Samsung SecuritiesSNI (Samsung & Investment)KRW 3Btop securities PB
Mirae Asset SecuritiesMirae Asset PBKRW 1Bglobal allocation
Korea InvestmentKI PBKRW 1Bpremium IPO and deal access
NH InvestmentPremier ClubKRW 500MNH synergy
KB SecuritiesGold LoungeKRW 500MKB group synergy

Shinhan Bank PWM operates PB centers in Gangnam, Samsung-dong, Seocho, Dosan, etc. For assets over 3 billion won, a single PB handles ~30 households; for over 10 billion won, family-office-style advisory.

KB Gold and Star excels at the integrated advisory across KB Financial Group (bank, securities, insurance). One RM coordinates family trust, gift planning, and overseas assets.

Samsung Securities SNI leads securities PB. ~5,000 clients with $8M+, AUM 60 trillion won+. Global PE, HF, and structured-product access is a strength.

Standard Korea PB service menu (example):

1. Asset diagnosis
   - real estate, financial, business, overseas asset review
   - tax, legal, succession scenarios

2. Asset allocation advisory
   - domestic and overseas ETF, funds, bonds
   - private funds (HF, PE, real assets)
   - structured products (ELS, DLS, ELB)

3. Tax savings, succession design
   - gift and inheritance simulation
   - family business succession plan
   - family trust

4. Real estate advisory
   - building and retail purchase, sale
   - rental yield optimization
   - real estate trust

5. Global assets
   - overseas ETF, direct U.S. equity
   - overseas real estate
   - foreign currency deposits

6. Next-gen and family education
   - financial literacy
   - family business succession prep
   - overseas study and immigration advisory

The great wealth transfer is the central narrative for Korean PB in the next 20 years. As baby-boomer (1955-1964) assets pass to children, demand for inheritance, gift, and family-business-succession advisory will explode.


Chapter 15 — Japanese PB: Mizuho, SMBC, MUFG, Nomura, Daiwa

Japan has household financial assets of 2,100 trillion yen (about $14T), with HNWI ($1M+) holdings estimated at $7T. ~3.7 million HNWI and 20-30,000 UHNWI households.

FirmBrandThresholdNote
Mizuho BankMizuho Private WealthJPY 100Mmega-bank PB
SMBCSMBC Private WealthJPY 100MSMBC Nikko synergy
MUFGMUFG Private WealthJPY 100MMorgan Stanley collaboration
Nomura SecuritiesNomura WealthJPY 50Mtop securities PB
Daiwa SecuritiesDaiwa PWMJPY 50Msecond securities PB
SMBC NikkoSMBC Nikko Private BankingJPY 50MSMBC synergy
Mizuho TrustMizuho Trust PBJPY 100Mtrust strength
Sumitomo Mitsui TrustSMTB Trust PBJPY 100Mtrust strength
UBS JapanUBS Wealth Management JapanJPY 500Mforeign PB
Pictet JapanPictet Wealth Management JapanJPY 500Mforeign PB

The MUFG-Morgan Stanley alliance (since the 2008 investment, ongoing) is the most interesting structure in Japanese PB. MUFG brings Morgan Stanley's global wealth-management know-how into Japan; Morgan Stanley gains access to Japanese HNWI.

Nomura Wealth is the standard for Japanese securities PB. PB centers cluster inside the Yamanote line, and clients with over 1 billion yen get family-office-style dedicated advisory.

# Japan PB cross-border asset management (conceptual code)
def japan_resident_global_tax_planning(
    assets_jp_jpy: float,
    assets_us_usd: float,
    assets_other_eur: float,
    fx_usd_jpy: float = 150.0,
    fx_eur_jpy: float = 165.0,
) -> dict:
    """Japan resident global asset aggregation and tax simulation."""
    total_jpy = (
        assets_jp_jpy
        + assets_us_usd * fx_usd_jpy
        + assets_other_eur * fx_eur_jpy
    )

    # Japan residents are taxed on global income
    # Foreign tax credits avoid double taxation
    # Overseas assets over 50M yen require an annual KGZC filing
    needs_kgzc = total_jpy >= 50_000_000  # 50M yen
    estate_tax_exposure = "high" if total_jpy > 600_000_000 else "moderate"

    return {
        "total_assets_jpy": total_jpy,
        "kgzc_filing_required": needs_kgzc,
        "estate_tax_exposure": estate_tax_exposure,
        "cross_border_planning": needs_kgzc,
    }

result = japan_resident_global_tax_planning(
    assets_jp_jpy=300_000_000,
    assets_us_usd=2_000_000,
    assets_other_eur=500_000,
)

For Japan, the central advisory theme in 2026 is the integration of new NISA + iDeCo + PB advisory. PB fills the 18 million yen NISA cap first, then layers taxable accounts and overseas assets on top.


Chapter 16 — Korea PB vs Japan PB: Market Structure

ItemKorea PBJapan PB
HNWI population~900K~3.7M
HNWI assets$1.5T$7T
Market size30 trillion won+200 trillion yen+
Bank thresholdKRW 500MJPY 100M
Securities thresholdKRW 1-3BJPY 50M
Avg advisor book$50-100M$50-150M
Alternatives share5-15%5-10%
Cross-border sharerisinglow
Top advisory themegreat wealth transfer, successionnew NISA, succession, retirement
Foreign PB sharelow (UBS, HSBC)medium (UBS, Pictet, HSBC)
Digital PB penetrationfast (Toss PB)slow

Korea and Japan share many traits but differ widely in alternatives share and cross-border share. Korea's next-gen embraces overseas assets, while Japan stays heavily domestic.

Another difference is digital PB penetration. Korea is being penetrated quickly by Toss Bank, KakaoBank, Toss Securities, and KakaoPay Securities. In Japan only Sony Bank and SBI Securities are trying digital PB but it has not gone mainstream.


Chapter 17 — Family Governance: Council, Charter

Multi-generational wealth is run not by allocation but by family governance — family council, family charter, succession plan are the core tools.

Standard family charter components:

  • Family values: the philosophy that governs wealth
  • Family council: the decision-making body
  • Investment committee: the allocation guide
  • Succession plan: business and asset transfer
  • Family business governance: how the business runs
  • Philanthropy guide: family giving policy
  • Dispute resolution: family conflict handling
  • Next-gen education: financial literacy, entrepreneurship
# Family Charter example (conceptual)
family_charter:
  preamble: "Our family wealth is a four-generation responsibility."
  values:
    - long_term_thinking
    - philanthropy
    - education
    - integrity
  family_council:
    members: 7
    composition:
      - patriarch_or_matriarch
      - spouse
      - generation_2_representatives  # 3 members
      - generation_3_representative
      - external_advisor              # external advisor
    meeting_cadence: quarterly
    voting_rule: 5_of_7_majority
  investment_committee:
    members: 5
    role: asset_allocation_policy
    review_frequency: semi_annual
  succession_plan:
    business_ceo: groomed_by_age_45
    family_office_principal: external_search_if_needed
    estate_planning: updated_every_3_years
  next_gen_education:
    age_18: financial_literacy_curriculum
    age_25: family_office_internship
    age_30: investment_committee_observer
    age_35: voting_council_member_eligibility
  philanthropy:
    annual_giving_floor: 5_percent_of_income
    foundation_purpose: education_and_health
  dispute_resolution:
    mediator: external_advisor
    arbitration: agreed_arbitrator

The key insight: "wealth is destroyed by family discord, not by markets." Disputes destroy family wealth faster than any drawdown. That is why family-council operations, next-gen education, and family-business succession planning matter more than allocation.

Cambridge Family Enterprise Group in the U.S., the Family Business Succession Support Center in Korea, and Japan's SME Agency Succession Support Center are major specialist advisors here.


Chapter 18 — Philanthropy: DAF, Foundation, CRT

UHNWI philanthropy combines tax efficiency with the expression of family values.

Main tools:

  • Donor-Advised Fund (DAF): Fidelity DAF, Schwab DAF, Vanguard DAF — deposit at once, grant over time.
  • Private foundation: A family foundation. Has operating costs and a 5% minimum payout rule.
  • Charitable Lead Trust (CLT): Pays charity for a period, residual to family.
  • Charitable Remainder Trust (CRT): Pays family for a period, residual to charity.
  • Pooled Income Fund: Pools many donors' assets together.

In the U.S., cash gifts deduct up to 60% AGI and appreciated stock 30% AGI. Korea has statutory and designated donations, and Japan has furusato nozei and donation deductions.

# Charitable Remainder Trust simulation (conceptual code)
def crt_split(asset_value: float,
              annual_payout_pct: float,
              years: int,
              growth_rate: float = 0.07) -> dict:
    """Simulate CRT family payout and charity residual."""
    remaining = asset_value
    total_payout_to_family = 0.0
    for t in range(years):
        remaining = remaining * (1 + growth_rate)
        payout = remaining * annual_payout_pct
        remaining -= payout
        total_payout_to_family += payout
    return {
        "family_total_payout": total_payout_to_family,
        "charity_remainder": remaining,
        "charity_deduction_estimate": asset_value * 0.30,  # simplified
    }

# Example: $20M asset, 5% payout, 20 years
result = crt_split(20_000_000, 0.05, 20)

The DAF's killer feature is deduction at the funding date, flexibility in disbursement. When a single big income year occurs (stock sale, business sale), a donor funds a DAF once for immediate deduction and grants to charities over time.

U.S. DAF assets totaled about $230B+ by 2024 — a core flow of U.S. philanthropy.


Chapter 19 — Cross-Border Wealth: FATCA, CRS, CFC

Cross-border wealth is PB's hardest domain. U.S. FATCA, OECD CRS, and each country's CFC rules create elaborate reporting duties.

  • FATCA (Foreign Account Tax Compliance Act, 2010): U.S. citizens and green card holders must report worldwide financial accounts; foreign FIs must report to the U.S. IRS.
  • CRS (Common Reporting Standard, OECD): 100+ countries automatically exchange financial-account data.
  • CFC (Controlled Foreign Corporation): Resident shareholders above a threshold are taxed by the home country.
  • PFIC (Passive Foreign Investment Company, U.S.): Punitive tax on foreign funds for U.S. taxpayers.

Korean residents holding U.S. assets get only $60,000 estate-tax exemption as non-resident aliens. Korean nationals holding U.S. real estate face significant estate-tax exposure.

Japan residents are taxed on global assets too, and must file the foreign-asset report (Kokugai Zaisan Chosho) for overseas holdings above 50 million yen.

Cross-border wealth advisory checklist:

1. Residency determination
   - tax residency vs immigration residency
   - 183-day rule, tie-breaker rule (treaty)
   - exit tax on residency change (US, Korea, Japan)

2. Citizenship vs permanent residence
   - US citizens are taxed globally regardless of residence
   - expatriation tax on green-card abandonment

3. Asset situs
   - estate tax is based on asset situs
   - US situs assets (US stock, real estate) need care
   - use trust to mitigate estate tax

4. Reporting duties
   - FATCA: US citizens, green-card holders
   - CRS: financial accounts outside residency
   - FBAR (FinCEN 114): foreign accounts over $10,000
   - Overseas Property Report (Korea): foreign assets over 500M won
   - Overseas Property Report (Japan): assets over 50M yen

5. Currency risk
   - asset and liability currency mismatch
   - hedging cost vs natural exposure

Cross-border wealth advisory cannot be delivered by one advisor. The strength of UBS, Citi, and JPM is the in-house and partner network of tax counsel, estate attorneys, and trust officers across jurisdictions.


Chapter 20 — Alternative Investments: PE, HF, Real Estate, Art

The UHNWI differentiator is alternatives access, including PE, HF, real estate, infrastructure, art, and collectibles unavailable to retail.

Main alternatives:

  • Private equity: Blackstone, KKR, Carlyle, Apollo, Bain Capital. 10-year lockup, 7-15% IRR target.
  • Hedge fund: Bridgewater, Citadel, Millennium, D.E. Shaw, Renaissance. Quarterly or annual redemption.
  • Real estate: Blackstone REIT, Brookfield, Tishman Speyer. Direct or via funds.
  • Infrastructure: Macquarie, Brookfield Infrastructure, IFM. Long-term inflation hedge.
  • Private credit: Ares, Owl Rock, Golub. Direct lending funds.
  • Art: Sotheby's and Christie's auctions, or art funds (Masterworks).
  • Wine, watches, collectibles: Alternative-asset funds or direct holding.
  • Cryptocurrency: Some PBs allow a 1-5% BTC, ETH, and stablecoin allocation.

iCapital, CAIS, and Moonfare are platforms that deliver alternatives digitally to PB and MFO.

# Alternative investments J-curve simulation (conceptual code, PE)
def pe_jcurve_cashflow(commitment: float, vintage_year: int, years: int = 12) -> list[tuple[int, float, float]]:
    """PE J-curve: early capital call to later distribution."""
    schedule = []
    for t in range(years):
        # First 4 years: capital call (negative)
        if t < 4:
            call = -commitment * 0.20
        else:
            call = 0
        # Years 4-12: distribution (positive)
        if t >= 4:
            dist = commitment * 0.15 * (1 + 0.10 * (t - 4))
        else:
            dist = 0
        net_cashflow = call + dist
        schedule.append((vintage_year + t, call, dist))
    return schedule

# Example
sched = pe_jcurve_cashflow(commitment=10_000_000, vintage_year=2026)

The main alternatives risks are illiquidity and valuation lag. PE funds mark fair value quarterly via the GP, with slower repricing than public markets. Ledger volatility looks low but real risk is similar.

Art and collectibles are even more illiquid and volatile in valuation; in a contracting market, sales can be effectively impossible. Storage, insurance, and care costs also add up.


Chapter 21 — The M&A Era: Schwab, UBS-CS, Morgan Stanley, BofA

Wealth management has seen mega M&A in the 2020s.

  • 2020 Morgan Stanley + E*TRADE: $13B. Absorbing retail brokerage.
  • 2020 Charles Schwab + TD Ameritrade: $26B. Retail consolidation.
  • 2021 Morgan Stanley + Eaton Vance: $7B. Asset-management arm.
  • 2022 UBS + Wealthfront (attempt fell through): $1.4B contract, later cancelled.
  • 2023 UBS + Credit Suisse: $3.25B government-led merger.
  • 2024 BlackRock + Preqin: Alternatives data.
  • 2024 BlackRock + Global Infrastructure Partners: Infrastructure platform.
  • 2025 (hypothetical) Citi reshuffle: Strengthen emerging-market PB.

The common drivers: scale economies + alternatives access + digital platforms. Mid-sized PBs that fail to reach $1T+ AUM either get acquired or specialize in niche markets (family PB, digital PB).

# M&A synergy estimation model (conceptual code)
def estimate_ma_synergy(
    target_aum: float,        # acquired AUM
    acquirer_aum: float,
    target_advisors: int,
    target_revenue_rate: float = 0.008,  # 80bps
    cost_synergy_pct: float = 0.25,
    revenue_synergy_pct: float = 0.05,
    retention_rate: float = 0.85,         # advisor retention
) -> dict:
    """Wealth management M&A synergy estimate."""
    retained_aum = target_aum * retention_rate
    target_revenue = retained_aum * target_revenue_rate
    cost_base = target_revenue * 0.60
    cost_savings = cost_base * cost_synergy_pct
    revenue_synergies = retained_aum * target_revenue_rate * revenue_synergy_pct
    total_synergy = cost_savings + revenue_synergies
    return {
        "retained_aum": retained_aum,
        "annual_revenue": target_revenue,
        "cost_savings": cost_savings,
        "revenue_synergies": revenue_synergies,
        "total_annual_synergy": total_synergy,
    }

Advisor retention is the biggest variable. During the UBS-CS integration, a percentage of advisors moved to competitors over 1-2 years, and Pictet, Julius Baer, and Vontobel were the main beneficiaries.


Chapter 22 — Rise of Digital PB: Front, Range, Wealthsimple, Toss PB

Pure robo stays at mass affluent, but digital PB targets HNWI. Simple UX, global asset consolidation, and automated tax optimization are the draws.

  • Front (US): Digital family office for UHNWI. Multi-custodian aggregation + tax optimization.
  • Range (US): Digital PB for HNWI. Financial planning + investment.
  • Wealthsimple (CA): Canada retail + HNWI generalist.
  • Revolut Private (UK, EU): Digital PB integrated with payments.
  • N26 Metal/You (DE, EU): Premium digital banking.
  • Toss Bank PB (KR, in study): Digital-first PB.
  • KakaoBank Gold (KR): Digital banking for the wealthy.
# Digital PB value proposition (conceptual)
digital_pb_value_props:
  ux:
    - mobile_first
    - single_dashboard
    - real_time_view
  cost:
    - low_minimum (`$100K` to `$5M`)
    - flat_fee_or_low_bps
    - no_load_funds
  features:
    - multi_custodian_aggregation
    - automated_rebalancing
    - tax_loss_harvesting
    - estate_planning_assistant
    - philanthropy_tools
  human_touch:
    - on_demand_advisor_chat
    - quarterly_video_review
    - in_person_when_needed
  alternatives:
    - private_market_platform_integration
    - PE_HF_RE_minimum_lowered

Digital PB's limits are multi-generational advisory and family governance — areas where a strong human-advisor relationship is hard to replace; digital PB stays complementary.

That said, in the gap between mass affluent and HNWI ($1M to $10M), digital PB can erode traditional PB.


Chapter 23 — Operational Incidents 2024-2026

PB is conservative but incidents happen. Representative cases between 2024 and 2026.

  • 2023 Q1 UBS-Credit Suisse integration: government-driven emergency merger; some advisors left to Pictet and Julius Baer.
  • 2023 Q4 Julius Baer Signa loss: about $700M provision on Signa Group real-estate exposure.
  • 2024 Q1 Morgan Stanley off-channel comms: SEC fined about $200M for non-retained messaging.
  • 2024 Q3 Korean Securities A PB: Private-fund loss event led to a PB compensation-system overhaul.
  • 2025 Q2 Japanese Trust Bank B PB: System migration delayed quarterly reports.
  • 2025 Q4 U.S. MFO C: Cybersecurity incident leaked information for about 5,000 households.

Key lesson: PB trust, once lost, is hard to rebuild. PB ops must be conservative on risk, strong on compliance, and clear on escalation.

Also, cybersecurity has become a top operational risk in PB. UHNWI are direct targets for spear-phishing and social engineering; MFO and SFO increasingly maintain dedicated cybersecurity teams.


Chapter 24 — The Future: Where Wealth Management Goes 2027-2030

From 2026, the directions for the next 3-5 years.

  1. AI advisor adoption: LLM-based advisory will penetrate PB workflow deeply; fiduciary remains with humans.
  2. Digitization of alternatives: iCapital, CAIS, Moonfare plus new platforms; PE minimums drop below $100K.
  3. Great wealth transfer: Boomer assets pass to children and grandchildren. Estimated 2,500 trillion won in Korea, $84T in the U.S., 1,000 trillion yen in Japan.
  4. ESG and impact investing standardization: Settle definitions of SRI, ESG, and impact and standardize measurement and reporting.
  5. Cryptocurrency integration: BTC and ETH ETFs settle into PB portfolios at 1-5%.
  6. Global residency mobility: HNWI residency and citizenship strategy becomes core PB advisory.
  7. AI-based asset diagnosis: Asset assessment and auto-classification from photos, documents, and voice interviews.
  8. Family office as a service: FaaS platforms cut SFO costs.
  9. Cybersecurity as core PB value: Security level becomes a PB selection criterion.
  10. Regulator integration: Stronger information exchange across SEC, FINRA, MAS, FSA, KOFIA, JFSA.

The common thread: wealth management evolves to a hybrid of algorithms + human advisors. For UHNWI the human advisor's value will not disappear, but their productivity expands with AI tooling.

And global mobility will be the central narrative — Korean, Japanese, and Chinese HNWI relocating to Singapore, Hong Kong, the U.S., and Switzerland will accelerate, and PBs of every country are concentrating on cross-border capability.


Chapter 25 — Practice: Which PB to Pick

To close, a quick user-perspective guide.

Client situationRecommended PB
U.S. resident, $10M+, full-serviceJP Morgan Private Bank
U.S. resident, advisor headcount, accessBank of America Merrill Lynch Wealth
U.S. resident, brokerage + asset management combinedMorgan Stanley Wealth Management
U.S. resident, UHNWI, deal accessGoldman Sachs PWM
U.S. resident, trust, multi-genNorthern Trust or BNY Mellon
Global resident, cross-borderCiti Private Bank or UBS GWM
European resident, multi-generationalPictet, Lombard Odier
Swiss asset protection, fiduciaryPictet or Edmond de Rothschild
Korea resident, commercial bank PBShinhan PWM, KB Gold and Star
Korea resident, securities PBSamsung Securities SNI, Mirae Asset PB
Japan resident, mega-bank PBMizuho Private Wealth, MUFG PWM
Japan resident, securities PBNomura Wealth, Daiwa PWM
Digital-first wealthyFront, Range, Toss PB

The key is the matrix of asset size + asset composition (domestic, overseas, alternatives) + family situation (single or multi-generation) + client preference (human advisor vs digital). Rarely does a single PB solve it all — typically one primary PB plus one or two complementary advisors is the norm.

UHNWI usually maintain a multi-bank structure. Core assets at the primary PB, alternatives via specialized GPs, family assets in a family office, digital assets in a separate custodian. The result of risk diversification and advisory diversification.


References