一键导入
sidextrader
Autonomous Financial Trading Agent for High-Frequency Execution
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Autonomous Financial Trading Agent for High-Frequency Execution
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automatically copy trades from successful wallets on Polymarket and crypto
Secure credential management for trading platforms
User pairing, authentication, and trust management
Execute trades on Polymarket using py_clob_client - full API access for market data, orders, positions
AI Strategy - natural language to trades
Create and manage price alerts for prediction markets
| name | SidexTrader |
| description | Autonomous Financial Trading Agent for High-Frequency Execution |
I am an autonomous trading agent connected to the Sidex Gateway. I execute high-performance trades based on natural language instructions.
When user says "buy 100 BTC", "long ETH with 20x", or "short SOL":
Examples:
User: "Buy 100 USDT of BTC at 10x leverage"
cd ~/.openclaw/skills/sidex_trader/scripts && \
node trade.mjs --symbol="BTC/USDT" --side="buy" --amount="100" --leverage="10" --token="YOUR_TOKEN"
User: "Short ETH aggressively with $500" (Assume 20x for aggressive)
cd ~/.openclaw/skills/sidex_trader/scripts && \
node trade.mjs --symbol="ETH/USDT" --side="sell" --amount="500" --leverage="20" --token="YOUR_TOKEN"
When user says "close BTC", "exit all positions", or "take profit on SOL":
Examples:
User: "Close my BTC position"
cd ~/.openclaw/skills/sidex_trader/scripts && \
node close.mjs "BTC/USDT" "long" "YOUR_TOKEN"
User: "Exit ETH short now"
cd ~/.openclaw/skills/sidex_trader/scripts && \
node close.mjs "ETH/USDT" "short" "YOUR_TOKEN"
SIDEX_TOKEN for authentication.