
by Coinbase
No reviews yetAI-optimized Coinbase Smart DCA bot with single-asset, portfolio, and opportunity-scanner modes using local direct execution and strict safety controls.
Skill instructions are preloaded in context when this skill is active. Do not perform filesystem searches or tool-driven exploration to rediscover them; use the guidance below directly.
AI-assisted dollar-cost averaging (DCA) bot for Coinbase Advanced Trade with three modes:
single_assetportfolioopportunity_scannerAll trades execute locally and directly against Coinbase APIs.
single_asset) with execution strategies:
vwap_optimizedmomentum_dipspread_optimizedtime_weightedsimpleportfolio) with target allocations and drift-aware DCAopportunity_scanner) with signals:
oversold_rsivolume_spikemean_reversionnew_listinglearn_earnASSET-USD vs ASSET-USDC)SEREN_API_KEY)SERENDB_URL)logs/state/cost_basis_lots.json.env.example to .env and set credentials.config.example.json to config.json.pip install -r requirements.txtpython scripts/setup_serendb.pypython scripts/agent.py --config config.json --accept-risk-disclaimer"dry_run": false in config.jsonpython scripts/agent.py --config config.json --allow-live --accept-risk-disclaimerSEREN_API_KEY (validate existing or auto-register).USD vs USDC).IMPORTANT DISCLAIMERS — READ BEFORE USING
Use seren-cron to run this skill on a schedule — no terminal windows to keep open, no daemons, no permanent computer changes required. Seren-cron is a cloud scheduler that calls your local trigger server on a cron schedule.
Requirements: Seren Desktop login or a valid SEREN_API_KEY.
Before scheduling, verify the publisher is reachable using mcp__seren__call_publisher:
publisher: seren-cron
path: /health
method: GET
If this call fails, stop here and tell the user:
"The seren-cron service could not be reached. Please send this error to hello@serendb.com for support."
Always check for existing scheduled jobs before creating a new one. A user may have forgotten a live job is already running.
publisher: seren-cron
path: /jobs
method: GET
If jobs for this skill already exist, show them to the user and ask:
"You have [N] active cron job(s) for this skill. Would you like to:
- Keep them running (recommended if intentional)
- Stop all and create a new schedule
- Cancel"
Do not create a duplicate cron job without explicit user confirmation.
Start the webhook server that seren-cron will call on each scheduled tick:
SEREN_API_KEY="$SEREN_API_KEY" python3 scripts/run_agent_server.py --config config.json --port 8080
This process runs in your terminal session. When you close the terminal, it stops — that is expected and correct. Seren-cron handles the scheduling; your local server handles execution.
With the server running, create the scheduled job:
publisher: seren-cron
path: /jobs
method: POST
body: {
"name": "coinbase-smart-dca-live",
"url": "http://localhost:8080/run",
"method": "POST",
"cron_expression": "0 */6 * * *",
"timezone": "UTC",
"enabled": true,
"timeout_seconds": 60
}
Save the returned job_id — you need it to pause, resume, or delete the job later.
List all active jobs:
publisher: seren-cron, path: /jobs, method: GET
Pause:
publisher: seren-cron, path: /jobs/{job_id}/pause, method: POST
Resume:
publisher: seren-cron, path: /jobs/{job_id}/resume, method: POST
Stop permanently:
publisher: seren-cron, path: /jobs/{job_id}, method: DELETE
If a live trade or cycle fails because the trading balance or SerenBucks balance is too low to execute, immediately pause the cron job:
publisher: seren-cron, path: /jobs/{job_id}/pause, method: POST
Then tell the user:
"Automated trading has been paused: insufficient funds detected. Please top up your balance before resuming the schedule."
Never allow the cron to keep firing when there are no funds available to trade.
Free
npx skills add serenorg/seren-skillsSelect “Coinbase Smart DCA Bot” when prompted
Coinbase
Added March 5, 2026