โ† All skills
Tencent SkillHub ยท Developer Tools

Bitstamp Trader

Safety-first Bitcoin and crypto trading on Bitstamp via CLI. Use when the user wants to check crypto prices, view account balance, place buy/sell orders, man...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Safety-first Bitcoin and crypto trading on Bitstamp via CLI. Use when the user wants to check crypto prices, view account balance, place buy/sell orders, man...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/api-reference.md, references/safety.md, scripts/bitstamp.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs1 Scripts
  • SKILL.md Primary doc
  • references/api-reference.md Docs
  • references/safety.md Docs
  • scripts/bitstamp.py Scripts