agentsclimarketplace

Analyze gold

Skill mahmoud20138/Tradecraft/plugins/tradecraft/skills/analyze-gold

102 Claude Code skills across 7 categories -- trading strategies, Azure, VSCode extensions, AI prompts, and custom automation skills

Install
npx -y skills add mahmoud20138/Tradecraft --skill analyze-gold

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Pre-configured combination command for gold (XAUUSD) analysis. Runs the full pair-analyze pipeline tuned for gold's volatility profile, session behavior, and dollar sensitivity. USE FOR - analyze gold, analyze XAUUSD, gold setup, trade gold, gold analysis, XAUUSD plan.

SKILL.md

5.2 KB, as published. Nobody here has run it

Analyze Gold — Combination Command

Pre-configured wrapper around pair-analyze for XAUUSD with gold-specific calibration. Pick this when the user says "analyze gold" or "gold setup" so defaults match how gold actually trades.

Invocation

/tradecraft:analyze-gold [TIMEFRAME] [MODE]

# Examples
/tradecraft:analyze-gold              # defaults: H1, standard
/tradecraft:analyze-gold H4 conservative
/tradecraft:analyze-gold M15 scalp
/tradecraft:analyze-gold D1 swing

Arguments are exposed via $ARGUMENTS. Symbol is locked to XAUUSD.

What This Wrapper Does

  1. Binds symbol = XAUUSD (also accepts broker variants: XAUUSDm, GOLD, XAU/USD — normalize before dispatch).
  2. Applies gold-specific overrides (see below).
  3. Delegates to the pair-analyze pipeline.
  4. Returns the same JSON output contract as pair-analyze, plus a gold_context block.

Gold-Specific Calibration

AspectOverride vs. generic pair-analyze
Pip / point0.01 USD per unit — price quoted to 2 decimals
Typical spread0.15 – 0.40 on ECN; 0.25 – 0.60 on standard
Active sessionsLondon open → US close (08:00 – 21:00 UTC)
Dead zoneAsian session outside the Tokyo/London overlap (~06:00 – 09:00 UTC)
Volatility referenceH1 ATR(14) typically 3–12 pts; >20 = elevated
SL minimumMax(structure-based, 1.0 × H1 ATR, 2.5 pts) — gold wicks hunt tight stops
High-impact driversFOMC, NFP, CPI, PPI, DXY moves, real yields, geopolitical risk
News gate buffer30 min before / 60 min after red-folder USD events
Correlation to monitorDXY (inverse), US10Y real yield (inverse), SPX (weak positive in risk-on)

Mode Defaults Adjusted for Gold

ModePer-trade riskMin R:RNotes
conservative0.5%3.0H4/D1 only; avoid during NY lunch
standard1.0%2.0H1/H4; skip the first 15 min after London open
aggressive1.5%1.5H1 only; never during CPI/FOMC week
scalp0.5%1.5M5/M15; London and NY overlap only
swing1.0%3.0H4/D1; align with weekly bias

Worked Example: XAUUSD H1 standard

Assume current price = 2345.00, London session, no red news next 2h.

  1. Regime — H4 trend-up (HH/HL intact), H1 pullback into demand.
  2. News gate — clear until US PMI at 15:00 UTC.
  3. Structure — H1 bullish order block 2340–2343, BOS at 2348 confirms bullish intent.
  4. Liquidity — equal lows at 2341 swept during Asian session (1-candle wick); next upside pool 2365.
  5. Entry refinement — 50% of OB → entry 2341.50; rejection candle required.
  6. Risk — SL 2338.00 (3.5 pts, above 1×ATR minimum); $10k account × 1% = $100; lots = 0.28.
  7. Plan — long 2341.50, SL 2338.00, TP1 2348.50 (2R), TP2 2355.00 (3.8R), grade B, confidence 0.68.
{
  "symbol": "XAUUSD",
  "timeframe": "H1",
  "mode": "standard",
  "regime": "trend-up-h4-pullback-h1",
  "bias": "long",
  "setup_grade": "B",
  "confluence": ["H4 trend-up", "H1 bullish order block", "Asian sweep of equal lows"],
  "entry": 2341.50,
  "stop_loss": 2338.00,
  "take_profit_1": 2348.50,
  "take_profit_2": 2355.00,
  "risk_reward": 2.0,
  "position_size": {"lots": 0.28, "risk_pct": 1.0, "usd_per_point_per_lot": 100.0},
  "invalidation": "H1 close below 2338.00",
  "news_gate": {"clear_until": "15:00 UTC", "next_event": "US PMI"},
  "gold_context": {
    "atr_h1": 8.5,
    "dxy_bias": "weakening",
    "session": "London",
    "spread": 0.25
  },
  "confidence": 0.68,
  "notes": "Long at 50% retrace of H1 OB after liquidity sweep; exit TP1 before US PMI"
}

Skip Conditions (gold-specific)

Do NOT emit a trade plan when:

  • DXY is breaking a major level in the same direction as a gold short/long signal (decorrelation risk)
  • Within 30 min before or 60 min after CPI, NFP, FOMC, or Fed Chair testimony
  • Spread > 1.0 at the candidate entry time (suggests thin liquidity — common during rollover 22:00 UTC)
  • H1 ATR > 20 (regime = high-vol; switch to larger SL or stand aside)

Validation Checklist

  • Symbol normalized to XAUUSD
  • SL ≥ max(structure, 1×ATR, 2.5 pts)
  • News gate checked for USD red-folder events
  • DXY correlation not opposing the signal
  • Session is London or NY (or London-NY overlap for scalp)

See Also

  • pair-analyze — the underlying generic combination
  • analyze-us30 — sister wrapper for the Dow index
  • gold-orb-ea — opening-range breakout strategy specific to gold
  • xtrading-analyze — full multi-agent scan (broader scope than this wrapper)

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.