Crypto Signals Automation

👤 mdann1992 📦 v1.0.0 ⭐ 3.9 ⬇️ 955 下載
💻 開發程式設計 免費 🔑 需 API Key

📖 技能介紹


name: crypto-signals-automation description: Build and operate a crypto signal trading automation using RapidAPI cryptexAI Buy & Sell Signals as signal source and dYdX v4 for execution. Use when setting up end-to-end signal ingestion, API subscription/key configuration, dYdX credential/bootstrap (API key + passphrase + signing material), cron execution, TP/SL handling, retries, cleanup, and Telegram notifications.


Crypto Signals Automation

Use this skill to create a full pipeline: RapidAPI signals -> normalized signal objects -> dYdX v4 order execution.

Workflow

  1. Collect setup inputs first:
  2. RapidAPI plan + key (X-RapidAPI-Key)
  3. dYdX wallet address + mnemonic file path + subaccount
  4. risk settings (max leverage, margin per trade, max open positions, close-after-hours)
  5. TP/SL mode (reduce-only conditional orders)
  6. alert channels (Telegram chat IDs)
  7. Validate RapidAPI connectivity with scripts/rapidapi_fetch.py.

    小蔥技能站7w4.net每天更新,海量AI技能等你發現。

  8. Generate env template with scripts/bootstrap_env.py.
  9. Wire runtime script/cron that:
  10. fetches symbols/signals,
  11. filters fresh active signals,
  12. opens positions with retries,
  13. places TP/SL reduce-only conditional orders,
  14. closes stale positions,
  15. cleans orphan reduce-only orders,
  16. sends Telegram notifications for open/close with PnL.
  17. 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:
  • TP type: take-profit-market
  • SL type: stop-market / stop-limit equivalent in client
  • 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 .env with 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

🤖 AI 評測

文件質量不錯,結構清晰、安全提示到位,但實際可用的程式碼太少,只有兩個小工具指令碼。真正要跑起來還需要自己寫大部分交易邏輯,對普通使用者來說門檻較高。

📊 多維度評分

適應性3.8
規範性4.2
有效性4
可靠性3.4
可信度4.2

📁 包含檔案 (7 個)

📄 SKILL.md 2.4 KB
📄 _meta.json 144 B
📄 references/rapidapi-cryptexai.md 1.1 KB
📄 references/setup-checklist.md 718 B
📄 scripts/bootstrap_env.py 697 B
📄 scripts/rapidapi_fetch.py 1.2 KB
📄 skill-card.md 2.5 KB