FreqHub is a modern, multi-bot dashboard for Freqtrade, designed to monitor and control multiple trading bot instances from a single unified interface. Perfect for Kubernetes deployments and multi-strategy trading setups.
This project is currently in early development (alpha stage) and is not yet ready for production use. Features are being actively developed and the API may change without notice.
While FreqUI is an excellent single-bot interface, FreqHub addresses the need for simultaneous multi-bot management:
- Multi-Bot Dashboard: Monitor and control multiple Freqtrade instances simultaneously
- Kubernetes-Ready: Designed for containerized deployments with configurable base paths
- Strategy Comparison: Compare performance across different trading strategies
- Unified Interface: Single dashboard for all your trading operations
- Real-Time Updates: WebSocket support for live data from all connected bots
- ✅ Multi-Bot Management: Connect to multiple Freqtrade API instances
- ✅ Unified Dashboard: Aggregate view of all bots' performance
- ✅ Individual Bot Views: Detailed views for each bot instance
- ✅ Strategy Comparison: Side-by-side comparison of trading strategies
- ✅ Real-Time Monitoring: WebSocket connections for live updates
- ✅ Base Path Support: Configurable base paths for reverse proxy deployments
- ✅ Kubernetes Integration: Optimized for Kubernetes ingress configurations
- 🔄 Trade Management: Execute trades across multiple bots
- 🔄 Backtest Comparison: Compare backtest results across strategies
- 🔄 Alert System: Centralized alerts from all bot instances
- Node.js 18+ and npm/pnpm/yarn
- One or more Freqtrade instances running with API enabled
- Modern web browser (Chrome, Firefox, Safari, Edge)
# Clone the repository
git clone https://github.com/hrodrig/freqhub.git
cd freqhub
# Install dependencies
pnpm install # or npm install / yarn install
# Start development server
pnpm dev # or npm run dev / yarn devThe development server will start on http://localhost:3000 (or the next available port).
# Build for production
pnpm build # or npm run build / yarn build
# Preview production build
pnpm preview # or npm run preview / yarn preview# Build Docker image
docker build -t freqhub .
# Run container
docker run -d \
-p 3000:80 \
-e BASE_PATH=/freqhub/ \
freqhub| Variable | Description | Default |
|---|---|---|
VITE_BASE_PATH |
Base path for the application (e.g., /freqhub/) |
/ |
VITE_API_PROXY_TARGET |
API proxy target for development | http://127.0.0.1:8080 |
FreqHub supports configurable base paths for deployment behind reverse proxies (e.g., Kubernetes Ingress, Nginx):
# Development
VITE_BASE_PATH=/freqhub/ pnpm dev
# Production (Docker)
docker run -e BASE_PATH=/freqhub/ freqhubEach Freqtrade instance must have the API enabled with CORS configured:
{
"api_server": {
"enabled": true,
"listen_ip_address": "0.0.0.0",
"listen_port": 8080,
"CORS_origins": ["https://your-freqhub-domain.com"],
"username": "your_username",
"password": "your_password"
}
}- Navigate to the bot management section
- Click "Add Bot"
- Enter the Freqtrade API URL (e.g.,
http://freqtrade-pod-1:8080) - Enter your API credentials
- Save and connect
The main dashboard provides:
- Aggregated Statistics: Total profit, win rate, active trades across all bots
- Bot Status: Health and status of each connected bot
- Quick Actions: Start/stop bots, view logs, manage strategies
Click on any bot to view:
- Real-time trading performance
- Active trades and positions
- Strategy details and configuration
- Historical performance charts
FreqHub is built with:
- React 18: Modern React with hooks and concurrent features
- TypeScript: Type-safe development
- Vite: Fast build tool and dev server
- React Router: Client-side routing
- WebSocket: Real-time data updates
- State Management: Context API / Zustand (TBD)
Contributions are welcome! This project is in early development and we'd love your help.
- Fork the repository
- Create a feature branch from
develop - Make your changes
- Test thoroughly
- Submit a pull request to
develop
main: Production-ready codedevelop: Development branch (default)- Feature branches:
feature/your-feature-name
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
- Freqtrade - The amazing trading bot this project is built for
- FreqUI - Inspiration and reference implementation
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Core multi-bot dashboard
- Real-time WebSocket integration
- Strategy comparison tools
- Backtest result comparison
- Alert and notification system
- Kubernetes Helm charts
- Comprehensive documentation
- Unit and integration tests
Note: FreqHub is an independent project and is not officially affiliated with the Freqtrade project.