Savvy Trader AI Skill

SkillCommerce & finance

Daily OHLCV summaries and real-time quotes for stocks and crypto via Savvy Trader AI — open, close, high, low, volume, and multi-asset comparison.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Savvy Trader AI Skill skill

What this skill tells your AI

The instructions your AI receives, as published by nirholas/three.ws in data/skills/portfolio/savvy-trader/SKILL.md and read by ahel’s review.

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

FunctionDescriptionAuth Required
getSummariesDaily OHLCV summary for one or more symbolsNo
getQuotesReal-time quote with price and change dataNo

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

  1. Default to getQuotes for "what's the price of X" questions
  2. Use getSummaries for trend analysis, charting context, or "how did X do this week"
  3. Batch symbols in a single call when comparing multiple assets — do not make sequential calls
  4. Present prices clearly: Always show symbol, price, and 24h/daily change together
  5. 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

SymbolPriceTodayVolume
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

Signals

GitHub stars
114
Forks
29
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
savvy-trader
Source
github.com/nirholas/three.ws