# Send Bitstamp Trader 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": "bitstamp-trader",
    "name": "Bitstamp Trader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zhen08/bitstamp-trader",
    "canonicalUrl": "https://clawhub.ai/zhen08/bitstamp-trader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bitstamp-trader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitstamp-trader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-reference.md",
      "references/safety.md",
      "scripts/bitstamp.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "bitstamp-trader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T13:50:10.621Z",
      "expiresAt": "2026-05-07T13:50:10.621Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitstamp-trader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitstamp-trader",
        "contentDisposition": "attachment; filename=\"bitstamp-trader-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "bitstamp-trader"
      },
      "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/bitstamp-trader"
    },
    "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/bitstamp-trader",
    "downloadUrl": "https://openagent3.xyz/downloads/bitstamp-trader",
    "agentUrl": "https://openagent3.xyz/skills/bitstamp-trader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bitstamp-trader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bitstamp-trader/agent.md"
  }
}
```
## Documentation

### Bitstamp Trader

Safety-first crypto trading CLI powered by CCXT.

### Quick Reference

All commands use the script at scripts/bitstamp.py. Run via:

python3 scripts/bitstamp.py <command> [options]

### Market Data (no auth needed)

python3 scripts/bitstamp.py ticker                    # BTC/USD price
python3 scripts/bitstamp.py ticker -m ETH/USD         # ETH price
python3 scripts/bitstamp.py orderbook -m BTC/USD -d 5 # Top 5 order book
python3 scripts/bitstamp.py markets --all              # All available pairs

### Account (requires API keys)

python3 scripts/bitstamp.py balance           # Account balances
python3 scripts/bitstamp.py orders            # Open orders
python3 scripts/bitstamp.py trades --limit 10 # Recent trade history

### Trading (dry-run by default)

# Dry-run (simulation)
python3 scripts/bitstamp.py buy 0.001 -m BTC/USD              # Market buy
python3 scripts/bitstamp.py buy 0.001 -m BTC/USD -p 50000     # Limit buy
python3 scripts/bitstamp.py sell 0.5 -m ETH/USD               # Market sell

# Live execution (add --live)
python3 scripts/bitstamp.py buy 0.001 -m BTC/USD --live       # REAL market buy
python3 scripts/bitstamp.py sell 0.5 -m ETH/USD -p 4000 --live

### Order Management

python3 scripts/bitstamp.py cancel --order-id 12345 -m BTC/USD
python3 scripts/bitstamp.py cancel --all   # Cancel all open orders

### Safety Controls

python3 scripts/bitstamp.py kill-switch                         # EMERGENCY STOP
python3 scripts/bitstamp.py kill-switch --status                # Check status
python3 scripts/bitstamp.py kill-switch --deactivate            # Resume trading
python3 scripts/bitstamp.py config                              # View safety limits
python3 scripts/bitstamp.py config --set max_order_size_usd=200 # Adjust limits
python3 scripts/bitstamp.py audit --limit 30                    # View audit log

### Setup

Set API keys as environment variables:
export BITSTAMP_API_KEY="your-key"
export BITSTAMP_API_SECRET="your-secret"



On Bitstamp, create an API key with Orders permission only (NO Withdrawals). Enable IP whitelisting.


Test with: python3 scripts/bitstamp.py ticker

### Safety Details

See references/safety.md for full safety architecture:

Dry-run default, kill switch, max order size, daily limits, price sanity checks

### API Details

See references/api-reference.md for Bitstamp API specifics, permissions, and rate limits.

### Important Rules

NEVER place live orders without explicit user confirmation. Always dry-run first.
NEVER store API keys in files. Use environment variables only.
When user says "buy" or "sell" without --live, always run as dry-run and show what WOULD happen.
For live trades, always show the dry-run result first, then ask for confirmation before adding --live.
If anything seems wrong (price spike, unusual volume, API errors), activate the kill switch.
Log everything. Check audit log when debugging issues.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zhen08
- 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-30T13:50:10.621Z
- Expires at: 2026-05-07T13:50:10.621Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bitstamp-trader)
- [Send to Agent page](https://openagent3.xyz/skills/bitstamp-trader/agent)
- [JSON manifest](https://openagent3.xyz/skills/bitstamp-trader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bitstamp-trader/agent.md)
- [Download page](https://openagent3.xyz/downloads/bitstamp-trader)