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.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "quodd" with this command: npx skills add khaney64/quodd

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
python3 /home/claw/.openclaw/workspace/skills/quodd/scripts/quote.py AAPL

# Get quotes for multiple tickers
python3 /home/claw/.openclaw/workspace/skills/quodd/scripts/quote.py AAPL MSFT META

Prerequisites

Requires QUODD_USERNAME and QUODD_PASSWORD environment variables to be set.

Usage

Single Ticker

python3 /home/claw/.openclaw/workspace/skills/quodd/scripts/quote.py AAPL

Multiple Tickers

python3 /home/claw/.openclaw/workspace/skills/quodd/scripts/quote.py AAPL MSFT META GOOGL

JSON Output

python3 /home/claw/.openclaw/workspace/skills/quodd/scripts/quote.py AAPL --format json

Force Token Refresh

python3 /home/claw/.openclaw/workspace/skills/quodd/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

Notes

  • Authentication tokens are cached at ~/.openclaw/credentials/quodd-token.json for 20 hours
  • Use --no-cache if you encounter authentication errors after credential changes

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Meeting Notes

Extract and organize investor questions and project team answers from meeting transcripts into structured, time-sequenced notes with clear, minimal topic tit...

Registry Source
1.6K0Profile unavailable
Research

LLM Loop Breaker

Two-layer defense for Openclaw gateway: kills hallucinating LLM streams via entropy analysis, and watchdogs host CPU/RAM/Disk to prevent resource exhaustion.

Registry SourceRecently Updated
810Profile unavailable
General

qg-skill-sync

从团队 Git 仓库同步最新技能到本机 OpenClaw。支持首次设置、定时自动更新、手动同步和卸载。当用户需要同步技能、设置技能同步、安装或更新团队技能,或提到「技能同步」「同步技能」时使用。

Registry SourceRecently Updated
3361Profile unavailable
General

release

No summary provided by upstream source.

Repository SourceNeeds Review
1.1K-tobi