← 返回
开发者工具 Key 中文

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...
通过 Quodd API 获取实时股票报价,获取当前价格、每日最高/最低价及美股盘后数据,适用于用户询问股价时。
khaney64
开发者工具 clawhub v0.1.2 2 版本 99964.6 Key: 需要
★ 2
Stars
📥 2,787
下载
💾 229
安装
2
版本
#0.1.0#1.1.0#1.1.1#initial release#latest

概述

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

版本历史

共 2 个版本

  • v0.1.2 当前
    2026-05-03 02:31 安全 安全
  • v1.1.1
    2026-03-28 12:11 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,749
developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 66 📥 179,906
data-analysis

Session Cost

khaney64
分析OpenClaw会话日志,按代理和模型分组报告Token使用量、费用和性能指标。当用户询问API支出时使用...
★ 1 📥 2,674