openpondai/agents/dca-agent
dca-agent
markdown
# DCA Agent (Hyperliquid)
DCA-only agent for Hyperliquid assets. Configure via `OPENTOOL_PUBLIC_HL_DCA_AGENT_CONFIG`.
It supports schedule-aware `backtest_decisions` output so create/analyze runs can validate the accumulation logic without enabling live execution.
Example:
```json
{
"platform": "hyperliquid",
"asset": "BTC",
"signalType": "dca",
"cadence": "weekly",
"allocationMode": "fixed",
"amountUsd": 200,
"schedule": {
"cron": "0 8 * * 1",
"enabled": true,
"notifyEmail": false
},
"execution": {
"enabled": true,
"environment": "mainnet",
"mode": "long-only",
"slippageBps": 50
},
"dca": {
"preset": "BTC",
"symbols": ["BTC:1", "ETH:0.5"],
"slippageBps": 50
}
}
```