Strasmore Research
Learn Matt ConnorBy Matt Connor · data as of August 10, 2026 · refreshed weekly

ETN vs ETF: the credit risk you own

ETN vs ETF: one owns assets, the other is unsecured bank debt. See what happened to holders when issuers failed or called the notes, with the data.

The ETN vs ETF question comes down to what sits behind the ticker. An ETF owns a pool of assets. An ETN, short for exchange traded note, owns nothing at all: it is senior unsecured debt issued by a bank, a written promise to pay whatever an index formula is worth on a stated date. Both trade on the same exchanges and can track the same index. Only one of them holds anything if the sponsor stops paying.

ETN vs ETF: what you actually own

An ETF is a fund. It holds securities, publishes a net asset value once a day, and lets a small group of large broker dealers swap baskets of those securities for new fund shares or hand shares back for the securities. That mechanism, covered in our ETF creation and redemption guide, is what pins the market price near the value of the holdings. When the price wanders, the arbitrage pays someone to close the gap, which is the subject of ETF premium and discount to NAV.

An ETN has no holdings, so it has no net asset value. What the issuer publishes instead is an indicative value: the current output of the formula written in the prospectus. It is an accounting figure, not a claim on a portfolio. The issuer may hedge its exposure or it may not, and it is under no obligation to tell you. Your position is a line item in the unsecured debt stack of a bank, ranked alongside its other senior notes.

How long do funds and notes actually trade?

The two wrappers end their lives differently. A fund that closes sells its holdings and mails the cash to shareholders. A note ends on the issuer's terms: at maturity, at a call, or at an acceleration event written into the contract. Pull the trading history of a few well known tickers and the difference shows up without reading a single prospectus.

QueryTrading history: funds that hold assets vs exchange traded notes
The exact SQL behind every number
SELECT
    ticker                                                       AS symbol,
    multiIf(ticker IN ('XIV', 'TVIX', 'UGAZ', 'DGAZ', 'DJP'),
            'unsecured note',
            'holds assets')                                      AS structure,
    formatDateTime(min(date), '%b %e, %Y')                       AS first_print,
    formatDateTime(max(date), '%b %e, %Y')                       AS last_print,
    toUInt32(uniqExact(date))                                    AS sessions
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('XIV', 'TVIX', 'UGAZ', 'DGAZ', 'DJP', 'SPY', 'GLD', 'USO')
  AND ticker NOT IN ('SPCX')
  AND date >= '2006-01-01'
GROUP BY ticker
ORDER BY max(date) ASC, sessions ASC
Run this yourself

The first row belongs to XIV, a note that printed its last session on Feb 15, 2018 after 1816 trading days. Several of the other notes in the panel stopped years ago too, on a handful of shared end dates. The asset holding funds sit at the bottom and kept going: SPY has printed 5182 sessions inside this window and was still printing as of Aug 10, 2026.

What happens if the ETN issuer goes bankrupt?

This one is not hypothetical. Lehman Brothers listed three Opta branded ETNs in early 2008. When the firm filed for bankruptcy that September, those notes held no portfolio that could be sold and returned. Holders became unsecured creditors of the estate, queued with every other senior bondholder, and recovered cents on the dollar years later through the claims process.

Compare that with a fund. An ETF's securities sit with a custodian, held for the fund and segregated from the sponsor's own balance sheet. A sponsor that fails is an operational problem: the fund gets a new manager, or it liquidates and the proceeds go to shareholders. The portfolio is never part of the sponsor's estate. That single difference is the whole of ETN credit risk, and it appears in no expense ratio and on no tracking chart.

Can an issuer call a note or stop issuing units?

Yes to both, and the terms run broader than most first time buyers expect. A typical ETN prospectus reserves the right to redeem the notes early at the indicative value, and the right to stop issuing new units at any time.

The second right is the expensive one. A note's price stays near its indicative value through the same arbitrage that works on a fund: when the note trades rich, a dealer sells it and buys the hedge, closing the gap. That trade needs a supply of new units. Once the issuer caps issuance, the note becomes a closed pool, and it can hold a premium over its published indicative value for months. In 2012 the issuer of a large pipeline partnership note hit its issuance limit and stopped creating units, and the note carried a visible premium for an extended stretch afterward. Anyone buying at that premium paid for value the contract never owed them. At maturity a note pays the formula, not the screen price.

Leveraged and inverse notes, and the 2018 termination

Leveraged and inverse products reset their exposure every day, which pulls the path of returns away from a simple multiple of the index over any span longer than one session. Our guide to how leveraged ETFs work walks through that arithmetic. Notes stack a second clause on top: an acceleration provision letting the issuer end the note early if the indicative value falls past a stated threshold in a single day.

In February 2018 that clause was exercised on an inverse volatility note. The daily closes carry the story without commentary.

QueryDaily closes of an inverse volatility note through its final sessions, Jan to Feb 2018
The exact SQL behind every number
SELECT
    toString(date)                        AS session_date,
    formatDateTime(date, '%b %e')         AS session_label,
    round(toFloat64(max(close)), 2)       AS closing_price
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'XIV'
  AND date >= '2018-01-02'
  AND date <= '2018-02-23'
GROUP BY date
ORDER BY date
Run this yourself

The note opened the window at $138.69 on Jan 2 and printed its last close in the window at $6.04 on Feb 15, 32 sessions in total. Holders got no vote. The acceleration was a contract term disclosed in the prospectus, and the note settled at a value the issuer calculated rather than at the final screen price.

Why do ETNs still exist?

The wrapper survives for reasons that are real.

Tracking is the clearest one. A note has no tracking error by construction. The issuer owes the formula, so no manager buys at bad prices, no idle cash drags, and no futures roll misses the roll the index assumes. A fund chasing a difficult index has to buy and roll the exposure itself, and it drifts.

Access is the other. Some exposures are awkward for a fund to hold: markets with foreign ownership limits, futures curves where position limits bind, strategies with turnover a fund would struggle to execute. A bank can write a note on any of them.

Then there is the shape of the cash flows. Many notes pay nothing until you sell or the note matures, which moves the timing of the tax event rather than only its size. Treatment varies by note type, and commodity and currency linked notes have their own rules, so check the current treatment for a specific note with a tax professional rather than trusting a rate quoted in an article. The structural argument outlives the rates. The absence of distributions is visible in the data.

QueryCash distributions over the last three years: funds vs notes
The exact SQL behind every number
SELECT
    u.symbol                                             AS symbol,
    u.structure                                          AS structure,
    toUInt32(countIf(d.ticker != ''))                    AS payments_3y,
    round(coalesce(sum(d.cash_amount), 0), 4)            AS cash_per_share_3y
FROM
(
    SELECT
        symbol,
        multiIf(symbol IN ('VXX', 'DJP'), 'unsecured note', 'holds assets') AS structure
    FROM
    (
        SELECT arrayJoin(['SPY', 'VOO', 'SCHD', 'VXX', 'DJP']) AS symbol
    )
) AS u
LEFT JOIN
(
    SELECT
        ticker,
        toFloat64(cash_amount) AS cash_amount
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= today() - 1095
      AND ticker IN ('SPY', 'VOO', 'SCHD', 'VXX', 'DJP')
) AS d ON d.ticker = u.symbol
GROUP BY u.symbol, u.structure
ORDER BY cash_per_share_3y DESC, u.symbol ASC
Run this yourself

Over the last three years SPY paid $21.5359 per share across 12 distributions, cash collected on stock the fund owned and passed straight through, the same plumbing that separates mutual funds from ETFs. The notes at the bottom of the panel paid $0 per share over the identical window. A note that does pay a coupon deserves a second look: that payment is another unsecured promise from the same issuer.

Does it own anything, and who owes you?

These questions settle what a ticker actually is.

  • Does it own anything? A sponsor page either lists holdings or it does not. A note has none.
  • Who owes you? The issuer's name sits on the cover of the prospectus. That entity is your counterparty, and its credit is your floor.
  • Can it end early? Search the document for maturity, call, redemption, and acceleration.
  • Is issuance open? A note whose issuer has suspended new units can drift above its indicative value and stay there.
  • What is it quoted against? A fund publishes a NAV each day. A note publishes an indicative value the issuer calculates.

FAQ

What is the difference between an ETN and an ETF?

An ETF is a fund that owns a portfolio and publishes a net asset value. An ETN is senior unsecured debt issued by a bank, backed by no assets, promising the value of an index formula on a stated date. Both trade on an exchange under a ticker, which is why the distinction is easy to miss.

What happens to an ETN if the issuer goes bankrupt?

The note becomes an unsecured claim on the estate. No segregated portfolio exists to sell and distribute. The three Lehman Brothers ETNs of 2008 are the worked example: holders queued with other senior creditors and recovered a fraction of face value years later.

Do ETNs have tracking error?

Not by construction. The issuer owes the index formula less the stated fee, so the note's calculated value matches the index. Market price is a separate matter. A note can trade above or below its indicative value, particularly once the issuer stops issuing new units.

Can an ETN be called or terminated early?

Yes. Most prospectuses reserve a call right for the issuer, and leveraged or inverse notes add an acceleration clause that applies if the indicative value falls past a stated threshold in one day. Termination pays the calculated redemption value, not the last traded price.

Do ETNs pay dividends?

Most pay nothing while you hold them, and the index they track is usually a total return version that accrues income internally. A few notes do pay a coupon, and that coupon ranks as an unsecured obligation of the issuer like the rest of the note.


Every panel above ships with the SQL that produced it. Swap in a ticker you follow and run the same checks on the Strasmore terminal.

#etfs#etns#credit risk#structured products#tracking