📦 Crypto Signals Automation — 技能工具
v1.0.0Build and operate a crypto signal trading automation using RapidAPI cryptexAI Buy & Sell Signals as signal source and dYdX v4 for execution. Use when setting...
详细分析 ▾
运行时依赖
版本
Crypto Signals Automation v1.0.0 - Initial release of a full pipeline to automate crypto trading signals using RapidAPI cryptexAI signals and dYdX v4 execution. - Supports setup of API keys, dYdX credentials, risk management, and alert channels. - Automates signal fetching, filtering, order execution with TP/SL, retries, cleanup, and Telegram notifications. - Includes scripts for connectivity validation and environment setup. - Provides detailed security guidance and references for setup and API use.
安装命令
点击复制技能文档
Use this skill to create a full pipeline: RapidAPI signals -> normalized signal objects -> dYdX v4 order execution.
Workflow
- Collect setup inputs first:
X-RapidAPI-Key)
- dYdX wallet address + mnemonic file path + subaccount
- risk settings (max leverage, margin per trade, max open positions, close-after-hours)
- TP/SL mode (reduce-only conditional orders)
- alert channels (Telegram chat IDs)
- Validate RapidAPI connectivity with
scripts/rapidapi_fetch.py. - Generate env template with
scripts/bootstrap_env.py. - Wire runtime script/cron that:
- Test with one symbol in controlled mode before enabling full symbol set.
RapidAPI source
- API:
cryptexAI - Buy & Sell Signals - Base host header:
cryptexai-buy-sell-signals.p.rapidapi.com - Endpoints:
GET /getSymbols
- GET /getSignalsForSymbol?symbol=...Use the most recent active=true signal per symbol. Deduplicate by signal id.
dYdX execution rules
- Use dYdX v4.
- Open position with market semantics.
- Set TP/SL immediately after open as reduce-only conditional orders:
- Retry failed order submissions up to total 3 attempts.
- Keep signal->order client_id mapping in state and only cancel matching reduce-only orders on cleanup.
Security
- Never commit real API keys/secrets.
- Store secrets in
.envwith strict file permissions (chmod 600). - Treat mnemonic/passphrase as secrets.
- If a token was exposed in chat/history, rotate it.
References
- API details:
references/rapidapi-cryptexai.md - Setup checklist:
references/setup-checklist.md