
by Alpaca
No reviews yetAlpaca-branded SaaS delta-neutral trader with MCP-native execution: scores AI disruption risk, builds capped short baskets, adds a configurable long hedge leg, and tracks paper/live PnL in SerenDB.
+39.7%
Backtest Return
+9.0%
Total Trades (8 shorts + 1 hedge)
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.
Autonomous strategy agent for shorting SaaS names under AI-driven multiple compression while adding a long market hedge to target near delta-neutral exposure.
Default backend is MCP-native:
mcp__seren-mcp__call_publishermcp__seren-mcp__run_sql / mcp__seren-mcp__run_sql_transactionmcp__seren-mcp__list_* / create_*Legacy Python/API scripts remain available as fallback, not default.
QQQ) with hedge_ratioscripts/dry_run_prompt.txt - single copy/paste MCP-native run prompt (default)scripts/dry_run_checklist.md - MCP-native readiness checklistscripts/mcp_native_runbook.md - canonical MCP execution contractscripts/strategy_engine.py - core scan/monitor/post-close enginescripts/serendb_storage.py - persistence layerscripts/seren_client.py - publisher gateway clientscripts/self_learning.py - learning loopscripts/run_agent_server.py - authenticated webhook runner for seren-cronscripts/setup_cron.py - create/update cron jobsscripts/setup_serendb.py - apply base + learning schemaspaper - plan and store paper orderspaper-sim - simulate fills/PnL only (default)live - real broker execution path (requires explicit user approval)alpaca-sass-short-trader-delta-neutralalpaca_sass_short_bot_dnserendb_schema.sql and self_learning_schema.sql are applied via MCP SQL.alpacasec-filings-intelligencegoogle-trendsperplexity (fallback: exa)hedge_ticker + hedge_ratio.Use scripts/dry_run_prompt.txt for one-copy/paste execution.
15 8 * * 1-5 (08:15 ET)15 10-15 * * 1-5 (hourly, 10:15-15:15 ET)20 16 * * 1-5 (16:20 ET)35 16 * * 1-5 (MCP SQL upsert)30 9 * * 60 7 * * 1cd alpaca/sass-short-trader-delta-neutral
python3 -m pip install -r requirements.txt
cp .env.example .env
cp config.example.json config.json
python3 scripts/setup_serendb.py --api-key "$SEREN_API_KEY"
python3 scripts/strategy_engine.py --api-key "$SEREN_API_KEY" --run-type scan --mode paper-sim
python3 scripts/strategy_engine.py --api-key "$SEREN_API_KEY" --run-type monitor --mode paper-sim
python3 scripts/strategy_engine.py --api-key "$SEREN_API_KEY" --run-type post-close --mode paper-sim
python3 scripts/self_learning.py --api-key "$SEREN_API_KEY" --action full --mode paper-sim
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.
This skill uses multiple schedules aligned to market hours (ET). Create one job per schedule:
Scan (08:15 ET weekdays):
publisher: seren-cron
path: /jobs
method: POST
body: {
"name": "alpaca-sass-short-dn-live-scan",
"url": "http://localhost:8080/run",
"method": "POST",
"cron_expression": "15 8 * * 1-5",
"timezone": "UTC",
"enabled": true,
"timeout_seconds": 60
}
Monitor (10:15–15:15 ET weekdays, hourly):
publisher: seren-cron
path: /jobs
method: POST
body: {
"name": "alpaca-sass-short-dn-live-monitor",
"url": "http://localhost:8080/run",
"method": "POST",
"cron_expression": "15 10-15 * * 1-5",
"timezone": "UTC",
"enabled": true,
"timeout_seconds": 60
}
Post-close (16:20 ET weekdays):
publisher: seren-cron
path: /jobs
method: POST
body: {
"name": "alpaca-sass-short-dn-live-postclose",
"url": "http://localhost:8080/run",
"method": "POST",
"cron_expression": "20 16 * * 1-5",
"timezone": "UTC",
"enabled": true,
"timeout_seconds": 60
}
Save the returned job_id for each job — you need them to pause, resume, or delete jobs 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 “Alpaca SaaS Short Trader Delta Neutral” when prompted
openclaw install alpaca-sass-short-trader-delta-neutralSee install page for setup instructions
Alpaca
Added March 5, 2026