Agent skill
quodd
Fetch real-time stock quotes via Quodd API. Get current prices, daily high/low, and after-hours data for US equities. Use when the user asks for stock prices, quotes, market data, or ticker information.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/quodd
Metadata
Additional technical details for this skill
- openclaw
-
{ "emoji": "\ud83d\udcc8", "requires": { "env": [ "QUODD_USERNAME", "QUODD_PASSWORD" ], "bins": [ "python3" ] } }
SKILL.md
Quodd Stock Quotes
Fetch real-time stock quotes for US equities via the Quodd API.
For more information, visit: https://www.quodd.com/stock-and-etf-data
Quick Start
# Get a quote for Apple
python scripts/quote.py AAPL
# Get quotes for multiple tickers
python scripts/quote.py AAPL MSFT META
Prerequisites
Set the following environment variables:
export QUODD_USERNAME="your_username"
export QUODD_PASSWORD="your_password"
Usage
Single Ticker
python scripts/quote.py AAPL
Multiple Tickers
python scripts/quote.py AAPL MSFT META GOOGL
JSON Output
python scripts/quote.py AAPL --format json
Force Token Refresh
python scripts/quote.py AAPL --no-cache
Output Format
Text (Default)
Quodd Stock Quotes
Symbol Date Time High Low Close AH Time AH Price
-------------------------------------------------------------------------------
AAPL 01/29/26 14:30 185.50 180.25 182.63 17:45:30 182.80
JSON
{
"quotes": [
{
"symbol": "AAPL",
"date": "01/29/26",
"time": "14:30",
"high": 185.50,
"low": 180.25,
"close": 182.63,
"after_hours_time": "17:45:30",
"after_hours_price": 182.80
}
]
}
Output Fields
- Symbol - Stock ticker symbol
- Date - Quote date
- Time - Quote time
- High - Day high price
- Low - Day low price
- Close - Last traded price
- AH Time - After hours trade time
- AH Price - After hours price
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?