AgentSkillsCN

Bankr Dev - Automation

当用户需要构建自动化交易系统、实施限价订单,或添加 DCA/TWAP 功能时,应使用此技能。涵盖限价订单、止损、DCA 时间表,以及 TWAP 执行。

SKILL.md
--- frontmatter
name: Bankr Dev - Automation
description: This skill should be used when building automated trading systems, implementing limit orders, or adding DCA/TWAP functionality. Covers limit orders, stop losses, DCA schedules, and TWAP execution.
version: 1.0.0

Automation Capability

Create and manage automated orders via natural language prompts.

What You Can Do

OperationExample Prompt
Limit buySet a limit order to buy ETH at $3,000
Limit buy with amountSet a limit order to buy $500 of ETH at $3,000
Limit sellLimit sell my ETH when it hits $4,000
Stop loss (price)Set stop loss for my ETH at $2,800
Stop loss (percent)Stop loss: sell ETH if it drops 10%
DCADCA $100 into ETH every week
DCA with durationDCA $50 into BTC every day for 1 month
TWAP buyTWAP buy $5000 of ETH over 24 hours
TWAP sellTWAP sell 1 ETH over 4 hours
Scheduled commandEvery Monday, buy $100 of ETH
View automationsShow my automations
View limit ordersWhat limit orders do I have?
Cancel automationCancel automation abc123
Cancel allCancel all my automations

Prompt Patterns

code
Set a limit order to buy {token} at {price}
Set stop loss for my {token} at {price|percent}
DCA {amount} into {token} {frequency} [for {duration}]
TWAP buy {amount} of {token} over {duration}
Show my automations
Cancel automation {id}

Frequencies: every hour, every day, every week, every month

Supported chains: Base, Polygon, Ethereum (EVM), Solana (Jupiter triggers)

Usage

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

// Create limit order
await execute("Set a limit order to buy $500 of ETH at $3,000");

// Create DCA
await execute("DCA $100 into ETH every week for 3 months");

// Create TWAP
await execute("TWAP buy $5000 of ETH over 24 hours");

// View automations
await execute("Show my automations");

Related Skills

  • bankr-client-patterns - Client setup and execute function
  • bankr-api-basics - API fundamentals
  • bankr-token-trading - Immediate trades