원클릭으로
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.