smithery/bankrbot

Bankr Dev - Leverage Trading

This skill should be used when building perpetual trading bots, implementing leverage functionality, or adding position management. Covers Avantis integration, long/short positions, and risk controls.

Installation

$ npx skills add smithery/bankrbot --skill bankr-dev-leverage-trading

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/bankrbot · top by installs.

npx skills add smithery/bankrbot

Browse all from smithery/bankrbot

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,921 B
  • docs SUMMARY.md 234 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Leverage Trading Capability

Trade perpetuals with leverage via natural language prompts.

What You Can Do

Operation Example Prompt
Open long Open a 5x long on ETH with $100
Open short Open a 3x short on BTC with $50
Long with stop loss Open a 5x long on ETH with $100, stop loss at -10%
Long with take profit Open a 5x long on ETH with $100, take profit at +20%
Full risk management Open a 5x long on ETH with $100, stop loss at -10%, take profit at +20%
View positions Show my Avantis positions
Close position Close my ETH long position
Close all Close all my Avantis positions
Check PnL Check my PnL on Avantis

Prompt Patterns

Open a {leverage}x {long|short} on {asset} with {collateral}
Open a {leverage}x long on {asset} with {collateral}, stop loss at {price|percent}
Close my {asset} {long|short} position
Show my Avantis positions

Supported assets:

  • Crypto: BTC, ETH, SOL, ARB, AVAX, BNB, DOGE, LINK, OP, MATIC
  • Forex: EUR/USD, GBP/USD, USD/JPY, AUD/USD, USD/CAD
  • Commodities: Gold, Silver, Oil, Natural Gas

Chain: Base

Usage

import { execute } from "./bankr-client";

// Open leveraged position
await execute("Open a 5x long on ETH with $100, stop loss at -10%");

// Check positions
await execute("Show my Avantis positions");

// Close position
await execute("Close my ETH long position");

Related Skills

  • bankr-client-patterns - Client setup and execute function
  • bankr-api-basics - API fundamentals
  • bankr-market-research - Price data for trading decisions