Track real-time cryptocurrency prices across exchanges with historical data and alerts.
Provides price data infrastructure for dependent skills (portfolio, tax, DeFi, arbitrage).
Use when checking crypto prices, monitoring markets, or fetching historical price data.
Trigger with phrases like "check price", "BTC price", "crypto prices", "price history",
"get quote for", "what's ETH trading at", "show me top coins", or "track my watchlist".
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Track real-time cryptocurrency prices across exchanges with historical data and alerts.
Provides price data infrastructure for dependent skills (portfolio, tax, DeFi, arbitrage).
Use when checking crypto prices, monitoring markets, or fetching historical price data.
Trigger with phrases like "check price", "BTC price", "crypto prices", "price history",
"get quote for", "what's ETH trading at", "show me top coins", or "track my watchlist".
allowed-tools
Read, Write, Edit, Grep, Glob, Bash(python:*)
version
2.0.0
author
Jeremy Longshore <jeremy@intentsolutions.io>
license
MIT
Tracking Crypto Prices
Overview
Foundation skill providing real-time and historical cryptocurrency price data. This skill is the data layer for the crypto plugin ecosystem - 10+ other skills depend on it for price information.
Key Capabilities:
Real-time prices for 10,000+ cryptocurrencies
Historical OHLCV data (1 day to all-time)
Multi-currency support (USD, EUR, GBP, 30+ currencies)
Intelligent caching to minimize API calls
Predefined and custom watchlists
Export to CSV/JSON for analysis
Dependent Skills:
This skill provides price data to: market-movers-scanner, crypto-portfolio-tracker, crypto-tax-calculator, defi-yield-optimizer, liquidity-pool-analyzer, staking-rewards-optimizer, crypto-derivatives-tracker, dex-aggregator-router, options-flow-analyzer, arbitrage-opportunity-finder.
Prerequisites
Install required dependencies:
pip install requests pandas yfinance
Optional for advanced features:
pip install python-dotenv # For API key management
# Top 10 by market cap
python {baseDir}/scripts/price_tracker.py --watchlist top10
# DeFi tokens
python {baseDir}/scripts/price_tracker.py --watchlist defi
# Layer 2 tokens
python {baseDir}/scripts/price_tracker.py --watchlist layer2
Available watchlists: top10, defi, layer2, stablecoins, memecoins
Step 3: Fetch Historical Data
Get OHLCV (Open, High, Low, Close, Volume) history:
# Last 30 days
python {baseDir}/scripts/price_tracker.py --symbol BTC --period 30d
# Last 90 days with CSV export
python {baseDir}/scripts/price_tracker.py --symbol BTC --period 90d --output csv
# Custom date range
python {baseDir}/scripts/price_tracker.py --symbol ETH --start 2024-01-01 --end 2024-12-31
Step 4: Configure Settings
Edit {baseDir}/config/settings.yaml to customize:
cache:spot_ttl:30# Seconds to cache spot priceshistorical_ttl:3600# Seconds to cache historical datacurrency:default:usd# Default fiat currencywatchlists:custom:# Add your own watchlist-BTC-ETH-SOL
Output
Price Table (Default)
================================================================================
CRYPTO PRICES Updated: [timestamp]
================================================================================
Symbol Price (USD) 24h Change Volume (24h) Market Cap
--------------------------------------------------------------------------------
BTC $97,234.56 +2.34% $28.5B $1.92T
ETH $3,456.78 +1.87% $12.3B $415.2B
SOL $142.34 +5.12% $2.1B $61.4B
--------------------------------------------------------------------------------
Total 24h Change: +2.44% (weighted)
================================================================================