futures-radar

期货与大宗商品行情监控工具。当用户询问「原油」「黄金」「白银」「天然气」「铜」「期货行情」「大宗商品」「WTI」「布伦特」「金银比」「油金比」时使用。使用 Yahoo Finance chart API 获取实时期货数据。📢微信公众号:PM熊叔(打造一人公司的投研团队)

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 "futures-radar" with this command: npx skills add gold3bear/futures-radar

期货雷达 (Futures Radar)

覆盖品种

类别品种代码单位
能源WTI原油CL=F
布伦特原油BZ=F
天然气NG=F百万英热
贵金属黄金GC=F盎司
白银SI=F盎司
铂金PL=F盎司
钯金PA=F盎司
基本金属HG=F
农产品玉米ZC=F蒲式耳
大豆ZS=F蒲式耳
小麦ZW=F蒲式耳
国债期货10年国债ZN=F面值100
30年国债ZB=F面值100

数据获取

import requests

def get_quote(symbol):
    """获取期货行情(Yahoo Finance chart API)"""
    url = f"https://query2.finance.yahoo.com/v8/finance/chart/{symbol}?interval=1d&range=1d"
    headers = {"User-Agent": "Mozilla/5.0"}
    r = requests.get(url, headers=headers, timeout=10)
    meta = r.json()["chart"]["result"][0]["meta"]
    price = meta["regularMarketPrice"]
    prev = meta["chartPreviousClose"]
    chg = price - prev
    pct = chg / prev * 100
    return {"price": price, "chg": chg, "pct": pct,
            "high": meta["regularMarketDayHigh"],
            "low": meta["regularMarketDayLow"]}

关键比价与信号

比价公式含义
金银比GC/F ÷ SI/F>80 银相对便宜(均值),<50 金便宜
油金比CL/F ÷ (GC/F÷100)>2.5 通胀预期强,<1.5 避险情绪
金铜比GC/F ÷ HG/F经济预期(金强→衰退/避险,铜强→复苏)

情报解读框架

品种关键信号
WTI原油 > 100地缘风险/供应紧张,通胀压力
黄金 > 2000避险情绪浓厚
白银 < 22工业需求疲软
天然气 > 4能源危机/冬季需求
10年国债期货 > 114降息预期增强(债券涨)
10年国债期货 < 110利率上升预期(债券跌)
钯金 > 2000汽车行业需求强(芯片/电动车替代中)

分析顺序:

  1. 黄金 + 白银(避险/通胀主线)
  2. WTI + 布伦特(地缘/供给)
  3. 金银比(相对价值)
  4. 国债期货(利率预期→影响所有资产)
  5. 天然气 + 铜(实体经济需求)

快速查询命令

cd C:\Users\gold3\.openclaw\workspace\skills\futures-radar\scripts

# 查询全部期货品种
python futures_spot.py

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

4To1 Planner - AI Planning Coach

AI planning coach using the 4To1 Method™ — turn 4-year vision into daily action. Connects to Notion, Todoist, Google Calendar, or local Markdown. Use when user wants to plan goals, do weekly reviews, track projects, or set up a planning system.

Registry SourceRecently Updated
General

travel-destination-brochure

Build travel destination scenarios and brochures from a city name. Fetches street-level and landmark imagery from OpenStreetCam and Wikimedia Commons, then uses VLM Run (vlmrun) to generate a travel video and a travel plan. Use when the user wants a travel brochure, destination guide, travel video, or travel planning for a city.

Registry SourceRecently Updated
General

Clawrouter

Hosted-gateway LLM router — save 67% on inference costs. A local proxy that forwards each request to the blockrun.ai gateway, which routes to the cheapest ca...

Registry SourceRecently Updated
3.1K111bcmax
General

ASCII Excalidraw

Convert ASCII art diagrams to hand-drawn Excalidraw JSON files. Analyzes structure first, then generates incrementally module-by-module.

Registry SourceRecently Updated