1. Functions Reference
  2. TICKERDATALIVE Function

TICKERDATALIVE - Real-Time Data

Use the TICKERDATALIVE function to retrieve real-time stock prices, company info, and live metrics.

Overview

The TICKERDATALIVE function retrieves real-time market data including current prices, company information, and live metrics. This is your go-to function for tracking current market conditions. In Excel it is called TICKERDATA.LIVE - see what the functions are called.

Syntax

=TICKERDATALIVE(ticker, attribute)
=TICKERDATA.LIVE(ticker, attribute)
ParameterRequiredDescription
tickerYesThe stock symbol (e.g., “AAPL”, “BTCUSD”)
attributeYesThe live data metric you want to retrieve (browse all)

Basic Examples

Get Current Price

=TICKERDATALIVE("AAPL", "Price")
=TICKERDATA.LIVE("AAPL", "Price")

Returns Apple’s current stock price.

Get Company Name

=TICKERDATALIVE("MSFT", "Company Name")
=TICKERDATA.LIVE("MSFT", "Company Name")

Returns “Microsoft Corporation”.

Get Market Cap

=TICKERDATALIVE("GOOGL", "Market Cap")
=TICKERDATA.LIVE("GOOGL", "Market Cap")

Returns Google’s current market capitalization.

Available Attributes

AttributeDescriptionExample Output
PriceCurrent stock price178.50
BetaStock volatility vs market1.25
Average VolumeAverage volume (formerly “Vol Avg”)52,450,000
Market CapTotal market capitalization2,800,000,000,000
Last DividendAnnual dividend per share (formerly “Dividend”)0.96
Dividend YieldDividend as % of price0.54%
365 Day Range52-week high/low range124.17 - 198.23
Company NameFull company nameApple Inc.
CurrencyTrading currencyUSD
ISINInternational securities IDUS0378331005
CUSIPNorth American security ID037833100
ExchangePrimary exchangeNASDAQ
Exchange Full NameFull exchange nameNASDAQ Global Select
IndustryCompany industryConsumer Electronics
SectorCompany sectorTechnology
CountryHeadquarters countryUS
Full Time EmployeesNumber of employees164,000
AddressCompany headquartersOne Apple Park Way
IPO DateInitial public offering date1980-12-12
Is Actively TradingTrading statusTRUE

Info

The legacy "Exchange Short Name" attribute still works, but it now returns the full exchange name (e.g., "NASDAQ Global Select" instead of the short code "NASDAQ"). Use "Exchange Full Name" going forward, and update any formulas that compare against short codes like "NASDAQ" or "NYSE".

Tip

Looking for a live P/E ratio? Ask the historical function for `"Price To Earnings Ratio"` with `"ttm"` - the trailing-twelve-month P/E is pre-computed from the latest data.

Practical Examples

Building a Watchlist

Create a simple stock watchlist:

StockPriceChangePE (TTM)
AAPL=TICKERDATALIVE("AAPL", "Price")=TICKERDATA.LIVE("AAPL", "Price")-=TICKERDATA("AAPL", "Price To Earnings Ratio", "ttm")=TICKERDATA.DATA("AAPL", "Price To Earnings Ratio", "ttm")
MSFT=TICKERDATALIVE("MSFT", "Price")=TICKERDATA.LIVE("MSFT", "Price")-=TICKERDATA("MSFT", "Price To Earnings Ratio", "ttm")=TICKERDATA.DATA("MSFT", "Price To Earnings Ratio", "ttm")
GOOGL=TICKERDATALIVE("GOOGL", "Price")=TICKERDATA.LIVE("GOOGL", "Price")-=TICKERDATA("GOOGL", "Price To Earnings Ratio", "ttm")=TICKERDATA.DATA("GOOGL", "Price To Earnings Ratio", "ttm")

Company Information Card

One formula per field builds a profile card - company name, sector, industry, employee count, country:

=TICKERDATALIVE("NVDA", "Company Name")
=TICKERDATA.LIVE("NVDA", "Company Name")

Dividend Tracking

=TICKERDATALIVE("JNJ", "Last Dividend")
=TICKERDATA.LIVE("JNJ", "Last Dividend")
=TICKERDATALIVE("JNJ", "Dividend Yield")
=TICKERDATA.LIVE("JNJ", "Dividend Yield")

Valuation Quick Check

Combine a live price with TTM valuation ratios from the historical function:

=TICKERDATALIVE("AAPL", "Price")
=TICKERDATA.LIVE("AAPL", "Price")
=TICKERDATA("AAPL", "Price To Earnings Ratio", "ttm")
=TICKERDATA.DATA("AAPL", "Price To Earnings Ratio", "ttm")

Using with Different Asset Classes

US Stocks

Use the standard ticker symbol:

=TICKERDATALIVE("AAPL", "Price")
=TICKERDATA.LIVE("AAPL", "Price")

Cryptocurrency

Combine the coin symbol with the fiat currency code (no hyphen). Bitcoin in US dollars:

=TICKERDATALIVE("BTCUSD", "Price")
=TICKERDATA.LIVE("BTCUSD", "Price")

Warning

For crypto, you must combine the symbol with the currency. "BTC" alone will not work - use "BTCUSD".

International Stocks

Use exchange suffixes (similar to Yahoo Finance). LVMH on the Paris exchange:

=TICKERDATALIVE("MC.PA", "Price")
=TICKERDATA.LIVE("MC.PA", "Price")

See Ticker Symbols for the rest of the suffixes.

Data Refresh

TICKERDATALIVE data updates based on market conditions:

  • During market hours: Quote data updates in real-time when you refresh
  • After hours: Use dedicated after-hours endpoints for pre-market and post-market quotes
  • End of day (EOD): Historical data updates after market close

To manually refresh all data: ExtensionsTickerdataRefresh.

Excel never re-runs these formulas on its own. Refresh from HomeTickerdataRefresh, or from the task pane - see Refreshing Data in Excel.

Info

Data refresh rates are the same across all subscription tiers. Tier differences only affect API rate limits and available endpoints.

Pro Tips

  1. Use cell references for flexible watchlists, e.g. =TICKERDATALIVE(A1, "Price")=TICKERDATA.LIVE(A1, "Price")

  2. Combine with TICKERDATA for comprehensive analysis - use TICKERDATALIVE for current data and TICKERDATA for historical comparisons

  3. Check “Is Actively Trading” to verify a stock is still tradeable before building models around it

Common Errors

ErrorCauseSolution
#VALUE!Invalid ticker formatCheck ticker spelling and format (see asset class formatting above)
#N/ATicker not foundVerify the ticker exists and is supported
Loading... (Sheets) or #BUSY! (Excel)Fetching dataWait, or refresh from the Tickerdata menu

Didn't find what you came for?

Tell us the sheet you're trying to make and we'll point you at the right numbers.

Tell us what you're trying to make →