Automation Workflows¶
Combine Claude Code skills with automation tools for end-to-end trading automation.
Recommended Stack¶
Windmill (preferred) or n8n for workflow automation.
| Tool | Best For |
|---|---|
| Windmill | Python-heavy, long-running jobs, ML |
| n8n | Simple webhooks, integrations |
Architecture¶
┌─────────────────────────────────────────────────────────────────┐
│ WINDMILL ORCHESTRATION │
└─────────────────────────────────────────────────────────────────┘
│
┌────────────────────────┼────────────────────────┐
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────────┐ ┌──────────────┐
│ Daily │ │ Weekly │ │ Real-time │
│ Data │ │ Retrain │ │ Execution │
│ Refresh │ │ Models │ │ Webhooks │
└──────────┘ └──────────────┘ └──────────────┘
Example Flows¶
Daily Data Refresh¶
Weekly Model Retrain¶
Real-time Execution¶
Skills + Automation¶
| Skill | Automation Use |
|---|---|
/backtest | Daily/weekly validation |
/train-model | Scheduled retraining |
/pine-analyze | Pre-deployment checks |
Setup Guide¶
- Install Windmill (self-hosted Docker)
- Create webhook endpoints
- Connect TradingView alerts
- Schedule data/training jobs
- Configure notifications
See Windmill Documentation for detailed setup.