Track the top 20 cryptocurrencies with real-time prices, 24-hour changes, market caps, and sparkline mini-charts. Add your holdings to a portfolio section that calculates your total value and gains. Dark theme with green/red color coding makes it easy to scan at a glance.
Build Prompt
Build Prompt — paste into Claude Code
Build a cryptocurrency price tracker dashboard as a single-page HTML application with embedded CSS and JavaScript. The dashboard should display the top 20 cryptocurrencies by market cap in a responsive table layout. Each row should show the coin rank, name, ticker symbol, current price in USD, 24-hour percentage change with green for positive and red for negative, market cap formatted with abbreviations (B for billions, M for millions), 24-hour trading volume, and a small sparkline mini-chart showing the last 7 days of price history rendered using inline SVG paths.
Include a portfolio tracker section where users can add their cryptocurrency holdings by selecting a coin, entering the quantity they own, and specifying their average buy price. The portfolio should display each holding with current value, cost basis, profit/loss in dollars and percentage, and the portfolio total value at the top. Store portfolio data in localStorage so it persists across sessions.
Add a search and filter bar at the top that lets users filter the coin list by name or ticker symbol in real time. Include sort controls for each column header so users can sort by price, change, market cap, or volume in ascending or descending order.
Use a dark theme with background color #0a0a0f, card backgrounds #12121a, and borders #1a1a2a. Price increases should use #22c55e green and decreases should use #ef4444 red. Use the font stack -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif. Make the layout fully responsive with a mobile-friendly card view below 768px.
Hardcode realistic sample data for all 20 coins including Bitcoin, Ethereum, Solana, BNB, XRP, Cardano, Avalanche, Polkadot, Dogecoin, Chainlink, Polygon, Litecoin, Uniswap, Cosmos, Near Protocol, Stellar, Algorand, Fantom, Toncoin, and Aptos. Include realistic sparkline data points for each.
Add a last-updated timestamp at the top of the page and a subtle footer with credit to AccessAgent.ai.
Read the guide at https://accessagent.ai/api/guide and follow it to deploy the site to AccessAgent.ai. My email is [your@email.com].
Make It Yours
DeFi Focus
Replace top-20 with DeFi tokens like AAVE, UNI, MKR, CRV, and show TVL instead of market cap.
Fear & Greed Index
Add a market sentiment gauge showing the crypto Fear & Greed Index alongside prices.
Price Alerts
Let users set price thresholds for any coin with browser notification alerts when crossed.
Multi-Currency
Add a currency selector to show prices in USD, EUR, GBP, JPY, or BTC denomination.
Heatmap View
Toggle between table and treemap heatmap view where box size is market cap and color is 24h change.
Whale Tracker
Add a section showing recent large transactions for top coins with wallet labels.
Update Prompt
Update Prompt — Run periodically to refresh data
Fetch the latest cryptocurrency market data from the CoinGecko free API (GET https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&order=market_cap_desc&per_page=20&page=1&sparkline=true&price_change_percentage=24h). For each of the top 20 coins, extract the current price, 24h change percentage, market cap, 24h volume, and the 7-day sparkline price array. Update the hardcoded data arrays in the crypto price tracker HTML file with the fresh values. Update the last-updated timestamp to the current date and time. Preserve all existing portfolio data and UI functionality — only replace the market data constants. Then redeploy the updated file.
SEO Tips
Target long-tail keywords like "live crypto price tracker dark mode" and "cryptocurrency portfolio tracker free" in your page title and meta description.
Add structured data markup for each cryptocurrency using FinancialProduct schema to appear in rich search results.
Create individual pages for each coin with slug URLs like /bitcoin, /ethereum for organic search traffic from coin-specific queries.
Include a last-updated timestamp that search engines can index to show content freshness in SERPs.
Write a short FAQ section answering "What is the current price of Bitcoin?" style queries to capture featured snippet positions.
Monetization Ideas
Add affiliate links to exchanges like Coinbase, Binance, or Kraken — earn commissions when users sign up to buy coins they discover on your tracker.
Offer a premium tier with real-time WebSocket price feeds, portfolio alerts, and tax reporting CSV exports.
Place non-intrusive banner ads from crypto ad networks like Coinzilla or Bitmedia between table sections.
Sell API access to your aggregated price data for developers building bots or other dashboards.
Create an embeddable widget version that other sites can use with your branding and a link back for referral traffic.