Alphagbm Options Strategy logo

Alphagbm Options Strategy

CommunityPopular
AlphaGBM
alphagbm-options-strategy

Recommends optimal multi-leg option strategies based on your market view (bullish, bearish, neutral, volatile). Supports 15+ strategy templates including spreads, condors, straddles, and income plays. Returns full P&L profile, breakevens, and probability of profit. Use when: choosing an options strategy, planning a trade around earnings, building a multi-leg position, comparing strategy alternatives. Triggers on: "options strategy for AAPL", "bullish strategy NVDA", "what's the best play on TSLA earnings", "iron condor SPY", "bear put spread META", "income strategy for GOOGL", "neutral play on QQQ".

Overview

PublisherAlphaGBM
Repositoryskills
Skill namealphagbm-options-strategy
Stars
2.7K
Forks
290
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by AlphaGBM on GitHub. Read the source before you install it.

Installation

Install the Alphagbm Options Strategy AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/AlphaGBM/skills.git /tmp/skills
mkdir -p .claude/skills
cp -r /tmp/skills/skills/alphagbm-options-strategy .claude/skills/alphagbm-options-strategy
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Alphagbm Options Strategy in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Alphagbm Options Strategy on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Alphagbm Options Strategy is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

AlphaGBM Options Strategy

Prerequisites

  • API Key: Set env ALPHAGBM_API_KEY (format agbm_xxxx...).
  • Base URL: Default https://alphagbm.zeabur.app. Override with env ALPHAGBM_BASE_URL.

What This Skill Does

Given a market view and a ticker, recommends the best multi-leg option strategies ranked by risk/reward profile. Selects optimal strikes and expirations automatically using AlphaGBM's scoring engine.

Four Core Strategies and Trend Alignment

StrategyIdeal TrendMax ProfitMax Loss
Sell PutNeutral / BullishPremium receivedStrike - Premium (assignment risk)
Sell CallNeutral / BearishPremium receivedUnlimited (uncovered)
Buy CallBullishUnlimitedPremium paid
Buy PutBearishStrike - PremiumPremium paid

Trend alignment scoring: The scoring model rewards contracts that match the prevailing trend. For Sell Put, a downtrend scores 100 (counter-intuitive: you want to sell puts into weakness for higher premium), while an uptrend scores 30. For Buy Call, bullish momentum is weighted at 25%.

Supported Strategy Templates (15+)

CategoryStrategies
BullishBull Call Spread, Bull Put Spread, Long Call, Covered Call, Synthetic Long
BearishBear Put Spread, Bear Call Spread, Long Put, Synthetic Short
NeutralIron Condor, Iron Butterfly, Short Straddle, Short Strangle, Calendar Spread
VolatileLong Straddle, Long Strangle, Butterfly Spread, Reverse Iron Condor
IncomeCovered Call, Cash-Secured Put, Collar, Jade Lizard

Risk-Return Profiles

StyleTypical Win RateTypical Return
steady_income65-80%1-5%/month
balanced40-55%50-200%
high_risk_high_reward20-40%2-10x
hedge30-50%0-1x

Strategy Selection Logic

  1. Match user's market view to candidate strategies
  2. Filter by IV environment (high IV favors selling premium; low IV favors buying)
  3. Score each candidate using risk/reward, probability of profit, and capital efficiency
  4. Rank and return the top 3 recommendations with full details

API Endpoints

Strategy Templates

List all available strategy templates:

GET /api/options/tools/strategy/templates

Strategy Builder

Build a strategy from a template with specific parameters:

POST /api/options/tools/strategy/build
Content-Type: application/json

{
  "mode": "template",
  "template_id": "bull_call_spread",
  "spot": 150.0,
  "expiry_days": 30,
  "strikes": [140, 145, 150, 155, 160]
}

Options Scanner

Scan across tickers for strategies matching your criteria:

POST /api/options/tools/scan
Content-Type: application/json

{
  "strategies": ["covered_call", "cash_secured_put"],
  "tickers": ["AAPL", "NVDA"],
  "min_yield_pct": 1.0
}

How to Use

Input

  • Required: Ticker symbol + market view (bullish / bearish / neutral / volatile)
  • Optional: Max capital, target expiration, risk tolerance (conservative / moderate / aggressive)

Output Structure

json
{
  "ticker": "AAPL",
  "price": 218.45,
  "market_view": "bullish",
  "iv_environment": "moderate",
  "recommendations": [
    {
      "strategy": "Bull Call Spread",
      "rank": 1,
      "score": 8.5,
      "legs": [
        {"action": "buy", "type": "call", "strike": 215, "expiry": "2026-04-18", "price": 7.20},
        {"action": "sell", "type": "call", "strike": 225, "expiry": "2026-04-18", "price": 3.40}
      ],
      "max_profit": 620,
      "max_loss": 380,
      "breakeven": [218.80],
      "probability_of_profit": 0.58,
      "risk_reward_ratio": 1.63,
      "net_debit": 380,
      "greeks": {
        "delta": 0.32,
        "gamma": 0.012,
        "theta": -0.08,
        "vega": 0.14
      },
      "rationale": "Moderate bullish exposure with capped risk. IV is fair -- debit spread preferred over naked call."
    }
  ]
}

Example Queries

User SaysWhat Happens
"Options strategy for AAPL"Infers view from stock analysis, returns top 3 strategies
"Bullish strategy NVDA"Filters to bullish strategies, ranks by score
"Best play on TSLA earnings"Selects volatile strategies (straddle, strangle) for event
"Iron condor SPY"Builds an iron condor with optimal strikes and returns full profile
"Income strategy GOOGL"Filters to covered call, cash-secured put, collar
"Conservative bearish play on META"Bear put spread or collar with tight risk parameters

Mock Data

Demo tickers available without API key: AAPL, NVDA, SPY, TSLA, META. Strategy recommendations use realistic chain data from mock-data/.

Related Skills

  • alphagbm-options-score -- Scores the individual contracts used in each leg
  • alphagbm-pnl-simulator -- Simulate P&L over time for any recommended strategy
  • alphagbm-greeks -- Deep-dive into position Greeks for the chosen strategy
  • alphagbm-iv-rank -- Check if IV environment favors buying or selling premium

Powered by AlphaGBM -- Real-data options & research intelligence for traders and AI agents. 10K+ users.

Frequently asked questions

What does the Alphagbm Options Strategy AI skill do?

Recommends optimal multi-leg option strategies based on your market view (bullish, bearish, neutral, volatile). Supports 15+ strategy templates including spreads, condors, straddles, and income plays. Returns full P&L profile, breakevens, and probability of profit. Use when: choosing an options strategy, planning a trade around earnings, building a multi-leg position, comparing strategy alternatives. Triggers on: "options strategy for AAPL", "bullish strategy NVDA", "what's the best play on TSLA earnings", "iron condor SPY", "bear put spread META", "income strategy for GOOGL", "neutral play...

Why use Alphagbm Options Strategy on TypingMind?

Because you install it once and use it with any model. Alphagbm Options Strategy is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Alphagbm Options Strategy in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/AlphaGBM/skills/tree/main/skills/alphagbm-options-strategy. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Alphagbm Options Strategy?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Alphagbm Options Strategy?

As many as you like. As long as a model supports skills, you can use Alphagbm Options Strategy with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Alphagbm Options Strategy AI skill free?

Yes. It is published on GitHub by AlphaGBM under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇