/ Каталог / Песочница / 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 использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.

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
    }
  }
}

Щёлкните значок MCP Servers на боковой панели Cline, затем "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 использует массив объектов серверов, а не map.

~/.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 — эффект x10

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
Токенов на вызов
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

Ещё

Ресурсы

📖 Читать официальный README на GitHub

🐙 Открытые задачи

🔍 Все 400+ MCP-серверов и Skills