# Send Binance Dca Tool to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "binance-dca-tool",
    "name": "Binance Dca Tool",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/fpsjago/binance-dca-tool",
    "canonicalUrl": "https://clawhub.ai/fpsjago/binance-dca-tool",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/binance-dca-tool",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=binance-dca-tool",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/dca.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "binance-dca-tool",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T12:19:32.240Z",
      "expiresAt": "2026-05-07T12:19:32.240Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=binance-dca-tool",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=binance-dca-tool",
        "contentDisposition": "attachment; filename=\"binance-dca-tool-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "binance-dca-tool"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/binance-dca-tool"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/binance-dca-tool",
    "downloadUrl": "https://openagent3.xyz/downloads/binance-dca-tool",
    "agentUrl": "https://openagent3.xyz/skills/binance-dca-tool/agent",
    "manifestUrl": "https://openagent3.xyz/skills/binance-dca-tool/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/binance-dca-tool/agent.md"
  }
}
```
## Documentation

### Binance DCA

Execute and plan Dollar-Cost Averaging strategies on Binance.

### Setup

Requires two environment variables (never hardcode these):

export BINANCE_API_KEY="your-key"
export BINANCE_SECRET_KEY="your-secret"

Optional: BINANCE_BASE_URL (defaults to https://api.binance.com). Use https://testnet.binance.vision for paper trading.

### Quick Start

# Check current BTC price
bash scripts/dca.sh price BTCUSDT

# Project a DCA plan: $50 every 7 days, 12 buys
bash scripts/dca.sh plan 50 7 12 BTCUSDT

# Execute a $50 market buy
bash scripts/dca.sh buy BTCUSDT 50

# Check recent trades
bash scripts/dca.sh history BTCUSDT 10

# Check USDT balance
bash scripts/dca.sh balance USDT

### price [SYMBOL]

Get current spot price. Default: BTCUSDT.

### balance [ASSET]

Check free and locked balance for an asset. Default: USDT.

### buy SYMBOL AMOUNT [TYPE] [PRICE]

Place a buy order. AMOUNT is in quote currency (USDT).

MARKET (default): Execute immediately at market price
LIMIT: Requires price parameter — buy BTCUSDT 50 LIMIT 95000

### history [SYMBOL] [LIMIT]

Show recent trades with timestamps, side, quantity, price, and fees.

### plan [AMOUNT] [FREQ_DAYS] [NUM_BUYS] [SYMBOL]

Project a DCA plan with scenario analysis showing PnL at different price levels (-30% to +100%). Defaults: $50, every 7 days, 12 buys, BTCUSDT.

### DCA Strategy Guidance

When helping users plan DCA:

Ask about budget — How much per buy, and how often?
Set expectations — DCA smooths volatility, not guaranteed profit
Run projections — Use plan to show scenarios before committing
Recommend testnet first — Set BINANCE_BASE_URL=https://testnet.binance.vision
Position sizing — Suggest 1-2% of portfolio per buy for conservative approach
Never store credentials — Always use environment variables

### Scheduling DCA Buys

For automated recurring buys, suggest setting up a cron job or OpenClaw cron:

# Example: buy $50 BTC every Monday at 9am UTC
0 9 * * 1 BINANCE_API_KEY=... BINANCE_SECRET_KEY=... /path/to/dca.sh buy BTCUSDT 50

Or via OpenClaw cron for agent-managed scheduling with alerts and confirmations.

### Error Handling

Missing API keys → clear error message with setup instructions
Invalid amounts → validation before API call
API failures → descriptive error with endpoint info
Always verify the order response status before confirming to user
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: fpsjago
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T12:19:32.240Z
- Expires at: 2026-05-07T12:19:32.240Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/binance-dca-tool)
- [Send to Agent page](https://openagent3.xyz/skills/binance-dca-tool/agent)
- [JSON manifest](https://openagent3.xyz/skills/binance-dca-tool/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/binance-dca-tool/agent.md)
- [Download page](https://openagent3.xyz/downloads/binance-dca-tool)