# Send Yahoo Finance FOREX to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "yahoo-finance-forex",
    "name": "Yahoo Finance FOREX",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/nazimboudeffa/yahoo-finance-forex",
    "canonicalUrl": "https://clawhub.ai/nazimboudeffa/yahoo-finance-forex",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/yahoo-finance-forex",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=yahoo-finance-forex",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "package.json",
      "SKILL.md",
      "scripts/fetch_forex_news.py",
      "references/api-examples.md",
      "references/forex-pairs.md",
      "references/sentiment-guide.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/yahoo-finance-forex"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/yahoo-finance-forex",
    "downloadUrl": "https://openagent3.xyz/downloads/yahoo-finance-forex",
    "agentUrl": "https://openagent3.xyz/skills/yahoo-finance-forex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/yahoo-finance-forex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/yahoo-finance-forex/agent.md"
  }
}
```
## Documentation

### Yahoo Finance FOREX

Analyze major FOREX pairs using Yahoo Finance data: news, market data, sentiment analysis.

### When to Use This Skill

User asks about FOREX pairs (EUR/USD, GBP/USD, USD/JPY, etc.)
User wants latest FOREX news or market sentiment
User needs fundamental analysis for currency trading
User asks "What's happening with EUR/USD?" or similar

### Supported Currency Pairs

7 Major Pairs:

EUR/USD 🇪🇺🇺🇸 (Euro Dollar)
GBP/USD 🇬🇧🇺🇸 (Cable)
USD/JPY 🇺🇸🇯🇵 (Dollar Yen)
USD/CHF 🇺🇸🇨🇭 (Swissy)
AUD/USD 🇦🇺🇺🇸 (Aussie)
USD/CAD 🇺🇸🇨🇦 (Loonie)
NZD/USD 🇳🇿🇺🇸 (Kiwi)

### Fetch FOREX News

python3 scripts/fetch_forex_news.py EURUSD --limit 10

Output:

{
  "pair": "EURUSD",
  "current_rate": 1.10250,
  "change_pct": 0.136,
  "news": [
    {
      "title": "ECB maintains hawkish stance on rates",
      "published": "2026-02-02 14:30:00",
      "publisher": "Reuters"
    }
  ],
  "sentiment": {
    "pair_sentiment": 3,
    "recommendation": "BUY"
  }
}

### 1. User Asks About FOREX

User: "What's happening with EUR/USD?"

Your Action:

Run: python3 scripts/fetch_forex_news.py EURUSD --limit 8
Parse the JSON output
Analyze the sentiment and news
Provide a summary with:

Current rate and change
Key news headlines
Sentiment analysis (bullish/bearish)
Trading context (support/resistance if available)

### 2. Analyze Sentiment

The script automatically calculates sentiment based on keywords:

Bullish Keywords: strengthens, rallies, hawkish, rate hike, growth
Bearish Keywords: weakens, falls, dovish, rate cut, recession

Sentiment Score:

Positive (> 2): Bullish for the pair
Negative (< -2): Bearish for the pair
Near zero: Neutral

### 3. Provide Context

Always include:

Fundamentals: What central banks are doing (ECB, Fed, BoJ, etc.)
News Impact: How recent news affects the pair
Technical Context: Current price vs support/resistance (if available)

### fetch_forex_news.py

Usage:

python3 scripts/fetch_forex_news.py <PAIR> [--limit N]

Arguments:

<PAIR>: Currency pair (EURUSD, GBPUSD, USDJPY, USDCHF, AUDUSD, USDCAD, NZDUSD)
--limit N: Number of news articles to fetch (default: 10, max: 50)

Output Fields:

pair: Currency pair code
current_rate: Current exchange rate
change_pct: 24h percentage change
news[]: Array of news articles

title: Article headline
published: Publication timestamp
publisher: News source
link: Article URL (optional)


sentiment: Sentiment analysis

pair_sentiment: Sentiment score (-10 to +10)
recommendation: BUY/SELL/HOLD

### Get EUR/USD Analysis

python3 scripts/fetch_forex_news.py EURUSD --limit 5

### Get GBP/USD News

python3 scripts/fetch_forex_news.py GBPUSD --limit 8

### Central Bank Focus

When analyzing FOREX pairs, consider these central banks:

EUR/USD: ECB (European Central Bank) vs Fed (Federal Reserve)
GBP/USD: BoE (Bank of England) vs Fed
USD/JPY: Fed vs BoJ (Bank of Japan)
USD/CHF: Fed vs SNB (Swiss National Bank)
AUD/USD: RBA (Reserve Bank of Australia) vs Fed
USD/CAD: Fed vs BoC (Bank of Canada)
NZD/USD: RBNZ (Reserve Bank of New Zealand) vs Fed

### Best Practices

Always fetch news first before making analysis
Check sentiment score to understand market bias
Read headlines to identify key drivers
Consider fundamentals (interest rates, economic data, geopolitics)
Provide balanced analysis - acknowledge both bullish and bearish factors
Mention risk factors - volatility, upcoming events, technical levels

### Reference Files

See /references directory for:

api-examples.md: Detailed usage examples
forex-pairs.md: Complete pairs reference with Yahoo Finance symbols
sentiment-guide.md: Sentiment calculation methodology

### Limitations

News data may have slight delays (1-5 minutes)
Sentiment is keyword-based, not deep NLP analysis
Historical data limited to recent news (last 7-14 days typically)
No real-time tick data (only periodic updates)

### Troubleshooting

Script fails to run:

Ensure Python 3.7+ is installed
Install yfinance: pip install yfinance>=0.2.40

No news returned:

Check internet connection
Verify pair symbol is correct
Try different pair or reduce limit

Rate data missing:

Yahoo Finance API may be temporarily unavailable
Try again in a few minutes

### Support

For issues or questions:

GitHub: https://github.com/nazimboudeffa/openclaw-yahoo-finance-forex
Report bugs via GitHub Issues
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nazimboudeffa
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/yahoo-finance-forex)
- [Send to Agent page](https://openagent3.xyz/skills/yahoo-finance-forex/agent)
- [JSON manifest](https://openagent3.xyz/skills/yahoo-finance-forex/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/yahoo-finance-forex/agent.md)
- [Download page](https://openagent3.xyz/downloads/yahoo-finance-forex)