Copy-Trading for Agents
Overview
Two Integration Methods
1. Poll the Copy-Trade API
curl https://bv7x.ai/api/bv7x/copy-trade/next \
-H "Authorization: Bearer <token>"2. Subscribe via WebSocket
const ws = new WebSocket("wss://bv7x.ai/ws/signal?token=<token>");
ws.onmessage = (event) => {
const msg = JSON.parse(event.data);
if (msg.type === "signal.new") {
executeTrade(msg.data);
}
};Example Agent Flow
Position Sizing
Building Your Agent
Minimum Requirements
Recommended Additions
Python Skeleton
Important Notes
Next
Last updated