The top-searched EVE Online trading tool that lets you discover profitable trades between stations and regions. Make ISK through station trading, inter-station hauling, or region-to-region trading.
- Station Trading - Find profitable margin trades within a single station
- Station Hauling - Discover profitable trades between two stations
- Region Hauling - Find the best hauling routes between regions
- Price Comparison - Compare prices across regions
- Market Velocity - Track how quickly items sell
- Arbitrage Scanner - Detect cross-region arbitrage opportunities
- Industry Profits - Calculate manufacturing profitability
- PI Optimizer - Optimize planetary interaction setups
- LP Optimizer - Find the best loyalty point conversions
- Contract Finder - Search for profitable contracts
- Watchlist - Track items you're interested in
- Saved Routes - Save and manage your trade routes
- Trade Notes - Add notes to your trades
- Multi-Character Support - Manage multiple EVE characters
- Price Alerts - Get notified when prices hit targets
- Keyboard Shortcuts - Navigate quickly with hotkeys
- Bulk Copy - Copy trade data for in-game use
- Smart Filters - Advanced filtering options
- Route Optimization - Plan optimal trade routes
- Trading Dashboard - Overview of your trading activity
# Install dependencies
npm install
# Run development server
npm run dev
# Build for production
npm run build
# Run tests
npm testThe site deploys automatically to Vercel on commits to main.
- React 19 with Vite for fast development
- Tailwind CSS for styling
- React Router 7 for navigation
- Axios with retry logic for API calls
- Supabase for data persistence
- Sentry for error tracking
- PWA Support for offline capability
evetrade/
├── src/
│ ├── api/ # API client layer
│ ├── components/ # React components
│ │ ├── analytics/ # Market analysis components
│ │ ├── common/ # Shared UI components
│ │ ├── dashboard/ # Dashboard widgets
│ │ ├── forms/ # Form inputs & autocomplete
│ │ ├── inventory/ # Inventory management
│ │ ├── layout/ # Page layouts
│ │ ├── routing/ # Route optimization
│ │ ├── tables/ # Data tables
│ │ └── trading/ # Trading-specific components
│ ├── hooks/ # Custom React hooks
│ ├── lib/ # Third-party integrations
│ ├── pages/ # Page components
│ ├── store/ # Global state (Context)
│ └── utils/ # Utility functions
├── api/ # Vercel serverless functions
└── public/ # Static assets
| Service | Status |
|---|---|
| UI Deployment | |
| Static Data (daily) | |
| Volume Data (hourly) | |
| Market Data (5 min) | |
| API - Dev | |
| API - Prod |
Implements the EVE ESI API via the backend API to analyze market data and find profitable trades.
- CLAUDE.md - Developer guide and architecture overview
- ARCHITECTURE.md - System design documentation
- API.md - API endpoint documentation
- COMPONENTS.md - Component catalog
- HOOKS.md - Custom hooks reference
- ARBITRAGE_SCANNER.md - Arbitrage detection
- PI_OPTIMIZER.md - Planetary interaction optimization
- INDUSTRY_FEATURE.md - Industry profits
- ROUTE_OPTIMIZER.md - Route optimization
- SMART_ALERTS_GUIDE.md - Alert system
| Repository | Description |
|---|---|
| evetrade_api | Backend API service |
| evetrade-data-sync-service | Market data ingestion |
| evetrade_resources | Static data compilation |
| evetrade_historical_volume | Historical volume data |
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.

