ETF

ETF Info

The etfInfo data type returns detailed information specific to ETFs, such as the Assets Under Management (AUM) or Net Asset Value (NAV).

=SF(ETF, "etfInfo", metric, "", options)
  • ETF is the ticker symbol of the ETF (e.g., "SPY"). You can use our Symbol Search to find the correct ticker symbol.

  • metric selects what metrics to display (see options below), display all metrics by leaving blank or using "all". Chain together as many metrics as you'd like using &, e.g., "asset&weightPercentage".

  • options adjusts the formatting of the output. There are two available options for etfInfo, (1) "NH" for no header row and (2) "NLI" for no line items (when displaying more than one metric).

The ETF Info metric options are:

  • All ("all")

  • Name ("name")

  • Asset Class ("assetClass")

  • Assets Under Managemet (AUM) ("AUM")

  • Net Asset Value (NAV) ("NAV")

  • Avg. Volume ("avgVolume")

  • Expense Ratio ("expenseRatio")

  • Domicile ("domicile")

  • ETF Company ("etfCompany")

  • Inception Date ("inceptionDate")

  • ISIN ("isin")

  • CUSIP ("cusip")

  • Holdings Count ("holdingsCount")

  • Description ("description")

  • Website ("website")

Tips:

  • ETF Info data does not have global coverage, only selected major markets are included.

  • You can screen stock ticker codes and check if the stock is an ETF by using the "isEtf" sub type of the Company Info function.

Examples

Example 1 - All Metrics

=SF("SPY","etfInfo")
ETF Info Example 1

Example 2 - Display several selected metrics

=SF("SPY","etfInfo","aum&nav&avgVolume")
ETF Info Example 2

Example 3 - Display a single metric

=SF("SPY","etfInfo","expenseRatio")
ETF Info Example 3

Example 4 - Display several metrics with no line items or header

=SF("SPY","etfInfo", "aum&nav&avgVolume", "", "NLI&NH")
ETF Info Example 4

Was this helpful?