2.5k
GitHub Stars
2
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill openclaw/skills --skill crypto-trading-bot- _meta.json293 B
- SKILL.md1.2 KB
Overview
This skill builds and deploys automated cryptocurrency trading bots that integrate TradingView signals, exchange APIs, and custom strategies. It supports Pine Script signal listeners, Python-based execution using CCXT, and DEX/CEX workflows including arbitrage and risk controls. The goal is reliable automation for spot, derivatives, and strategy-based exits.
How this skill works
The skill receives strategy specifications and connects TradingView webhook alerts or custom signal sources to a Python execution layer using CCXT for CEXs and web3 libraries for DEXs. It implements order logic (market/limit, grid, batch take-profit, trailing stop) and optional arbitrage scanners across liquidity pools. Deployment includes API credential management, backtesting with pandas, and a simple maintenance plan for monitoring and updates.
When to use it
- You want TradingView alerts executed automatically on one or more exchanges.
- You need spot or futures automation on Binance, Bybit, OKX or similar CEXs.
- You want cross-DEX arbitrage scanning or flash-loan enabled flows.
- You need robust stop-loss, trailing stop, or multi-stage take-profit behavior.
- You require a maintainable Python bot with CCXT integration and webhook handling.
Best practices
- Define clear risk parameters: position sizing, max drawdown, and circuit breakers before deployment.
- Use paper trading/backtesting with historic data and forward testing on small sizes.
- Store API keys securely and give only required permissions (no withdrawal if not needed).
- Implement logging, alerts, and basic health checks for automated supervision.
- Schedule regular reviews and updates when exchange APIs or market conditions change.
Example use cases
- TradingView strategy hooks: execute Pine Script alerts to place market and stop orders across multiple exchanges.
- Grid trading bot: automated grid strategy with rebalancing and configurable risk limits.
- Cross-DEX arbitrage: detect price discrepancies and route trades or flash loans when profitable.
- Custom take-profit logic: multi-tiered exits with trailing stops and time-based exits for swing strategies.
- API automation for CEXs: spot and perpetual position management with leverage controls.
FAQ
The implementation uses CCXT so most major CEXs (Binance, Bybit, OKX, etc.) are supported; DEX work uses web3 tools and router contracts for on-chain swaps.
Can you run a bot without exposing withdrawal rights?
Yes. Best practice is to create API keys limited to trading only (no withdrawals) and restrict IPs if the exchange supports it.