AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Double Top Bottom

skill-ske-labs-agent-trading-skills-double-top-bottom · by SKE-Labs

Trade double and triple top/bottom reversal patterns. Use when identifying trend exhaustion, finding reversal entries at key resistance/support, or confirming failed breakouts.

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-ske-labs-agent-trading-skills-double-top-bottom

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ske-labs-agent-trading-skills-double-top-bottom)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Double Top Bottom? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Double Top & Bottom Patterns

Reversal patterns that form when price fails to break a level twice.

Pattern Structure

Double Top (Bearish)

  1. Rally to resistance (Peak 1) → pullback to neckline → rally back to same resistance (Peak 2, within 3%) → failure → reversal

Double Bottom (Bullish)

  1. Drop to support (Trough 1) → bounce to neckline → drop back to same support (Trough 2, within 3%) → failure → reversal

| Factor | Strong | Weak | |--------|--------|------| | Time between tests | 2-4 weeks | Very close or far apart | | Volume | Declining on 2nd test | Higher on 2nd test | | Peak/trough alignment | Within 3% | Widely different |

Workflow

1. Get Exact Data

get_candles_around_date(symbol=, exchange=, interval=, date=)

2. Mark Peaks/Troughs (2 parallel highlight calls)

draw_chart_analysis(action="create", drawing={
    "type": "highlight",
    "points": [{"time": , "price": }],
    "options": {"text": "Peak 1"}
})

draw_chart_analysis(action="create", drawing={
    "type": "highlight",
    "points": [{"time": , "price": }],
    "options": {"text": "Peak 2"}
})

3. Draw Neckline

draw_chart_analysis(action="create", drawing={
    "type": "support",
    "points": [
        {"time": , "price": },
        {"time": , "price": }
    ],
    "options": {"text": "Neckline"}
})

For double top use "support" (neckline is below). For double bottom use "resistance" (neckline is above).

4. Enter

Standard: Enter on neckline break + close with volume. Stop beyond peaks/troughs. Preferred: Wait for break + neckline retest. Enter on rejection. Aggressive: Enter at second peak/trough with LTF reversal confirmation. Target: Neckline ± (Peak - Neckline). Example: Peak $100, Neckline $90 → Target $80.

Key Rules

  • NEVER trade before neckline confirmation — pattern incomplete until it breaks
  • NEVER ignore volume: declining volume on 2nd test validates the pattern
  • Peaks/troughs must be within 3% to qualify
  • Failed double tops/bottoms lead to strong continuation moves

Related Skills

  • head-and-shoulders — Similar reversal family
  • cup-and-handle — Failed double bottoms can morph into cup patterns

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.