Track Solana, DOGE & Altcoin Prices in Google Sheets (2026)

·8 min read

TL;DR

GOOGLEFINANCE doesn't support altcoins like SOL, DOGE, or SHIB. CoinTable, a Google Sheets add-on for cryptocurrency prices, covers 10,000+ coins with a single formula: =CT_PRICE("SOL"). This guide shows you how to track any altcoin's price, market cap, and 24h change directly in your spreadsheet.

The Altcoin Problem: GOOGLEFINANCE Doesn't Work

Try typing =GOOGLEFINANCE("SOLUSD") into Google Sheets. You'll get a #N/A error. The same happens with DOGE, SHIB, PEPE, ARB, and virtually every altcoin. GOOGLEFINANCE only supports a handful of crypto pairs — mostly BTC and ETH against USD — and even those are unreliable and delayed.

If you need live altcoin prices in Google Sheets, you need a dedicated crypto add-on. Our full guide on how to get crypto prices in Google Sheets covers all the options, but the fastest approach is CoinTable: install it, type a formula, and get a live price.

CoinTable Supports 10,000+ Coins

CoinTable pulls data from CoinGecko's API, which means any coin listed there is available in your spreadsheet. That includes every major altcoin, most mid-caps, and thousands of micro-caps.

The core formula is simple:

=CT_PRICE("TICKER")

Replace TICKER with any coin's symbol. Here are formulas for the most popular altcoins:

CoinFormulaExample Output
Solana=CT_PRICE("SOL")$142.50
Dogecoin=CT_PRICE("DOGE")$0.165
Shiba Inu=CT_PRICE("SHIB")$0.0000142
Pepe=CT_PRICE("PEPE")$0.0000089
Arbitrum=CT_PRICE("ARB")$1.15
Optimism=CT_PRICE("OP")$2.30
Avalanche=CT_PRICE("AVAX")$35.20
Chainlink=CT_PRICE("LINK")$15.80
Uniswap=CT_PRICE("UNI")$7.45
Aave=CT_PRICE("AAVE")$92.30

Every formula returns the current USD price. To get prices in EUR, GBP, or another fiat currency, pass a second argument: =CT_PRICE("SOL", "EUR").

Build a Multi-Coin Altcoin Watchlist

A price alone isn't enough to evaluate an altcoin. You want 24h change, market cap, volume, and rank — all in one view. CoinTable provides dedicated formulas for each metric.

Step 1: Set Up Your Columns

Create a sheet with the ticker symbol in column A and formulas in columns B through F:

B2: =CT_PRICE(A2)
C2: =CT_CHANGE(A2)
D2: =CT_MARKETCAP(A2)
E2: =CT_VOLUME(A2)
F2: =CT_RANK(A2)

Step 2: Add Your Altcoins

Type one ticker per row in column A, then drag the formulas down.

Complete Watchlist Layout

TickerPrice24h ChangeMarket CapVolumeRank
SOL=CT_PRICE("SOL")=CT_CHANGE("SOL")=CT_MARKETCAP("SOL")=CT_VOLUME("SOL")=CT_RANK("SOL")
DOGE=CT_PRICE("DOGE")=CT_CHANGE("DOGE")=CT_MARKETCAP("DOGE")=CT_VOLUME("DOGE")=CT_RANK("DOGE")
SHIB=CT_PRICE("SHIB")=CT_CHANGE("SHIB")=CT_MARKETCAP("SHIB")=CT_VOLUME("SHIB")=CT_RANK("SHIB")
AVAX=CT_PRICE("AVAX")=CT_CHANGE("AVAX")=CT_MARKETCAP("AVAX")=CT_VOLUME("AVAX")=CT_RANK("AVAX")
LINK=CT_PRICE("LINK")=CT_CHANGE("LINK")=CT_MARKETCAP("LINK")=CT_VOLUME("LINK")=CT_RANK("LINK")
ARB=CT_PRICE("ARB")=CT_CHANGE("ARB")=CT_MARKETCAP("ARB")=CT_VOLUME("ARB")=CT_RANK("ARB")

Step 3: Add Conditional Formatting

Select the 24h Change column, go to Format → Conditional formatting, and set:

This gives you an instant visual signal for which altcoins are pumping and which are dumping.

Tracking Altcoin Performance Over Time

A watchlist shows you the current state. To track performance over time, add a historical log.

Daily Snapshot Approach

  1. Create a new sheet called "History"
  2. Each day (or week), record the date and prices:
DateSOLDOGEAVAXLINK
2026-03-01$138.20$0.158$33.10$14.90
2026-03-08$141.80$0.162$34.75$15.40
2026-03-15$142.50$0.165$35.20$15.80
  1. Use Google Sheets' built-in charting to visualize trends

If you want to automate this, set up a Google Apps Script trigger that copies current CoinTable values to the history sheet once per day.

Comparing BTC and ETH to Altcoins

You might already track Bitcoin price in Google Sheets or track Ethereum price in Google Sheets. Adding altcoins to the same sheet lets you compare performance side by side.

Relative Performance Formula

To see how an altcoin performs relative to BTC over 24 hours:

=CT_CHANGE("SOL") - CT_CHANGE("BTC")

A positive result means SOL outperformed BTC that day. Build a column with this formula for each altcoin in your watchlist and you'll quickly spot which assets are gaining ground against Bitcoin.

How to Find Any Coin's Ticker Symbol

CoinTable uses the same ticker symbols as CoinGecko. If you're not sure what symbol to use:

  1. Go to CoinGecko or CoinMarketCap
  2. Search for the coin by name
  3. Look for the ticker symbol (usually 3-5 uppercase letters)
  4. Use that symbol in your CoinTable formula

Common Gotchas

Layer 2 and DeFi Token Tracking

A growing category of altcoins lives on Layer 2 networks and DeFi protocols. CoinTable supports these tokens just as easily as Layer 1 coins.

CategoryTokenFormulaDescription
L2Arbitrum=CT_PRICE("ARB")Ethereum L2 scaling
L2Optimism=CT_PRICE("OP")Ethereum L2 scaling
L2Polygon=CT_PRICE("POL")Ethereum sidechain
DeFiUniswap=CT_PRICE("UNI")DEX governance token
DeFiAave=CT_PRICE("AAVE")Lending protocol
DeFiMaker=CT_PRICE("MKR")Stablecoin protocol
DeFiLido=CT_PRICE("LDO")Liquid staking
AIRender=CT_PRICE("RENDER")GPU rendering network
AIFetch.ai=CT_PRICE("FET")AI agents

Tracking Altcoin Pairs Against BTC

To see how much an altcoin is worth in BTC rather than USD, divide its price by Bitcoin's price:

=CT_PRICE("SOL") / CT_PRICE("BTC")

This returns the SOL/BTC ratio. Watching this ratio over time tells you whether an altcoin is outperforming or underperforming Bitcoin — useful for deciding when to rotate between positions.

Building an Altcoin Alert System

Google Sheets doesn't have native price alerts, but you can build a simple alert system using conditional formatting and helper columns.

Step 1: Define Target Prices

Add columns for your buy and sell targets:

TickerPriceBuy TargetSell TargetSignal
SOL=CT_PRICE("SOL")$120$180=IF(B2<=C2,"BUY",IF(B2>=D2,"SELL","HOLD"))
DOGE=CT_PRICE("DOGE")$0.12$0.25=IF(B3<=C3,"BUY",IF(B3>=D3,"SELL","HOLD"))
AVAX=CT_PRICE("AVAX")$28$50=IF(B4<=C4,"BUY",IF(B4>=D4,"SELL","HOLD"))

Step 2: Add Conditional Formatting

Apply conditional formatting to the Signal column:

Step 3: Email Notifications (Optional)

For actual email alerts, add a Google Apps Script:

function checkAlerts() {
  var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Watchlist");
  var data = sheet.getDataRange().getValues();
  for (var i = 1; i < data.length; i++) {
    if (data[i][4] === "BUY" || data[i][4] === "SELL") {
      MailApp.sendEmail("you@email.com",
        data[i][0] + " Alert: " + data[i][4],
        data[i][0] + " is at $" + data[i][1]);
    }
  }
}

Set this to run every hour via Extensions → Apps Script → Triggers.

Altcoins vs. GOOGLEFINANCE: Full Comparison

FeatureGOOGLEFINANCECoinTable
Altcoin supportBTC and ETH only10,000+ coins
Data freshness20+ minute delayNear real-time
Market cap dataNot available=CT_MARKETCAP()
Volume dataNot available=CT_VOLUME()
Coin rankingNot available=CT_RANK()
Multi-currencyLimited30+ fiat currencies

For a deeper comparison, see our article on GOOGLEFINANCE crypto limitations.

Putting It All Together

The fastest way to start tracking altcoins in Google Sheets:

  1. Install CoinTableGet it from Google Workspace Marketplace
  2. Open a new sheet — Type your altcoin tickers in column A
  3. Add formulas — Use =CT_PRICE(A2), =CT_CHANGE(A2), =CT_MARKETCAP(A2) in adjacent columns
  4. Format the sheet — Apply conditional formatting and number formats
  5. Monitor — CoinTable updates prices automatically

If you want pre-built layouts for portfolio tracking, DCA calculators, and more, check out our best crypto add-ons for Google Sheets collection.

CoinTable's free tier gives you 300 requests per month — enough to track around 15-20 altcoins with regular refreshes. The Plus plan ($5/month) bumps that to unlimited requests with auto-refresh for serious altcoin watchers.

Frequently Asked Questions

Can I get Solana price in Google Sheets?

Yes. Install the CoinTable add-on and type =CT_PRICE("SOL") in any cell. GOOGLEFINANCE does not reliably support Solana. CoinTable supports SOL and 10,000+ other cryptocurrencies.

Does GOOGLEFINANCE support altcoins?

No. GOOGLEFINANCE only supports approximately 10-15 major cryptocurrencies (BTC, ETH, LTC, etc.). It does not support altcoins like SOL, DOGE, SHIB, PEPE, ARB, or OP. Use CoinTable for altcoin coverage.

How do I track meme coin prices in Google Sheets?

Install CoinTable and use =CT_PRICE("DOGE") for Dogecoin, =CT_PRICE("SHIB") for Shiba Inu, =CT_PRICE("PEPE") for Pepe, and so on. CoinTable supports all major meme coins and 10,000+ tokens total.

How do I find the right ticker for an altcoin?

CoinTable uses the same ticker symbols as CoinGecko and CoinMarketCap. Check either site to find the correct ticker symbol for your coin. Common tickers: SOL (Solana), DOGE (Dogecoin), SHIB (Shiba Inu), ARB (Arbitrum), OP (Optimism).

Can I build a multi-coin watchlist in Google Sheets?

Yes. List your coin tickers in column A, then use =CT_PRICE(A2), =CT_CHANGE(A2), =CT_MARKETCAP(A2), and =CT_RANK(A2) to create a live watchlist. Add conditional formatting to highlight positive/negative changes.

Stop copying prices manually

Free covers 300 requests a month. Plus is $5/month for unlimited requests and 10,000+ coins.