Track Solana, DOGE & Altcoin Prices in Google Sheets (2026)
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:
| Coin | Formula | Example 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
| Ticker | Price | 24h Change | Market Cap | Volume | Rank |
|---|---|---|---|---|---|
| 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:
- Green background when the value is greater than 0
- Red background when the value is less than 0
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
- Create a new sheet called "History"
- Each day (or week), record the date and prices:
| Date | SOL | DOGE | AVAX | LINK |
|---|---|---|---|---|
| 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 |
- 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:
- Go to CoinGecko or CoinMarketCap
- Search for the coin by name
- Look for the ticker symbol (usually 3-5 uppercase letters)
- Use that symbol in your CoinTable formula
Common Gotchas
- Wrapped tokens: Use
WBTCfor Wrapped Bitcoin, notBTC - Multiple tokens with the same ticker: Some obscure coins share ticker symbols. CoinTable returns the highest-market-cap coin by default
- New listings: Very new coins may take a few days to appear in CoinGecko's API
- Stablecoins: Yes, you can track them too —
=CT_PRICE("USDT")returns a value near $1.00
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.
Popular L2 and DeFi Tokens
| Category | Token | Formula | Description |
|---|---|---|---|
| L2 | Arbitrum | =CT_PRICE("ARB") | Ethereum L2 scaling |
| L2 | Optimism | =CT_PRICE("OP") | Ethereum L2 scaling |
| L2 | Polygon | =CT_PRICE("POL") | Ethereum sidechain |
| DeFi | Uniswap | =CT_PRICE("UNI") | DEX governance token |
| DeFi | Aave | =CT_PRICE("AAVE") | Lending protocol |
| DeFi | Maker | =CT_PRICE("MKR") | Stablecoin protocol |
| DeFi | Lido | =CT_PRICE("LDO") | Liquid staking |
| AI | Render | =CT_PRICE("RENDER") | GPU rendering network |
| AI | Fetch.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:
| Ticker | Price | Buy Target | Sell Target | Signal |
|---|---|---|---|---|
| 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:
- Green text for "BUY"
- Red text for "SELL"
- Gray text for "HOLD"
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
| Feature | GOOGLEFINANCE | CoinTable |
|---|---|---|
| Altcoin support | BTC and ETH only | 10,000+ coins |
| Data freshness | 20+ minute delay | Near real-time |
| Market cap data | Not available | =CT_MARKETCAP() |
| Volume data | Not available | =CT_VOLUME() |
| Coin ranking | Not available | =CT_RANK() |
| Multi-currency | Limited | 30+ 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:
- Install CoinTable — Get it from Google Workspace Marketplace
- Open a new sheet — Type your altcoin tickers in column A
- Add formulas — Use
=CT_PRICE(A2),=CT_CHANGE(A2),=CT_MARKETCAP(A2)in adjacent columns - Format the sheet — Apply conditional formatting and number formats
- 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.
Related Articles
View allBest Crypto Add-ons for Google Sheets (2026)
Compare the top 5 crypto add-ons for Google Sheets in 2026. CoinTable, CoinGecko, Cryptofinance, Cryptosheets, and Wisesheets reviewed.
10 min readGOOGLEFINANCE Crypto — Limitations & Better Alternatives (2026)
GOOGLEFINANCE only supports ~10 crypto coins with 20-min delay. Learn its limitations and switch to CoinTable for 10,000+ coins in Google Sheets.
8 min readTrack Bitcoin Price in Google Sheets (2026 Guide)
Get live Bitcoin price in Google Sheets with =CT_PRICE("BTC"). 4 methods compared: CoinTable, GOOGLEFINANCE, API, Apps Script. Free setup in 30 seconds.
8 min read