Savvy Trader AI Skill
Retrieve daily OHLCV (Open, High, Low, Close, Volume) price data and real-time quotes for stocks and crypto assets via the Savvy Trader AI plugin API. Designed for straightforward price lookups and multi-asset daily summaries.
Quick Reference
| Function |
Description |
Auth Required |
getSummaries |
Daily OHLCV summary for one or more symbols |
No |
getQuotes |
Real-time quote with price and change data |
No |
Function Specifications
getSummaries
Returns daily OHLCV data for the requested symbols and date range.
Parameters:
- symbols (required): Array of ticker symbols — e.g.,
["AAPL", "BTC", "ETH"]
- date (optional): ISO date string for a specific trading day — e.g.,
"2024-12-31". Defaults to the most recent trading day.
- range (optional): Number of days of history to return — e.g.,
7, 30, 90
Response fields per symbol:
{
"symbol": "AAPL",
"date": "2024-12-31",
"open": 185.20,
"high": 188.44,
"low": 184.60,
"close": 187.15,
"volume": 52340000,
"changePercent": 1.05
}
getQuotes
Returns the current price and change metrics for one or more symbols.
Parameters:
- symbols (required): Array of ticker symbols
Response fields per symbol:
{
"symbol": "BTC",
"price": 67420.50,
"change": 1240.00,
"changePercent": 1.87,
"volume": 28500000000,
"timestamp": "2024-12-31T18:30:00Z"
}
Supported Asset Classes
- US Equities: NYSE and NASDAQ-listed stocks (e.g.,
AAPL, TSLA, NVDA)
- ETFs: Major ETFs (e.g.,
SPY, QQQ, GLD)
- Crypto: Top assets by market cap (e.g.,
BTC, ETH, SOL, AVAX, MATIC)
Agent Behavior
- Default to
getQuotes for "what's the price of X" questions
- Use
getSummaries for trend analysis, charting context, or "how did X do this week"
- Batch symbols in a single call when comparing multiple assets — do not make sequential calls
- Present prices clearly: Always show symbol, price, and 24h/daily change together
- Crypto vs equities: Crypto trades 24/7; note that equity quotes reflect market hours
Output Format
Price quote (single asset)
{symbol}: ${price} ({changePercent:+.2f}% today)
Volume: {volume}
Multi-asset comparison table
| Symbol |
Price |
Today |
Volume |
| BTC |
$67,420 |
+1.87% |
$28.5B |
| ETH |
$3,512 |
+0.94% |
$14.2B |
| SOL |
$178 |
+3.21% |
$3.8B |
OHLCV summary
{symbol} — {date}
Open: ${open} | Close: ${close}
High: ${high} | Low: ${low}
Volume: {volume} | Change: {changePercent:+.2f}%
Notes
- No API key required — Savvy Trader AI provides public endpoints via the LobeChat plugin manifest
- Rate limit: ~60 requests/minute per IP; batch symbols to stay within limits
- Historical data availability varies by asset — most equities have 20+ years, crypto varies
- Prices are delayed ~15 minutes for equities during market hours; crypto is real-time
1---2name: savvy-trader3description: Daily OHLCV summaries and real-time quotes for stocks and crypto via Savvy Trader AI — open, close, high, low, volume, and multi-asset comparison.4license: MIT5---67# Savvy Trader AI Skill89Retrieve daily OHLCV (Open, High, Low, Close, Volume) price data and real-time quotes for stocks and crypto assets via the Savvy Trader AI plugin API. Designed for straightforward price lookups and multi-asset daily summaries.1011## Quick Reference1213| Function | Description | Auth Required |14|----------|-------------|---------------|15| `getSummaries` | Daily OHLCV summary for one or more symbols | No |16| `getQuotes` | Real-time quote with price and change data | No |1718## Function Specifications1920### `getSummaries`2122Returns daily OHLCV data for the requested symbols and date range.2324**Parameters**:25- **symbols** _(required)_: Array of ticker symbols — e.g., `["AAPL", "BTC", "ETH"]`26- **date** _(optional)_: ISO date string for a specific trading day — e.g., `"2024-12-31"`. Defaults to the most recent trading day.27- **range** _(optional)_: Number of days of history to return — e.g., `7`, `30`, `90`2829**Response fields per symbol**:30```json31{32 "symbol": "AAPL",33 "date": "2024-12-31",34 "open": 185.20,35 "high": 188.44,36 "low": 184.60,37 "close": 187.15,38 "volume": 52340000,39 "changePercent": 1.0540}41```4243### `getQuotes`4445Returns the current price and change metrics for one or more symbols.4647**Parameters**:48- **symbols** _(required)_: Array of ticker symbols4950**Response fields per symbol**:51```json52{53 "symbol": "BTC",54 "price": 67420.50,55 "change": 1240.00,56 "changePercent": 1.87,57 "volume": 28500000000,58 "timestamp": "2024-12-31T18:30:00Z"59}60```6162## Supported Asset Classes6364- **US Equities**: NYSE and NASDAQ-listed stocks (e.g., `AAPL`, `TSLA`, `NVDA`)65- **ETFs**: Major ETFs (e.g., `SPY`, `QQQ`, `GLD`)66- **Crypto**: Top assets by market cap (e.g., `BTC`, `ETH`, `SOL`, `AVAX`, `MATIC`)6768## Agent Behavior69701. **Default to `getQuotes`** for "what's the price of X" questions712. **Use `getSummaries`** for trend analysis, charting context, or "how did X do this week"723. **Batch symbols** in a single call when comparing multiple assets — do not make sequential calls734. **Present prices clearly**: Always show symbol, price, and 24h/daily change together745. **Crypto vs equities**: Crypto trades 24/7; note that equity quotes reflect market hours7576## Output Format7778### Price quote (single asset)7980```81{symbol}: ${price} ({changePercent:+.2f}% today)82Volume: {volume}83```8485### Multi-asset comparison table8687| Symbol | Price | Today | Volume |88|--------|-------|-------|--------|89| BTC | $67,420 | +1.87% | $28.5B |90| ETH | $3,512 | +0.94% | $14.2B |91| SOL | $178 | +3.21% | $3.8B |9293### OHLCV summary9495```96{symbol} — {date}97Open: ${open} | Close: ${close}98High: ${high} | Low: ${low}99Volume: {volume} | Change: {changePercent:+.2f}%100```101102## Notes103104- No API key required — Savvy Trader AI provides public endpoints via the LobeChat plugin manifest105- Rate limit: ~60 requests/minute per IP; batch symbols to stay within limits106- Historical data availability varies by asset — most equities have 20+ years, crypto varies107- Prices are delayed ~15 minutes for equities during market hours; crypto is real-time