Quick Start Guide
Get up and running with Tickerdata in minutes with your first stock data formula.
Your First Formula
Let’s fetch your first stock quote using Tickerdata. We’ll use the TICKERDATALIVE function to get the current price of Apple stock.
Select a Cell
Click on any empty cell in your Google Sheet where you want the stock price to appear.
Enter the Formula
Type the following formula:
=TICKERDATALIVE("AAPL", "Price")Press Enter
Press Enter to execute the formula. You should see Apple’s current stock price appear in the cell.
Info
Understanding the Result
The TICKERDATALIVE function returns real-time market data for the specified ticker symbol. The second parameter specifies which data point you want to retrieve.
Basic Syntax
=TICKERDATALIVE(ticker, attribute) | Parameter | Description | Example |
|---|---|---|
| ticker | Stock symbol | “AAPL”, “MSFT”, “BTCUSD” |
| attribute | Data point to retrieve | “Price”, “Market Cap”, “PE” |
Try More Examples
Here are a few more formulas to try:
=TICKERDATALIVE("AAPL", "Market Cap") // Market capitalization
=TICKERDATALIVE("MSFT", "PE") // Price to earnings ratio
=TICKERDATALIVE("GOOGL", "Dividend Yield") // Dividend yield
=TICKERDATALIVE("TSLA", "Sector") // Company sector Tip
Cryptocurrency
For crypto, combine the symbol with the currency code:
=TICKERDATALIVE("BTCUSD", "Price") // Bitcoin price in USD
=TICKERDATALIVE("ETHUSD", "Price") // Ethereum price in USD International Stocks
For international stocks, use exchange suffixes:
=TICKERDATALIVE("MC.PA", "Price") // LVMH on Paris exchange
=TICKERDATALIVE("7203.T", "Price") // Toyota on Tokyo exchange
=TICKERDATALIVE("RELIANCE.NS", "Price") // Reliance on NSE India Building a Simple Watchlist
Create a basic stock watchlist in just a few cells:
| A | B | C |
|---|---|---|
| Stock | Price | PE |
| AAPL | =TICKERDATALIVE(A2, "Price") | =TICKERDATALIVE(A2, "PE") |
| MSFT | =TICKERDATALIVE(A3, "Price") | =TICKERDATALIVE(A3, "PE") |
| GOOGL | =TICKERDATALIVE(A4, "Price") | =TICKERDATALIVE(A4, "PE") |
Tip
Handling Errors
Wrap your formulas in IFERROR to handle cases where data isn’t available:
=IFERROR(TICKERDATALIVE("AAPL", "Price"), "N/A") Next Steps
- Browse the Attribute Explorer to discover all 200+ available data points
- Learn about all available ticker formats including crypto and international stocks
- Explore TICKERDATA for historical financial data
- Build a Portfolio Tracker template