Alphagbm Take Profit logo

Alphagbm Take Profit

CommunityPopular
AlphaGBM
alphagbm-take-profit

Quantifies whether a stock is suitable for long-term holding or requires tiered profit-taking — using a novel "rollercoaster rate" metric (probability that an entry's paper profit reaches +50% then falls back >50% from peak before exit). Runs 15 exit strategies over ~10 years of daily history per ticker and returns medians for each. First query for a new ticker takes ~30s and gets cached globally; subsequent queries are instant. Triggers: "should I hold TQQQ long-term", "take-profit strategy for NVDA", "is AAPL holdable", "rollercoaster rate for TSLA", "sell strategy COIN", "when to sell NVDA", "profit-taking plan for QQQ", "exit strategy for my stock", "leveraged ETF hold analysis"

Overview

PublisherAlphaGBM
Repositoryskills
Skill namealphagbm-take-profit
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 Take Profit 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-take-profit .claude/skills/alphagbm-take-profit
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Alphagbm Take Profit 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 Take Profit 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 Take Profit 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 Take-Profit Strategy Lab

Answer one question mechanically for any ticker: Can you just hold it, or do you need to actively take profits? Most retail losses come from poor exits, not poor entries. This skill quantifies the exit decision with 10 years of daily data.

The Core Metric: Rollercoaster Rate

A "rollercoaster event" happens when an entry's paper profit exceeds +50% and then falls more than 50% from that peak before exit. Example: enter at 100, peak at 190, fall back to 90 — you didn't lose money, but the 90 of peak profit you "touched" evaporated, and the journey was brutal.

Rollercoaster rate varies up to 97 percentage points across instruments:

  • Broad-index ETFs (SPY, VTI): 0% — hold forever
  • Blue chips (AAPL, MSFT): 0% — hold forever
  • Sector ETFs (SOXX, XLK): 0% — hold forever
  • Large-cap mega-caps (META, AMZN): ~47% — tiered exit preferred
  • HK tech (腾讯, 阿里): ~49% — tiered exit preferred
  • High growth (NVDA, TSLA, AMD): ~85% — tiered exit mandatory
  • Crypto-related (COIN, MSTR): ~90% — tiered exit mandatory
  • Leveraged ETFs (TQQQ, SOXL): ~97% — structurally un-holdable

Whether you can hold is an instrument property, not an attitude problem.

Strategy Universe (15 total)

  • A family (sell all at trigger): A_+50%, A_+100%, A_+200%
  • B family (tiered): B_50/100/200 (default), B_30/60/100, B2_20/40/80, B3_40/80/150, B5 back-weighted, B6 front-weighted
  • C_10x (conviction hold)
  • D (-20% / -30% trailing stop) — loses to hold on every tested ticker
  • E (never sell / long-hold)
  • F (peak-pullback after +50% activation)
  • G (HV-aware: picks A_+100% or A_+200% based on entry-day vol)

How to Use

Input:

  • ticker (required) — any US / HK / CN stock, ETF, or leveraged ETF

Output:

  • Profile: color (green/amber/red) + special_flag (no_hold for leveraged ETFs, reverse_alpha for declining stocks where active selling beats hold)
  • Headline numbers: rollercoaster_rate, max_drawdown, hold_cagr
  • strategy_results: 15 strategies, each with {cagr, rc, mdd} medians
  • Provenance: sample_size (typically ~120 entry points), period, computed_at

The caller is expected to:

  1. Display the headline profile
  2. Recommend a strategy matching user's personality + position size (front-end logic)
  3. Generate concrete GTC limit-sell orders at entry × 1.5 / 2.0 / 3.0 etc.

Example Queries

  • should I hold TQQQ long-term → no_hold flag + rollercoaster 97% → tiered exit
  • take-profit strategy for NVDA → high-growth profile, B_50/100/200 default
  • is AAPL holdable → blue-chip profile, 0% rollercoaster, hold recommended
  • when should I sell COIN → crypto profile, mandatory tiered exit
  • rollercoaster rate for SPY → 0%, long-hold optimal
  • backtest sell strategies for MSFT → full 15-strategy comparison

Mock Data

Mock data in mock-data/take-profit/ — sample responses for TQQQ (no_hold), AAPL (hold-optimal), and PYPL (reverse_alpha).

API Endpoint

POST /api/stock/take-profit-analyze
Content-Type: application/json

Request body:

json
{"ticker": "TQQQ"}

Also available for reading the cached library (no quota):

GET /api/stock/take-profit-library

Returns list of already-cached tickers with their headline numbers — useful for agents to know which queries are instant vs first-time.

Response shape:

json
{
  "success": true,
  "ticker": "TQQQ",
  "color": "red",
  "special_flag": "no_hold",
  "rollercoaster_rate": 97,
  "max_drawdown": -82,
  "hold_cagr": 37.0,
  "strategy_results": {
    "A_50": {"cagr": 6.0, "rc": 21, "mdd": -32},
    "A_100": {"cagr": 11.5, "rc": 44, "mdd": -50},
    "A_200": {"cagr": 17.6, "rc": 64, "mdd": -62},
    "B_50_100_200": {"cagr": 12.0, "rc": 36, "mdd": -42},
    "B6_front": {"cagr": 11.0, "rc": 29, "mdd": -37},
    "E_hold": {"cagr": 37.0, "rc": 97, "mdd": -82},
    "...": "..."
  },
  "sample_size": 120,
  "period": {"start": "2014-04-20", "end": "2026-04-20"},
  "computed_at": "2026-04-24T08:00:00"
}

Pricing: 1 stock-analysis credit per first-time ticker compute; DB-cached for 30 days globally — once computed, all users get instant reads (including cache hits within 5 min in-process). Cache hits do not deduct credits.

First-time compute takes ~30s (10 years of daily data × 15 strategies × ~120 entry points = ~1800 simulations). Subsequent reads are <100 ms.

Related Skills

SkillRelevance
alphagbm-stock-analysisDeep fundamental + momentum analysis — complements the exit decision
alphagbm-watchlistBulk queries across a portfolio
alphagbm-hedge-advisorOption-based hedging for positions flagged as "high rollercoaster"

Powered by AlphaGBM — Real-data options & research intelligence. 10K+ users.

Frequently asked questions

What does the Alphagbm Take Profit AI skill do?

Quantifies whether a stock is suitable for long-term holding or requires tiered profit-taking — using a novel "rollercoaster rate" metric (probability that an entry's paper profit reaches +50% then falls back >50% from peak before exit). Runs 15 exit strategies over ~10 years of daily history per ticker and returns medians for each. First query for a new ticker takes ~30s and gets cached globally; subsequent queries are instant. Triggers: "should I hold TQQQ long-term", "take-profit strategy for NVDA", "is AAPL holdable", "rollercoaster rate for TSLA", "sell strategy COIN", "when to sell NV...

Why use Alphagbm Take Profit on TypingMind?

Because you install it once and use it with any model. Alphagbm Take Profit 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 Take Profit in TypingMind?

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

Which AI models can use Alphagbm Take Profit?

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 Take Profit?

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

Is the Alphagbm Take Profit 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 👇