/ 目錄 / 演練場 / trading_skills
● 社群 staskh ⚡ 即開即用

trading_skills

作者 staskh · staskh/trading_skills

An options-trading advisor skill — Claude structures thesis, checks Greeks, and surfaces risk before you hit send.

trading_skills turns Claude into a disciplined options-trading co-pilot: you state a thesis, the skill walks you through structuring the trade (strategy choice, strike/expiry selection), checks Greeks and expected move, and flags risks. It does not give financial advice or execute orders — it's a checklist and reasoning partner so you don't trade on vibes.

為什麼要用

核心特性

即時演示

實際使用效果

trading-skill.replay ▶ 就緒
0/0

安裝

選擇你的客戶端

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "trading-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/staskh/trading_skills",
        "~/.claude/skills/trading_skills"
      ],
      "_inferred": true
    }
  }
}

開啟 Claude Desktop → Settings → Developer → Edit Config。儲存後重啟應用。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "trading-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/staskh/trading_skills",
        "~/.claude/skills/trading_skills"
      ],
      "_inferred": true
    }
  }
}

Cursor 使用與 Claude Desktop 相同的 mcpServers 格式。專案級設定優先於全域。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "trading-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/staskh/trading_skills",
        "~/.claude/skills/trading_skills"
      ],
      "_inferred": true
    }
  }
}

點擊 Cline 側欄中的 MCP Servers 圖示,然後選 "Edit Configuration"。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "trading-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/staskh/trading_skills",
        "~/.claude/skills/trading_skills"
      ],
      "_inferred": true
    }
  }
}

格式與 Claude Desktop 相同。重啟 Windsurf 生效。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "trading-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/staskh/trading_skills",
        "~/.claude/skills/trading_skills"
      ]
    }
  ]
}

Continue 使用伺服器物件陣列,而非映射。

~/.config/zed/settings.json
{
  "context_servers": {
    "trading-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/staskh/trading_skills",
          "~/.claude/skills/trading_skills"
        ]
      }
    }
  }
}

加入 context_servers。Zed 儲存後熱重載。

claude mcp add trading-skill -- git clone https://github.com/staskh/trading_skills ~/.claude/skills/trading_skills

一行命令搞定。用 claude mcp list 驗證,claude mcp remove 移除。

使用場景

實戰用法: trading_skills

How to structure an options trade from a thesis

👤 Self-directed options traders ⏱ ~25 min advanced

何時使用: You have a directional or volatility view and want to express it cleanly.

前置條件
  • Python with numpy/scipy for option math — pip install numpy scipy
  • Skill cloned — git clone https://github.com/staskh/trading_skills ~/.claude/skills/trading_skills
步驟
  1. State the thesis
    Thesis: SPY moves modestly higher over the next 21 days; IV is elevated. What strategy fits?✓ 已複製
    → A ranked list of suitable strategies with tradeoffs
  2. Pick strikes
    Given current SPY at $X and IV Y, propose a bull put spread. Show Greeks at entry and at expiry edges.✓ 已複製
    → Strike selection + Greeks table
  3. Risk check
    What's max loss, breakeven, POP, and how do I manage if it goes wrong?✓ 已複製
    → Explicit numbers + adjustment plan

結果: A fully-shaped trade you understand before placing it.

注意事項
  • Trade size too large for account — Skill prompts 1–2% risk-per-trade discipline; re-ask with account size
  • Ignoring earnings/events — Always verify there's no event inside the tenor
搭配使用: filesystem

Check your overall portfolio Greeks before adding a trade

👤 Multi-position traders ⏱ ~15 min advanced

何時使用: You've got several positions and want to know if a new trade adds diversifying or concentrated exposure.

步驟
  1. Summarize current portfolio
    Here's my open positions. Compute total delta/vega/theta exposure.✓ 已複製
    → Aggregated Greeks
  2. Evaluate the proposed add
    If I add this new position, how do the aggregate Greeks change?✓ 已複製
    → Before/after Greek table

結果: A more informed sizing / structuring decision.

注意事項
  • Ignoring correlations across underlyings — Treat SPY, IWM, QQQ as correlated; don't count them as independent diversification

組合

與其他 MCP 搭配,撬動十倍槓桿

trading-skill + yahoo-finance

Pull live quotes and option chains to feed the skill

Get SPY option chain for the next 21-DTE expiry and pick strikes for a 1-delta-short bull put spread.✓ 已複製
trading-skill + tradingview

Pair chart analysis with options structuring

Check the SPY weekly chart first, then structure the trade.✓ 已複製

工具

此 MCP 暴露的能力

工具輸入參數何時呼叫成本
strategy-selection thesis + market context Step 1 of any trade 0
greeks-calculator option legs After structuring Python compute
risk-check trade + account size Before placing any trade 0
portfolio-aggregation position list Multi-position analysis 0

成本與限制

運行它的成本

API 配額
none beyond market-data provider
每次呼叫 Token 數
3–10k per trade analysis
費用
free at skill level
提示
Use cached / delayed quotes for analysis; live only at order entry

安全

權限、密鑰、影響範圍

憑證儲存: never paste brokerage credentials; the skill doesn't need them
資料出站: none beyond user-configured market-data tools
切勿授予: order execution permission

故障排查

常見錯誤與修復

Greeks don't match broker

Different pricing models/IV sources diverge; treat skill output as directional, not tick-precise.

Numerical errors on deep ITM options

Check for dividend/early-exercise adjustments; the model may not cover American exercise.

替代方案

trading_skills 對比其他方案

替代方案何時用它替代權衡
agent-trade-kitYou want an automation-capable framework, not just advisoryMore powerful, more risk
tradingviewYou need chart-driven TA over options structuringDifferent tool domain

更多

資源

📖 閱讀 GitHub 上的官方 README

🐙 查看未解決的 issue

🔍 瀏覽全部 400+ MCP 伺服器和 Skills