跳至主要内容
小龙虾小龙虾AI
🤖

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...

下载3.0k
星标2
版本0.1.2
金融财务
安全通过

技能说明


name: quodd description: 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. metadata: {"openclaw":{"emoji":"📈","requires":{"bins":["python3"],"env":["QUODD_USERNAME","QUODD_PASSWORD"]}}}

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

如何使用「Quodd」?

  1. 打开小龙虾AI(Web 或 iOS App)
  2. 点击上方「立即使用」按钮,或在对话框中输入任务描述
  3. 小龙虾AI 会自动匹配并调用「Quodd技能完成任务
  4. 结果即时呈现,支持继续对话优化

相关技能