commodities-quote

Retrieve real-time commodity price quotes using Octagon MCP. Use when checking current commodity prices, analyzing day ranges, comparing to moving averages, and tracking precious metals, energy, and agricultural commodity prices.

27 stars

Best use case

commodities-quote is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Retrieve real-time commodity price quotes using Octagon MCP. Use when checking current commodity prices, analyzing day ranges, comparing to moving averages, and tracking precious metals, energy, and agricultural commodity prices.

Teams using commodities-quote should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/commodities-quote/SKILL.md --create-dirs "https://raw.githubusercontent.com/OctagonAI/skills/main/skills/commodities-quote/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/commodities-quote/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How commodities-quote Compares

Feature / Agentcommodities-quoteStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Retrieve real-time commodity price quotes using Octagon MCP. Use when checking current commodity prices, analyzing day ranges, comparing to moving averages, and tracking precious metals, energy, and agricultural commodity prices.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Commodities Quote

Retrieve real-time price quotes for commodities including precious metals, energy, and agricultural products using the Octagon MCP server.

## Prerequisites

Ensure Octagon MCP is configured in your AI agent (Cursor, Claude Desktop, Windsurf, etc.). See [references/mcp-setup.md](references/mcp-setup.md) for installation instructions.

## Workflow

### 1. Identify the Commodity

Determine the commodity symbol you want to quote:
- **GCUSD**: Gold
- **SIUSD**: Silver
- **CLUSD**: Crude Oil
- **NGUSD**: Natural Gas
- etc.

### 2. Execute Query via Octagon MCP

Use the `octagon-agent` tool with a natural language prompt:

```
Retrieve the real-time price quote for <SYMBOL>.
```

**MCP Call Format:**

```json
{
  "server": "octagon-mcp",
  "toolName": "octagon-agent",
  "arguments": {
    "prompt": "Retrieve the real-time price quote for GCUSD."
  }
}
```

### 3. Expected Output

The agent returns comprehensive quote data:

| Metric | Value |
|--------|-------|
| Current Price | $4,864.20 |
| Change | +$211.60 (+4.55%) |
| Day Low | $4,690.20 |
| Day High | $4,871.00 |
| 50-Day Avg | $4,559.45 |
| 200-Day Avg | $3,888.90 |
| Year Low | $2,837.40 |
| Year High | $5,626.80 |
| Trading Volume | 18,846 |
| Previous Close | $4,652.60 |

**Data Sources**: octagon-stock-data-agent

### 4. Interpret Results

See [references/interpreting-results.md](references/interpreting-results.md) for guidance on:
- Analyzing price movements
- Understanding range positions
- Using moving averages
- Evaluating volume

## Example Queries

**Gold Quote:**
```
Retrieve the real-time price quote for GCUSD.
```

**Silver Quote:**
```
Get the current price for silver (SIUSD).
```

**Crude Oil:**
```
What is the current price of crude oil (CLUSD)?
```

**Natural Gas:**
```
Get the real-time quote for natural gas (NGUSD).
```

**Multiple Commodities:**
```
Compare current prices for gold, silver, and platinum.
```

## Common Commodity Symbols

### Precious Metals

| Symbol | Commodity |
|--------|-----------|
| GCUSD | Gold |
| SIUSD | Silver |
| PLUSD | Platinum |
| PAUSD | Palladium |

### Energy

| Symbol | Commodity |
|--------|-----------|
| CLUSD | Crude Oil (WTI) |
| BZUSD | Brent Crude |
| NGUSD | Natural Gas |
| HOUSD | Heating Oil |
| RBUSD | Gasoline (RBOB) |

### Base Metals

| Symbol | Commodity |
|--------|-----------|
| HGUSD | Copper |
| ALUSD | Aluminum |
| ZNUSD | Zinc |
| NIUSD | Nickel |

### Agricultural

| Symbol | Commodity |
|--------|-----------|
| ZCUSD | Corn |
| ZSUSD | Soybeans |
| ZWUSD | Wheat |
| KCUSD | Coffee |
| SBUSD | Sugar |
| CTUSD | Cotton |

## Understanding Quote Data

### Price Components

| Field | Description |
|-------|-------------|
| Current Price | Latest traded price |
| Change | Dollar change from prior close |
| Change % | Percentage change |
| Previous Close | Prior session close |

### Range Data

| Field | Description |
|-------|-------------|
| Day Low | Lowest price today |
| Day High | Highest price today |
| Year Low | 52-week low |
| Year High | 52-week high |

### Technical Indicators

| Field | Description |
|-------|-------------|
| 50-Day Avg | 50-day moving average |
| 200-Day Avg | 200-day moving average |
| Volume | Contracts/units traded |

## Price Analysis

### Day Range Position

```
Position = (Current - Day Low) / (Day High - Day Low) × 100%
```

### Example

From GCUSD data:
- Current: $4,864.20
- Day Low: $4,690.20
- Day High: $4,871.00
- Position: (4,864.20 - 4,690.20) / (4,871.00 - 4,690.20) = 96.2%

**Interpretation**: Trading near the high of the day (bullish).

### 52-Week Range Position

```
Position = (Current - Year Low) / (Year High - Year Low) × 100%
```

### Example

From GCUSD data:
- Current: $4,864.20
- Year Low: $2,837.40
- Year High: $5,626.80
- Position: (4,864.20 - 2,837.40) / (5,626.80 - 2,837.40) = 72.6%

**Interpretation**: Upper portion of 52-week range.

## Moving Average Analysis

### Price vs. Moving Averages

| Condition | Interpretation |
|-----------|----------------|
| Price > 50-day > 200-day | Strong uptrend |
| Price > 200-day > 50-day | Recovery mode |
| Price < 200-day < 50-day | Starting downtrend |
| Price < 50-day < 200-day | Strong downtrend |

### Example

From GCUSD data:
- Price: $4,864.20
- 50-Day: $4,559.45
- 200-Day: $3,888.90
- Pattern: Price > 50-Day > 200-Day

**Interpretation**: Strong uptrend confirmed by moving averages.

### Golden/Death Cross

| Signal | Condition | Meaning |
|--------|-----------|---------|
| Golden Cross | 50-day crosses above 200-day | Bullish |
| Death Cross | 50-day crosses below 200-day | Bearish |

## Volume Analysis

### Volume Context

| Volume Level | Interpretation |
|--------------|----------------|
| Above average | High interest |
| Average | Normal trading |
| Below average | Low interest |
| Spike | Significant event |

### Volume-Price Relationship

| Combination | Meaning |
|-------------|---------|
| High volume + price up | Strong buying |
| High volume + price down | Strong selling |
| Low volume + price up | Weak rally |
| Low volume + price down | Weak decline |

## Commodity-Specific Factors

### Gold (GCUSD)

| Driver | Impact |
|--------|--------|
| Dollar strength | Inverse relationship |
| Interest rates | Higher rates = lower gold |
| Inflation | Hedge demand |
| Geopolitics | Safe haven flows |

### Crude Oil (CLUSD)

| Driver | Impact |
|--------|--------|
| OPEC decisions | Supply impact |
| Economic growth | Demand driver |
| Inventory data | Weekly catalyst |
| Geopolitics | Supply risk |

### Natural Gas (NGUSD)

| Driver | Impact |
|--------|--------|
| Weather | Heating/cooling demand |
| Storage levels | Supply indicator |
| Production | Shale output |
| LNG exports | Demand shift |

## Common Use Cases

### Price Check
```
What is gold trading at right now?
```

### Trend Analysis
```
Is crude oil above or below its 200-day average?
```

### Range Analysis
```
Where is silver relative to its 52-week range?
```

### Momentum Check
```
Is natural gas showing strength today?
```

### Comparison
```
Compare precious metals prices today.
```

## Analysis Tips

1. **Check the trend**: Price vs. moving averages.

2. **Note the range**: Day range and 52-week range positions.

3. **Consider volume**: Confirms or contradicts price move.

4. **Watch the change %**: Context for daily move.

5. **Compare to peers**: Gold vs. silver, WTI vs. Brent.

6. **Know the drivers**: Fundamental factors for each commodity.

## Integration with Other Skills

| Skill | Combined Use |
|-------|--------------|
| commodities-list | Context on commodity markets |
| stock-historical-index | Broader market context |
| stock-price-change | Compare to equity performance |
| sector-performance-snapshot | Energy sector context |

Related Skills

stock-quote

27
from OctagonAI/skills

Retrieve real-time stock quotes using Octagon MCP. Use when you need current price, day range, 52-week range, volume, market cap, and moving averages for any publicly traded stock.

commodities-list

27
from OctagonAI/skills

Retrieve the full catalog of tradable commodities across energy, metals, and agriculture using Octagon MCP. Use when researching commodity markets, identifying trading firms, understanding market participants, and analyzing commodity sector coverage.

stock-price-change

27
from OctagonAI/skills

Retrieve stock price change statistics across multiple time periods using Octagon MCP. Use when analyzing short-term and long-term returns, comparing performance across timeframes, and evaluating momentum and historical growth.

stock-performance

27
from OctagonAI/skills

Retrieve stock price data and performance metrics using Octagon MCP. Use when analyzing daily closing prices, trading volume, price trends, historical performance, and comparing stock movements over specific time periods.

stock-historical-index

27
from OctagonAI/skills

Retrieve full historical end-of-day price data for market indices using Octagon MCP. Use when analyzing index performance over time, tracking market trends, calculating returns, and understanding market context for individual stock analysis.

stock-grades

27
from OctagonAI/skills

Retrieve the latest stock grades and ratings from top analysts and financial institutions using Octagon MCP. Use when tracking analyst upgrades, downgrades, rating changes, and institutional sentiment over time.

sector-performance-snapshot

27
from OctagonAI/skills

Retrieve a snapshot of market sector performance using Octagon MCP. Use when analyzing sector-wide metrics including revenue, EBITDA, net income, market cap, and enterprise value for companies within a specific sector and exchange.

sector-pe-ratios

27
from OctagonAI/skills

Retrieve sector P/E ratios using Octagon MCP. Use when comparing company valuations to sector benchmarks, analyzing sector valuations across exchanges, and understanding market-wide valuation trends.

sec-risk-factors

27
from OctagonAI/skills

Extract and summarize risk factors from SEC filings using Octagon MCP. Use when analyzing Item 1A risk disclosures, categorizing business risks, identifying new or material risks, and comparing risk profiles across companies or time periods.

sec-proxy-analysis

27
from OctagonAI/skills

Analyze proxy statements (DEF 14A) to extract executive compensation, governance information, and shareholder voting matters using Octagon MCP. Use when researching CEO pay, board composition, say-on-pay votes, and corporate governance practices.

sec-mda-analysis

27
from OctagonAI/skills

Analyze Management Discussion and Analysis (MD&A) sections from SEC filings using Octagon MCP. Use when extracting strategic initiatives, financial performance commentary, macroeconomic challenges, and forward-looking statements from 10-K and 10-Q filings.

sec-footnotes-analysis

27
from OctagonAI/skills

Analyze footnotes and accounting policies from SEC filings using Octagon MCP. Use when researching revenue recognition policies, critical estimates, lease obligations, pension assumptions, stock compensation, contingencies, and new accounting pronouncements.