Compare commits
21 Commits
fix/issue-
...
fix/issue-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d81464b869 | ||
| 55b008d4e8 | |||
|
|
04e4c1a487 | ||
| feb65131fa | |||
|
|
50af4e0722 | ||
|
|
786e964e32 | ||
| 41b699f9ee | |||
|
|
ccc0404cd1 | ||
|
|
0a2e347fdb | ||
| 2561759b78 | |||
| b6f99aa8fe | |||
|
|
3806af3e23 | ||
| a892a403fb | |||
|
|
0bb5d9a5d6 | ||
| 875427a0c1 | |||
|
|
5eb623f022 | ||
| a59a1ccd97 | |||
|
|
965efa122b | ||
| 0fb16f06e4 | |||
|
|
a461005015 | ||
| b0311bc96f |
223
deployment/DEPLOYMENT.md
Normal file
223
deployment/DEPLOYMENT.md
Normal file
@@ -0,0 +1,223 @@
|
||||
# Deployment Guide
|
||||
|
||||
This document describes how to deploy the Randebu Trading Bot application to a production server.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Debian server with 8GB RAM, 4 cores
|
||||
- Python 3.10+
|
||||
- Node.js 18+
|
||||
- Nginx
|
||||
- SSL certificate (Let's Encrypt)
|
||||
- SSH access to server
|
||||
|
||||
## Server Structure
|
||||
|
||||
```
|
||||
/var/www/
|
||||
└── bot/
|
||||
├── backend/ # Backend application (FastAPI)
|
||||
├── frontend/ # Frontend static files (SvelteKit build)
|
||||
└── data/ # SQLite database and app data
|
||||
```
|
||||
|
||||
## Step-by-Step Deployment
|
||||
|
||||
### 1. Clone Repository
|
||||
|
||||
```bash
|
||||
ssh user@your-server
|
||||
sudo mkdir -p /var/www/bot
|
||||
sudo chown -R $USER:$USER /var/www/bot
|
||||
cd /var/www/bot
|
||||
git clone https://git.example.com/shoko/randebu.git .
|
||||
```
|
||||
|
||||
### 2. Setup Backend
|
||||
|
||||
```bash
|
||||
cd /var/www/bot/src/backend
|
||||
|
||||
python3 -m venv venv
|
||||
source venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
|
||||
mkdir -p /var/www/bot/data
|
||||
```
|
||||
|
||||
### 3. Configure Environment
|
||||
|
||||
Copy and configure the environment file:
|
||||
|
||||
```bash
|
||||
cp src/backend/.env.example /var/www/bot/data/.env
|
||||
nano /var/www/bot/data/.env
|
||||
```
|
||||
|
||||
Update these values:
|
||||
- `SECRET_KEY` - Generate a secure key
|
||||
- `DATABASE_URL` - Update path to `/var/www/bot/data/app.db`
|
||||
- `MINIMAX_API_KEY` - Your API key
|
||||
- `AVE_API_KEY` - Your API key
|
||||
|
||||
### 4. Build Frontend
|
||||
|
||||
```bash
|
||||
cd /var/www/bot/src/frontend
|
||||
npm install
|
||||
npm run build
|
||||
|
||||
# Move build to expected location
|
||||
mkdir -p /var/www/bot/frontend
|
||||
cp -r build/* /var/www/bot/frontend/
|
||||
```
|
||||
|
||||
### 5. Configure Nginx
|
||||
|
||||
Copy the nginx template and modify as needed:
|
||||
|
||||
```bash
|
||||
sudo cp /var/www/bot/deployment/scripts/nginx-template.conf /etc/nginx/sites-available/bot.yourdomain.com
|
||||
sudo nano /etc/nginx/sites-available/bot.yourdomain.com
|
||||
```
|
||||
|
||||
Update `bot.yourdomain.com` with your actual domain.
|
||||
|
||||
Enable the site:
|
||||
|
||||
```bash
|
||||
sudo ln -s /etc/nginx/sites-available/bot.yourdomain.com /etc/nginx/sites-enabled/
|
||||
sudo nginx -t
|
||||
sudo systemctl reload nginx
|
||||
```
|
||||
|
||||
### 6. Setup SSL Certificate
|
||||
|
||||
```bash
|
||||
sudo apt install certbot python3-certbot-nginx
|
||||
sudo certbot --nginx -d bot.yourdomain.com
|
||||
```
|
||||
|
||||
### 7. Configure Systemd Service
|
||||
|
||||
Copy and configure the systemd service:
|
||||
|
||||
```bash
|
||||
sudo cp /var/www/bot/deployment/scripts/systemd-template.service /etc/systemd/system/ave-backend.service
|
||||
sudo nano /etc/systemd/system/ave-backend.service
|
||||
```
|
||||
|
||||
Update `your-user` and `/var/www/bot` paths as needed.
|
||||
|
||||
### 8. Start Backend Service
|
||||
|
||||
```bash
|
||||
sudo systemctl daemon-reload
|
||||
sudo systemctl enable ave-backend
|
||||
sudo systemctl start ave-backend
|
||||
sudo systemctl status ave-backend
|
||||
```
|
||||
|
||||
### 9. Configure Firewall
|
||||
|
||||
```bash
|
||||
sudo ufw allow 22/tcp
|
||||
sudo ufw allow 80/tcp
|
||||
sudo ufw allow 443/tcp
|
||||
sudo ufw enable
|
||||
```
|
||||
|
||||
### 10. Verify Deployment
|
||||
|
||||
1. Visit `https://bot.yourdomain.com` - should show frontend
|
||||
2. Visit `https://bot.yourdomain.com/api/...` - should hit backend API
|
||||
3. Check backend logs: `sudo journalctl -u ave-backend -f`
|
||||
|
||||
## Project Structure
|
||||
|
||||
```
|
||||
/var/www/bot/
|
||||
├── deployment/ # Deployment scripts and templates
|
||||
│ ├── DEPLOYMENT.md # This file
|
||||
│ └── scripts/
|
||||
│ ├── nginx-template.conf
|
||||
│ ├── systemd-template.service
|
||||
│ └── deploy.sh # Automated deployment script
|
||||
├── src/
|
||||
│ ├── backend/ # FastAPI application
|
||||
│ │ ├── app/
|
||||
│ │ │ ├── api/ # API routes
|
||||
│ │ │ ├── core/ # Core functionality
|
||||
│ │ │ ├── db/ # Database models
|
||||
│ │ │ └── services/ # Business logic
|
||||
│ │ ├── run.py
|
||||
│ │ └── requirements.txt
|
||||
│ └── frontend/ # SvelteKit application
|
||||
│ ├── src/
|
||||
│ └── package.json
|
||||
├── data/ # Runtime data (gitignored)
|
||||
│ ├── app.db # SQLite database
|
||||
│ └── .env # Environment variables
|
||||
└── frontend/ # Built frontend static files
|
||||
```
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### Backend won't start
|
||||
|
||||
Check logs:
|
||||
```bash
|
||||
sudo journalctl -u ave-backend -n 100
|
||||
```
|
||||
|
||||
Common issues:
|
||||
- Missing environment variables - check `.env` file
|
||||
- Port 8000 already in use - check configuration
|
||||
- Database path incorrect - verify paths
|
||||
|
||||
### Nginx errors
|
||||
|
||||
Test configuration:
|
||||
```bash
|
||||
sudo nginx -t
|
||||
```
|
||||
|
||||
Check error logs:
|
||||
```bash
|
||||
sudo tail -f /var/log/nginx/error.log
|
||||
```
|
||||
|
||||
### SSL certificate issues
|
||||
|
||||
Renew certificate:
|
||||
```bash
|
||||
sudo certbot renew
|
||||
```
|
||||
|
||||
Check certificate status:
|
||||
```bash
|
||||
sudo certbot certificates
|
||||
```
|
||||
|
||||
## Useful Commands
|
||||
|
||||
| Action | Command |
|
||||
|--------|---------|
|
||||
| Restart backend | `sudo systemctl restart ave-backend` |
|
||||
| View backend logs | `sudo journalctl -u ave-backend -f` |
|
||||
| Check nginx status | `sudo systemctl status nginx` |
|
||||
| Reload nginx | `sudo systemctl reload nginx` |
|
||||
| Check port 8000 | `curl http://localhost:8000/health` |
|
||||
|
||||
## Rolling Updates
|
||||
|
||||
To update the application:
|
||||
|
||||
```bash
|
||||
cd /var/www/bot
|
||||
git pull
|
||||
cd src/backend && source venv/bin/activate && pip install -r requirements.txt
|
||||
sudo systemctl restart ave-backend
|
||||
```
|
||||
|
||||
For frontend updates, rebuild and copy static files to `/var/www/bot/frontend`.
|
||||
47
deployment/scripts/deploy.sh
Executable file
47
deployment/scripts/deploy.sh
Executable file
@@ -0,0 +1,47 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
DEPLOY_DIR="/var/www/bot"
|
||||
DOMAIN="bot.yourdomain.com"
|
||||
GIT_REPO="https://git.example.com/shoko/randebu.git"
|
||||
BRANCH="main"
|
||||
|
||||
echo "=== Randebu Deployment Script ==="
|
||||
echo "Deploy directory: $DEPLOY_DIR"
|
||||
echo "Domain: $DOMAIN"
|
||||
echo ""
|
||||
|
||||
cd "$DEPLOY_DIR"
|
||||
|
||||
echo "[1/6] Pulling latest code..."
|
||||
git pull origin "$BRANCH"
|
||||
|
||||
echo "[2/6] Updating backend dependencies..."
|
||||
cd "$DEPLOY_DIR/src/backend"
|
||||
source venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
|
||||
echo "[3/6] Rebuilding frontend..."
|
||||
cd "$DEPLOY_DIR/src/frontend"
|
||||
npm install
|
||||
npm run build
|
||||
mkdir -p "$DEPLOY_DIR/frontend"
|
||||
cp -r build/* "$DEPLOY_DIR/frontend/"
|
||||
|
||||
echo "[4/6] Restarting backend service..."
|
||||
sudo systemctl restart ave-backend
|
||||
sleep 2
|
||||
sudo systemctl status ave-backend --no-pager
|
||||
|
||||
echo "[5/6] Testing endpoints..."
|
||||
curl -s "http://localhost:8000/health" && echo ""
|
||||
curl -s -o /dev/null -w "Frontend: %{http_code}\n" "https://$DOMAIN/" || true
|
||||
|
||||
echo "[6/6] Verifying SSL..."
|
||||
sudo certbot certificates 2>/dev/null | grep -A2 "$DOMAIN" || echo "No certificate found for $DOMAIN"
|
||||
|
||||
echo ""
|
||||
echo "=== Deployment Complete ==="
|
||||
echo "Backend: https://$DOMAIN/api/"
|
||||
echo "Frontend: https://$DOMAIN/"
|
||||
echo "Backend logs: sudo journalctl -u ave-backend -f"
|
||||
59
deployment/scripts/nginx-template.conf
Normal file
59
deployment/scripts/nginx-template.conf
Normal file
@@ -0,0 +1,59 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name bot.yourdomain.com;
|
||||
|
||||
return 301 https://$server_name$request_uri;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl http2;
|
||||
server_name bot.yourdomain.com;
|
||||
|
||||
ssl_certificate /etc/letsencrypt/live/bot.yourdomain.com/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/bot.yourdomain.com/privkey.pem;
|
||||
ssl_protocols TLSv1.2 TLSv1.3;
|
||||
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384;
|
||||
ssl_prefer_server_ciphers off;
|
||||
ssl_session_cache shared:SSL:10m;
|
||||
ssl_session_timeout 1d;
|
||||
|
||||
root /var/www/bot/frontend;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
location /api/ {
|
||||
proxy_pass http://127.0.0.1:8000/api/;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection 'upgrade';
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_cache_bypass $http_upgrade;
|
||||
}
|
||||
|
||||
location /ws/ {
|
||||
proxy_pass http://127.0.0.1:8000/ws/;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
|
||||
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
|
||||
expires 1y;
|
||||
add_header Cache-Control "public, immutable";
|
||||
}
|
||||
|
||||
gzip on;
|
||||
gzip_vary on;
|
||||
gzip_min_length 1024;
|
||||
gzip_types text/plain text/css text/xml text/javascript application/javascript application/xml+rss application/json;
|
||||
}
|
||||
21
deployment/scripts/systemd-template.service
Normal file
21
deployment/scripts/systemd-template.service
Normal file
@@ -0,0 +1,21 @@
|
||||
[Unit]
|
||||
Description=Randebu Trading Bot Backend
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=your-user
|
||||
WorkingDirectory=/var/www/bot/src/backend
|
||||
Environment="PATH=/var/www/bot/src/backend/venv/bin"
|
||||
ExecStart=/var/www/bot/src/backend/venv/bin/python /var/www/bot/src/backend/run.py
|
||||
Restart=always
|
||||
RestartSec=10
|
||||
|
||||
EnvironmentFile=/var/www/bot/data/.env
|
||||
|
||||
StandardOutput=journal
|
||||
StandardError=journal
|
||||
SyslogIdentifier=ave-backend
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
521
docs/AUDIT_REPORT.md
Normal file
521
docs/AUDIT_REPORT.md
Normal file
@@ -0,0 +1,521 @@
|
||||
# Randebu Trading Bot - Product & Technical Audit Report
|
||||
|
||||
> **Date:** 2026-04-09
|
||||
> **Phase:** Phase 1 Implementation Complete - Pre-Testing Review
|
||||
> **Purpose:** Document current state, issues found, and recommendations for next steps
|
||||
|
||||
---
|
||||
|
||||
## 1. Product Overview
|
||||
|
||||
### 1.1 What is Randebu?
|
||||
|
||||
Randebu is an AI-powered trading bot platform where users create and manage automated trading strategies through natural language chat—similar to ChatGPT, but specialized for creating trading bots.
|
||||
|
||||
### 1.2 Core User Flow
|
||||
|
||||
```
|
||||
User Registration → Create Bot → Chat with AI to Define Strategy
|
||||
→ Backtest Strategy → Simulate Trading → (Future) Live Trading
|
||||
```
|
||||
|
||||
### 1.3 Phase 1 Scope
|
||||
|
||||
| Feature | Status |
|
||||
|---------|--------|
|
||||
| BNB Chain only | ✅ Intended (not yet enforced) |
|
||||
| Backtest engine | ✅ Implemented |
|
||||
| Simulation engine | ✅ Implemented |
|
||||
| Natural language strategy parsing | ✅ Implemented |
|
||||
| User authentication | ✅ Implemented |
|
||||
| Multi-bot support (max 3) | ✅ Implemented |
|
||||
| Dummy wallet (database record) | ✅ Implemented |
|
||||
|
||||
### 1.4 Tech Stack
|
||||
|
||||
| Layer | Technology |
|
||||
|-------|------------|
|
||||
| Frontend | Svelte 5 + TypeScript |
|
||||
| Backend | Python FastAPI |
|
||||
| AI Agent | CrewAI + MiniMax LLM |
|
||||
| Database | SQLite |
|
||||
| Trading Data | AVE Cloud API |
|
||||
|
||||
---
|
||||
|
||||
## 2. Critical Issues (Must Fix Before Testing)
|
||||
|
||||
These issues will cause complete pipeline failure if not addressed.
|
||||
|
||||
### 2.1 Database Tables Never Created
|
||||
|
||||
**Location:** `src/backend/app/main.py`, `src/backend/run.py`
|
||||
|
||||
**Problem:** The application starts but never creates the database tables. There is no:
|
||||
- Alembic migration setup
|
||||
- `Base.metadata.create_all()` call on startup
|
||||
- Database initialization script
|
||||
|
||||
**Impact:** First database operation will fail with "table not found" error.
|
||||
|
||||
**Current State:**
|
||||
```python
|
||||
# core/database.py defines Base, but nothing calls:
|
||||
# Base.metadata.create_all(engine)
|
||||
```
|
||||
|
||||
**Fix Required:** Add database initialization on application startup.
|
||||
|
||||
---
|
||||
|
||||
### 2.2 Strategy Config Schema Mismatch
|
||||
|
||||
**Location:** Multiple files - see mapping below
|
||||
|
||||
**Problem:** The LLM outputs one schema format, but the backtest and simulation engines expect a completely different format. This is a **complete pipeline break** - strategies parsed by AI will never trigger any trades in backtesting.
|
||||
|
||||
#### Schema Flow Diagram
|
||||
|
||||
```
|
||||
┌─────────────────────────────────────────────────────────────────────────┐
|
||||
│ LLM OUTPUT (llm_connector.py) - What AI actually produces │
|
||||
├─────────────────────────────────────────────────────────────────────────┤
|
||||
│ { │
|
||||
│ "type": "price_drop", │
|
||||
│ "params": { │
|
||||
│ "token": "PEPE", │
|
||||
│ "threshold_percent": 5 │
|
||||
│ } │
|
||||
│ } │
|
||||
└─────────────────────────────────────────────────────────────────────────┘
|
||||
│
|
||||
▼
|
||||
┌─────────────────────────────────────────────────────────────────────────┐
|
||||
│ BACKEND VALIDATOR (crew.py - StrategyValidator.validate()) │
|
||||
├─────────────────────────────────────────────────────────────────────────┤
|
||||
│ # Validator expects params.threshold_percent - THIS WORKS │
|
||||
│ if "threshold_percent" not in params: │
|
||||
│ errors.append(f"Condition {i}: missing 'threshold_percent'") │
|
||||
└─────────────────────────────────────────────────────────────────────────┘
|
||||
│
|
||||
▼ (But engines look for flat fields)
|
||||
┌─────────────────────────────────────────────────────────────────────────┐
|
||||
│ BACKTEST ENGINE (services/backtest/engine.py - _check_condition()) │
|
||||
├─────────────────────────────────────────────────────────────────────────┤
|
||||
│ # What engine actually looks for: │
|
||||
│ threshold = condition.get("threshold", 0) # ❌ Returns 0! │
|
||||
│ token = condition.get("token") # ❌ Wrong path! │
|
||||
│ timeframe = condition.get("timeframe") # ❌ Not in params! │
|
||||
│ │
|
||||
│ # Result: Conditions NEVER trigger because field names don't match │
|
||||
└─────────────────────────────────────────────────────────────────────────┘
|
||||
│
|
||||
▼
|
||||
┌─────────────────────────────────────────────────────────────────────────┐
|
||||
│ SIMULATE ENGINE (services/simulate/engine.py - _check_condition()) │
|
||||
├─────────────────────────────────────────────────────────────────────────┤
|
||||
│ # Same issue as backtest engine │
|
||||
│ threshold = condition.get("threshold", 0) # ❌ Returns 0 │
|
||||
└─────────────────────────────────────────────────────────────────────────┘
|
||||
│
|
||||
▼
|
||||
┌─────────────────────────────────────────────────────────────────────────┐
|
||||
│ FRONTEND TYPES (src/frontend/src/lib/api/types.ts) │
|
||||
├─────────────────────────────────────────────────────────────────────────┤
|
||||
│ interface Condition { │
|
||||
│ type: 'price_drop' | 'price_rise' | 'volume_spike' | 'price_level';│
|
||||
│ token: string; # Flat - no params wrapper │
|
||||
│ threshold?: number; # Not threshold_percent! │
|
||||
│ timeframe?: string; # Exists here │
|
||||
│ } │
|
||||
└─────────────────────────────────────────────────────────────────────────┘
|
||||
```
|
||||
|
||||
#### Field Mapping Table
|
||||
|
||||
| Component | Token Field | Threshold Field | Timeframe Field |
|
||||
|-----------|-----------|-----------------|-----------------|
|
||||
| LLM Output | `params.token` | `params.threshold_percent` | N/A |
|
||||
| Validator | `params.token` | `params.threshold_percent` | N/A |
|
||||
| Backtest Engine | `token` | `threshold` | `timeframe` |
|
||||
| Simulate Engine | `token` | `threshold` | `timeframe` |
|
||||
| Frontend Types | `token` | `threshold` | `timeframe` |
|
||||
|
||||
**Fix Required:** Normalize to ONE consistent schema across the entire pipeline. Recommended: Use the flat structure (token, threshold, timeframe) as it's simpler and already used by engines and frontend.
|
||||
|
||||
---
|
||||
|
||||
### 2.3 Bot Creation Will Fail
|
||||
|
||||
**Location:**
|
||||
- `src/backend/app/db/schemas.py` (BotCreate)
|
||||
- `src/frontend/src/lib/api/client.ts` (bots.create)
|
||||
|
||||
**Problem:**
|
||||
|
||||
| Issue | Details |
|
||||
|-------|---------|
|
||||
| Backend requires | `strategy_config: dict` (REQUIRED) |
|
||||
| Backend requires | `llm_config: dict` (REQUIRED) |
|
||||
| Frontend sends | Only `name` and optional `description` |
|
||||
|
||||
**Impact:** Users cannot create bots through the frontend - API will return validation error.
|
||||
|
||||
**Fix Required:** Either:
|
||||
1. Make `strategy_config` and `llm_config` optional in backend with default values
|
||||
2. OR update frontend to send default config values
|
||||
|
||||
---
|
||||
|
||||
### 2.4 Config Endpoints Return Empty Data
|
||||
|
||||
**Location:** `src/backend/app/api/config.py`
|
||||
|
||||
```python
|
||||
@router.get("/chains")
|
||||
def get_chains():
|
||||
return {"chains": []} # ❌ Always empty
|
||||
|
||||
@router.get("/tokens")
|
||||
def get_tokens():
|
||||
return {"tokens": []} # ❌ Always empty
|
||||
```
|
||||
|
||||
**Impact:** Frontend cannot populate dropdowns for chain/token selection.
|
||||
|
||||
**Fix Required:** Return BSC (BNB Chain) as the only supported chain in Phase 1, and query AVE API for available tokens.
|
||||
|
||||
---
|
||||
|
||||
## 3. Major Issues
|
||||
|
||||
### 3.1 Risk Management Not Implemented
|
||||
|
||||
**Location:**
|
||||
- `src/backend/app/db/models.py` (schema supports it)
|
||||
- `src/backend/app/services/backtest/engine.py`
|
||||
- `src/backend/app/services/simulate/engine.py`
|
||||
|
||||
**Problem:** The database schema and frontend UI support `risk_management` configuration:
|
||||
```typescript
|
||||
interface RiskManagement {
|
||||
stop_loss_percent?: number;
|
||||
take_profit_percent?: number;
|
||||
}
|
||||
```
|
||||
|
||||
However, neither the backtest nor simulation engines actually check or use stop-loss/take-profit logic during trade execution. The config is saved but ignored.
|
||||
|
||||
**Fix Required:** Implement actual stop-loss and take-profit checks in both engines.
|
||||
|
||||
---
|
||||
|
||||
### 3.2 Duplicate AveCloudClient Implementations
|
||||
|
||||
**Location:**
|
||||
- `src/backend/app/services/ave/client.py`
|
||||
- `src/backend/app/services/backtest/ave_client.py`
|
||||
|
||||
**Problem:** Two different AveCloudClient classes with different methods:
|
||||
|
||||
| `services/ave/client.py` | `services/backtest/ave_client.py` |
|
||||
|--------------------------|-----------------------------------|
|
||||
| `get_tokens()` | ❌ Missing |
|
||||
| `get_batch_prices()` | ✅ `get_batch_prices()` |
|
||||
| `get_token_details()` | ❌ Missing |
|
||||
| `get_klines()` | ✅ `get_klines()` |
|
||||
| `get_trending_tokens()` | ❌ Missing |
|
||||
| `get_token_risk()` | ❌ Missing |
|
||||
| `get_chain_quote()` | ❌ Missing |
|
||||
| `get_chain_swap()` | ❌ Missing |
|
||||
| ❌ Missing | `get_token_price()` |
|
||||
|
||||
Additionally, the simulate engine imports from the wrong location:
|
||||
```python
|
||||
# services/simulate/engine.py
|
||||
from ..backtest.ave_client import AveCloudClient # ❌ Wrong import
|
||||
```
|
||||
|
||||
**Fix Required:** Consolidate into ONE AveCloudClient class.
|
||||
|
||||
---
|
||||
|
||||
### 3.3 Silent Error Handling in Simulation
|
||||
|
||||
**Location:** `src/backend/app/services/simulate/engine.py`
|
||||
|
||||
```python
|
||||
try:
|
||||
# ... API calls ...
|
||||
except Exception as e:
|
||||
pass # ❌ Silently swallows ALL errors!
|
||||
```
|
||||
|
||||
**Impact:** If AVE API fails or returns bad data, the simulation continues silently with no logging or user feedback.
|
||||
|
||||
**Fix Required:** Add proper error logging and user-facing error messages.
|
||||
|
||||
---
|
||||
|
||||
### 3.4 No Chain Validation for Phase 1
|
||||
|
||||
**Problem:** You mentioned limiting to BNB Chain only for Phase 1, but:
|
||||
- No backend validation enforces this
|
||||
- Users can specify any chain in backtest/simulate config
|
||||
- The config endpoints return empty arrays
|
||||
|
||||
**Fix Required:** Add chain validation that only allows "bsc" for Phase 1.
|
||||
|
||||
---
|
||||
|
||||
### 3.5 In-Memory Token Blacklist
|
||||
|
||||
**Location:** `src/backend/app/api/auth.py`
|
||||
|
||||
```python
|
||||
TOKEN_BLACKLIST = set() # ❌ In-memory only
|
||||
```
|
||||
|
||||
**Problems:**
|
||||
- Resets when server restarts
|
||||
- Doesn't work with multiple workers/processes
|
||||
- Logout doesn't truly invalidate tokens in production
|
||||
|
||||
**Fix Required:** Use Redis or database-backed token blacklist for production.
|
||||
|
||||
---
|
||||
|
||||
### 3.6 Conversation History Not Passed to Crew
|
||||
|
||||
**Location:** `src/backend/app/api/bots.py`
|
||||
|
||||
```python
|
||||
history_for_crew = conversation_history[-10:] # Gets history
|
||||
crew = get_trading_crew() # ❌ Doesn't pass history!
|
||||
result = crew.chat(user_message, history_for_crew)
|
||||
```
|
||||
|
||||
The history is fetched but not actually used by the agent - each chat starts fresh.
|
||||
|
||||
**Fix Required:** Pass conversation history to the crew agent.
|
||||
|
||||
---
|
||||
|
||||
### 3.7 No Rate Limiting Applied
|
||||
|
||||
**Location:** `src/backend/app/main.py`
|
||||
|
||||
```python
|
||||
app.state.limiter = limiter # Set up but not used on most endpoints
|
||||
```
|
||||
|
||||
The rate limiter is initialized but only applied to the login endpoint. Other endpoints have no protection.
|
||||
|
||||
**Fix Required:** Apply rate limiting to sensitive endpoints.
|
||||
|
||||
---
|
||||
|
||||
### 3.8 CORS Wide Open
|
||||
|
||||
**Location:** `src/backend/app/main.py`
|
||||
|
||||
```python
|
||||
allow_origins=["*"] # ❌ Should be restricted to frontend domain
|
||||
```
|
||||
|
||||
**Fix Required:** Limit CORS to the frontend domain in production.
|
||||
|
||||
---
|
||||
|
||||
### 3.9 No WebSocket for Real-Time Updates
|
||||
|
||||
**Problem:** Users must poll the API to see:
|
||||
- Backtest progress
|
||||
- Simulation signals (new signals only appear on refresh)
|
||||
|
||||
**Impact:** Poor UX during long-running operations.
|
||||
|
||||
**Fix Required:** Add WebSocket support for real-time updates (Phase 2 or later).
|
||||
|
||||
---
|
||||
|
||||
## 4. Minor Issues
|
||||
|
||||
### 4.1 Unused Dependencies
|
||||
|
||||
**Location:** `src/backend/requirements.txt`
|
||||
|
||||
```python
|
||||
anthropic>=0.18.0 # Included but project uses MiniMax
|
||||
```
|
||||
|
||||
**Fix Required:** Remove unused dependency.
|
||||
|
||||
---
|
||||
|
||||
### 4.2 Missing .env Example
|
||||
|
||||
**Problem:** No `.env.example` file to guide deployment.
|
||||
|
||||
**Fix Required:** Create `.env.example` with all required variables documented.
|
||||
|
||||
---
|
||||
|
||||
### 4.3 No Input Sanitization
|
||||
|
||||
User-provided data (bot names, chat messages) isn't sanitized before storage or display.
|
||||
|
||||
**Fix Required:** Add input validation and sanitization.
|
||||
|
||||
---
|
||||
|
||||
### 4.4 Inconsistent Error Responses
|
||||
|
||||
Some endpoints return `{"detail": "..."}` (FastAPI default), others return custom error shapes.
|
||||
|
||||
**Fix Required:** Standardize error response format.
|
||||
|
||||
---
|
||||
|
||||
### 4.5 No Integration Tests
|
||||
|
||||
No tests that verify the full pipeline (chat → config → backtest).
|
||||
|
||||
**Fix Required:** Add integration tests.
|
||||
|
||||
---
|
||||
|
||||
## 5. Missing Documentation Files
|
||||
|
||||
The following should be created:
|
||||
|
||||
1. **`.env.example`** - All environment variables with descriptions
|
||||
2. **`docs/STRATEGY_SCHEMA.md`** - Single source of truth for strategy config schema
|
||||
3. **`docs/API_SCHEMA.md`** - API contract documentation
|
||||
4. **`init_db.py`** - Database initialization script
|
||||
|
||||
---
|
||||
|
||||
## 6. Recommendations Summary
|
||||
|
||||
### Priority Matrix
|
||||
|
||||
| Priority | Issue | Effort | Impact |
|
||||
|----------|-------|--------|--------|
|
||||
| **P0** | Database tables not created | Small | App crashes on startup |
|
||||
| **P0** | Bot creation fails | Small | Users can't create bots |
|
||||
| **P0** | Strategy schema mismatch | Medium | Backtesting completely broken |
|
||||
| **P0** | Config endpoints empty | Small | No chain/token selection |
|
||||
| **P1** | Risk management not implemented | Medium | No stop-loss/take-profit |
|
||||
| **P1** | Chain validation missing | Small | Can use non-BSC chains |
|
||||
| **P1** | Silent error handling | Small | Hard to debug issues |
|
||||
| **P2** | Duplicate AveCloudClient | Medium | Maintenance burden |
|
||||
| **P2** | CORS restricted | Small | Security hardening |
|
||||
| **P2** | Token blacklist (production) | Medium | Security |
|
||||
| **P2** | Rate limiting | Medium | DoS protection |
|
||||
| **P3** | WebSocket support | Large | UX improvement |
|
||||
| **P3** | Integration tests | Medium | Code quality |
|
||||
|
||||
---
|
||||
|
||||
## 7. AVE Cloud Integration Notes
|
||||
|
||||
### Rate Limit Strategy
|
||||
|
||||
| Tier | TPS | Recommended Approach |
|
||||
|------|-----|---------------------|
|
||||
| Free | 1 | Aggressive caching, batch requests |
|
||||
| Normal | 5 | Moderate caching |
|
||||
| Pro | 20 | Minimal caching |
|
||||
|
||||
### Caching Recommendations
|
||||
|
||||
1. **Token prices:** Cache for 30-60 seconds
|
||||
2. **Trending tokens:** Cache for 5-10 minutes
|
||||
3. **Token details:** Cache for 5-10 minutes
|
||||
4. **Risk assessments:** Cache for 15-30 minutes
|
||||
|
||||
### No Testnet Warning
|
||||
|
||||
AVE Cloud has **no testnet**. All API calls use real money:
|
||||
- Use quote/dry-run mode for testing
|
||||
- Start with minimal amounts ($1-10)
|
||||
- Contact AVE support about sandbox options
|
||||
|
||||
---
|
||||
|
||||
## 8. Next Steps
|
||||
|
||||
### Immediate (Before Testing)
|
||||
|
||||
1. Add database initialization to startup
|
||||
2. Fix bot creation (frontend or backend)
|
||||
3. **Normalize strategy schema** - Choose flat structure, update all components
|
||||
4. Populate config endpoints with BSC + default tokens
|
||||
5. Add BSC-only chain validation
|
||||
|
||||
### Short Term
|
||||
|
||||
6. Implement risk management (stop-loss/take-profit)
|
||||
7. Consolidate AveCloudClient
|
||||
8. Add proper error handling
|
||||
9. Create .env.example
|
||||
10. Add input sanitization
|
||||
|
||||
### Medium Term
|
||||
|
||||
11. Add WebSocket for real-time updates
|
||||
12. Implement production token blacklist (Redis)
|
||||
13. Apply rate limiting
|
||||
14. Restrict CORS
|
||||
15. Add integration tests
|
||||
|
||||
---
|
||||
|
||||
## 9. Files Reference
|
||||
|
||||
### Key Backend Files
|
||||
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
| `src/backend/app/main.py` | FastAPI app initialization |
|
||||
| `src/backend/app/api/bots.py` | Bot CRUD + chat endpoint |
|
||||
| `src/backend/app/api/backtest.py` | Backtest API |
|
||||
| `src/backend/app/api/simulate.py` | Simulation API |
|
||||
| `src/backend/app/api/ave.py` | AVE Cloud proxy endpoints |
|
||||
| `src/backend/app/api/config.py` | Config endpoints |
|
||||
| `src/backend/app/db/schemas.py` | Pydantic schemas |
|
||||
| `src/backend/app/db/models.py` | SQLAlchemy models |
|
||||
| `src/backend/app/services/ai_agent/crew.py` | CrewAI agents |
|
||||
| `src/backend/app/services/ai_agent/llm_connector.py` | MiniMax LLM |
|
||||
| `src/backend/app/services/backtest/engine.py` | Backtest logic |
|
||||
| `src/backend/app/services/simulate/engine.py` | Simulation logic |
|
||||
| `src/backend/app/services/ave/client.py` | AVE Cloud client |
|
||||
|
||||
### Key Frontend Files
|
||||
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
| `src/frontend/src/lib/api/client.ts` | API client |
|
||||
| `src/frontend/src/lib/api/types.ts` | TypeScript types |
|
||||
| `src/frontend/src/routes/bot/[id]/+page.svelte` | Bot chat page |
|
||||
| `src/frontend/src/routes/bot/[id]/backtest/+page.svelte` | Backtest page |
|
||||
| `src/frontend/src/routes/bot/[id]/simulate/+page.svelte` | Simulation page |
|
||||
| `src/frontend/src/lib/components/ChatInterface.svelte` | Chat UI |
|
||||
| `src/frontend/src/lib/components/StrategyPreview.svelte` | Strategy display |
|
||||
|
||||
---
|
||||
|
||||
## 10. Audit Complete
|
||||
|
||||
This audit was conducted by reviewing:
|
||||
- All source code in `src/backend/` and `src/frontend/`
|
||||
- Documentation in `docs/`
|
||||
- Database models and schemas
|
||||
- API endpoints and their implementations
|
||||
|
||||
The product has a **solid architectural foundation** and addresses a real market need. The core issues are manageable - primarily schema standardization and missing initialization code.
|
||||
|
||||
---
|
||||
|
||||
*End of Audit Report*
|
||||
279
docs/STRATEGY_SCHEMA.md
Normal file
279
docs/STRATEGY_SCHEMA.md
Normal file
@@ -0,0 +1,279 @@
|
||||
# Strategy Config Schema
|
||||
|
||||
> **Status:** DRAFT - Needs to be normalized with implementation
|
||||
> **Purpose:** Single source of truth for strategy configuration format
|
||||
|
||||
---
|
||||
|
||||
## 1. Overview
|
||||
|
||||
This document defines the structure of the `strategy_config` JSON object that represents a trading bot's strategy. This config is:
|
||||
- Generated by the AI from natural language input
|
||||
- Validated by the backend
|
||||
- Used by backtest and simulation engines
|
||||
- Displayed in the frontend
|
||||
|
||||
---
|
||||
|
||||
## 2. Schema Version
|
||||
|
||||
**Current Version:** 1.0
|
||||
**Status:** Flat structure (NOT nested in `params`)
|
||||
|
||||
> **IMPORTANT:** The current implementation has a mismatch where the LLM outputs a nested `params` structure but the engines expect flat fields. This document defines the **TARGET** schema to normalize all components.
|
||||
|
||||
---
|
||||
|
||||
## 3. Full Schema
|
||||
|
||||
```json
|
||||
{
|
||||
"version": "1.0",
|
||||
"conditions": [
|
||||
{
|
||||
"type": "price_drop",
|
||||
"token": "PEPE",
|
||||
"chain": "bsc",
|
||||
"threshold": 5,
|
||||
"timeframe": "1h"
|
||||
}
|
||||
],
|
||||
"actions": [
|
||||
{
|
||||
"type": "buy",
|
||||
"amount_percent": 10,
|
||||
"token": "PEPE"
|
||||
}
|
||||
],
|
||||
"risk_management": {
|
||||
"stop_loss_percent": 3,
|
||||
"take_profit_percent": 10
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 4. Field Definitions
|
||||
|
||||
### 4.1 Root Fields
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
|-------|------|----------|-------------|
|
||||
| `version` | string | No | Schema version (for future compatibility) |
|
||||
| `conditions` | array | Yes | List of trigger conditions |
|
||||
| `actions` | array | Yes | List of actions to execute when conditions are met |
|
||||
| `risk_management` | object | No | Risk management settings |
|
||||
|
||||
### 4.2 Condition Object
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
|-------|------|----------|-------------|
|
||||
| `type` | string | Yes | Condition type (see supported types below) |
|
||||
| `token` | string | Yes | Token symbol or address (e.g., "PEPE" or "0x123...-bsc") |
|
||||
| `chain` | string | No | Blockchain chain (default: "bsc") |
|
||||
| `threshold` | number | For price_drop/rise/volume_spike | Percentage threshold (e.g., 5 = 5%) |
|
||||
| `price` | number | For price_level | Price level to trigger on |
|
||||
| `direction` | string | For price_level | "above" or "below" |
|
||||
| `timeframe` | string | No | Time window for calculation (e.g., "1h", "15m") |
|
||||
|
||||
#### Supported Condition Types
|
||||
|
||||
| Type | Description | Required Fields |
|
||||
|------|-------------|-----------------|
|
||||
| `price_drop` | Triggers when token price drops by threshold % | token, threshold |
|
||||
| `price_rise` | Triggers when token price rises by threshold % | token, threshold |
|
||||
| `volume_spike` | Triggers when trading volume increases by threshold % | token, threshold |
|
||||
| `price_level` | Triggers when price crosses a specific level | token, price, direction |
|
||||
|
||||
### 4.3 Action Object
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
|-------|------|----------|-------------|
|
||||
| `type` | string | Yes | Action type (buy, sell, hold, notify) |
|
||||
| `amount_percent` | number | For buy/sell | Percentage of portfolio to trade |
|
||||
| `token` | string | No | Token to trade (defaults to condition token) |
|
||||
|
||||
#### Supported Action Types
|
||||
|
||||
| Type | Description | Required Fields |
|
||||
|------|-------------|-----------------|
|
||||
| `buy` | Purchase tokens | amount_percent |
|
||||
| `sell` | Sell tokens | amount_percent |
|
||||
| `hold` | Do nothing (log only) | - |
|
||||
| `notify` | Send notification to user | - |
|
||||
|
||||
### 4.4 Risk Management Object
|
||||
|
||||
| Field | Type | Required | Description |
|
||||
|-------|------|----------|-------------|
|
||||
| `stop_loss_percent` | number | No | Exit trade if loss exceeds this % |
|
||||
| `take_profit_percent` | number | No | Exit trade if profit reaches this % |
|
||||
|
||||
---
|
||||
|
||||
## 5. Examples
|
||||
|
||||
### 5.1 Simple Buy on Price Drop
|
||||
|
||||
> "Buy PEPE when it drops 5% in 1 hour"
|
||||
|
||||
```json
|
||||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "price_drop",
|
||||
"token": "PEPE",
|
||||
"chain": "bsc",
|
||||
"threshold": 5,
|
||||
"timeframe": "1h"
|
||||
}
|
||||
],
|
||||
"actions": [
|
||||
{
|
||||
"type": "buy",
|
||||
"amount_percent": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
### 5.2 Buy on Price Rise with Stop Loss
|
||||
|
||||
> "Buy when PEPE rises 10%, but stop loss at 3%"
|
||||
|
||||
```json
|
||||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "price_rise",
|
||||
"token": "PEPE",
|
||||
"threshold": 10,
|
||||
"timeframe": "4h"
|
||||
}
|
||||
],
|
||||
"actions": [
|
||||
{
|
||||
"type": "buy",
|
||||
"amount_percent": 20
|
||||
}
|
||||
],
|
||||
"risk_management": {
|
||||
"stop_loss_percent": 3
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### 5.3 Sell on Price Level
|
||||
|
||||
> "Sell when PEPE reaches $0.0001"
|
||||
|
||||
```json
|
||||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "price_level",
|
||||
"token": "PEPE",
|
||||
"price": 0.0001,
|
||||
"direction": "above"
|
||||
}
|
||||
],
|
||||
"actions": [
|
||||
{
|
||||
"type": "sell",
|
||||
"amount_percent": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
### 5.4 Volume Spike Alert
|
||||
|
||||
> "Notify me when PEPE volume spikes 50%"
|
||||
|
||||
```json
|
||||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "volume_spike",
|
||||
"token": "PEPE",
|
||||
"threshold": 50,
|
||||
"timeframe": "1h"
|
||||
}
|
||||
],
|
||||
"actions": [
|
||||
{
|
||||
"type": "notify"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 6. Validation Rules
|
||||
|
||||
### 6.1 Conditions
|
||||
|
||||
- At least one condition is required
|
||||
- Each condition must have a valid `type`
|
||||
- Token must be specified
|
||||
- Threshold must be positive number (for applicable types)
|
||||
- Price level must be specified for `price_level` type
|
||||
- Direction must be "above" or "below" for `price_level` type
|
||||
|
||||
### 6.2 Actions
|
||||
|
||||
- At least one action is required
|
||||
- Each action must have a valid `type`
|
||||
- `amount_percent` must be between 0 and 100
|
||||
|
||||
### 6.3 Risk Management
|
||||
|
||||
- `stop_loss_percent` must be positive
|
||||
- `take_profit_percent` must be positive
|
||||
|
||||
---
|
||||
|
||||
## 7. Implementation Status
|
||||
|
||||
### Components Using This Schema
|
||||
|
||||
| Component | Status | Notes |
|
||||
|-----------|--------|-------|
|
||||
| Backend Validator (crew.py) | ❌ Mismatch | Uses nested `params` structure |
|
||||
| Backtest Engine | ❌ Mismatch | Uses flat structure (correct) |
|
||||
| Simulate Engine | ❌ Mismatch | Uses flat structure (correct) |
|
||||
| Frontend Types | ✅ Match | Uses flat structure |
|
||||
| Frontend StrategyPreview | ✅ Match | Uses flat structure |
|
||||
|
||||
### Normalization Required
|
||||
|
||||
The LLM output parser should be updated to output flat structure (not nested in `params`) to match what the engines and frontend expect.
|
||||
|
||||
---
|
||||
|
||||
## 8. Future Extensions
|
||||
|
||||
### Potential Condition Types (Phase 2+)
|
||||
|
||||
| Type | Description |
|
||||
|------|-------------|
|
||||
| `rsi_oversold` | RSI indicator below threshold |
|
||||
| `rsi_overbought` | RSI indicator above threshold |
|
||||
| `ma_crossover` | Moving average crossover |
|
||||
| `bollinger_breakout` | Bollinger Band breakout |
|
||||
| `news_sentiment` | Based on news sentiment analysis |
|
||||
|
||||
### Potential Action Types (Phase 2+)
|
||||
|
||||
| Type | Description |
|
||||
|------|-------------|
|
||||
| `dca_buy` | Dollar cost averaging buy |
|
||||
| `trailing_stop` | Trailing stop loss |
|
||||
| `smart_rebalance` | Portfolio rebalancing |
|
||||
|
||||
---
|
||||
|
||||
*Document Version: 1.0*
|
||||
*Last Updated: 2026-04-09*
|
||||
@@ -1,11 +1,68 @@
|
||||
# Randebu Trading Bot - Environment Variables Template
|
||||
# Copy this file to .env and fill in your values
|
||||
|
||||
# =============================================================================
|
||||
# DATABASE
|
||||
# =============================================================================
|
||||
|
||||
# SQLite database path (relative or absolute)
|
||||
# Example: sqlite:///./data/app.db
|
||||
DATABASE_URL=sqlite:///./data/app.db
|
||||
|
||||
# =============================================================================
|
||||
# AUTHENTICATION
|
||||
# =============================================================================
|
||||
|
||||
# Secret key for JWT token signing
|
||||
# Generate with: python -c "import secrets; print(secrets.token_hex(32))"
|
||||
SECRET_KEY=your-super-secret-key-change-in-production
|
||||
|
||||
# JWT algorithm (HS256 is recommended)
|
||||
JWT_ALGORITHM=HS256
|
||||
|
||||
# Token expiration time in minutes (1440 = 24 hours)
|
||||
ACCESS_TOKEN_EXPIRE_MINUTES=1440
|
||||
|
||||
# =============================================================================
|
||||
# MINIMAX LLM
|
||||
# =============================================================================
|
||||
|
||||
# MiniMax API key (get from https://platform.minimax.chat/)
|
||||
MINIMAX_API_KEY=your-minimax-api-key
|
||||
|
||||
# MiniMax model to use
|
||||
# Common options: MiniMax-Text-01, MiniMax-M2.1
|
||||
MINIMAX_MODEL=MiniMax-Text-01
|
||||
AVE_API_KEY=your-ave-cloud-api-key
|
||||
|
||||
# =============================================================================
|
||||
# AVE CLOUD API
|
||||
# =============================================================================
|
||||
|
||||
# AVE Cloud API key (get from https://cloud.ave.ai/)
|
||||
AVE_API_KEY=your-ave-api-key
|
||||
|
||||
# AVE Cloud plan tier
|
||||
# Options: free, normal, pro
|
||||
# Note: Free tier has 1 TPS limit, Pro required for WebSocket
|
||||
AVE_API_PLAN=free
|
||||
|
||||
# =============================================================================
|
||||
# SERVER CONFIGURATION
|
||||
# =============================================================================
|
||||
|
||||
# Server host (0.0.0.0 for all interfaces)
|
||||
HOST=0.0.0.0
|
||||
|
||||
# Server port
|
||||
PORT=8000
|
||||
|
||||
# Debug mode (set to false in production)
|
||||
DEBUG=false
|
||||
|
||||
# =============================================================================
|
||||
# FRONTEND CONFIGURATION (for reference)
|
||||
# =============================================================================
|
||||
|
||||
# Frontend environment variables (set in frontend .env file):
|
||||
# VITE_API_URL=https://bot.yourdomain.com/api
|
||||
# VITE_WS_URL=wss://bot.yourdomain.com/ws
|
||||
|
||||
265
src/backend/app/api/ave.py
Normal file
265
src/backend/app/api/ave.py
Normal file
@@ -0,0 +1,265 @@
|
||||
from fastapi import APIRouter, Depends, HTTPException, status, Request
|
||||
from sqlalchemy.orm import Session
|
||||
from typing import Annotated, Optional
|
||||
import httpx
|
||||
|
||||
from .auth import get_current_user
|
||||
from ..core.database import get_db
|
||||
from ..core.config import get_settings
|
||||
from ..db.models import User
|
||||
from ..services.ave import AveCloudClient, check_tier_access
|
||||
from ..db.schemas import (
|
||||
AveBatchPricesRequest,
|
||||
AveKlinesRequest,
|
||||
AveChainQuoteRequest,
|
||||
AveChainSwapRequest,
|
||||
)
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
|
||||
def get_ave_client() -> AveCloudClient:
|
||||
settings = get_settings()
|
||||
return AveCloudClient(api_key=settings.AVE_API_KEY, plan=settings.AVE_API_PLAN)
|
||||
|
||||
|
||||
@router.get("/tokens")
|
||||
async def search_tokens(
|
||||
query: Optional[str] = None,
|
||||
chain: Optional[str] = None,
|
||||
limit: int = 20,
|
||||
current_user: User = Depends(get_current_user),
|
||||
):
|
||||
client = get_ave_client()
|
||||
try:
|
||||
tokens = await client.get_tokens(query=query, chain=chain, limit=limit)
|
||||
return {"tokens": tokens}
|
||||
except httpx.HTTPStatusError as e:
|
||||
if e.response.status_code == 429:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
||||
detail="Rate limit exceeded. Please try again later.",
|
||||
)
|
||||
raise HTTPException(
|
||||
status_code=e.response.status_code,
|
||||
detail=f"AVE API error: {e.response.text}",
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
||||
detail=f"Failed to fetch tokens: {str(e)}",
|
||||
)
|
||||
|
||||
|
||||
@router.post("/tokens/price")
|
||||
async def get_batch_prices(
|
||||
request: AveBatchPricesRequest,
|
||||
current_user: User = Depends(get_current_user),
|
||||
):
|
||||
client = get_ave_client()
|
||||
try:
|
||||
prices = await client.get_batch_prices(request.token_ids)
|
||||
return {"prices": prices}
|
||||
except httpx.HTTPStatusError as e:
|
||||
if e.response.status_code == 429:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
||||
detail="Rate limit exceeded. Please try again later.",
|
||||
)
|
||||
raise HTTPException(
|
||||
status_code=e.response.status_code,
|
||||
detail=f"AVE API error: {e.response.text}",
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
||||
detail=f"Failed to fetch batch prices: {str(e)}",
|
||||
)
|
||||
|
||||
|
||||
@router.get("/tokens/{token_id}")
|
||||
async def get_token_details(
|
||||
token_id: str,
|
||||
current_user: User = Depends(get_current_user),
|
||||
):
|
||||
client = get_ave_client()
|
||||
try:
|
||||
token = await client.get_token_details(token_id)
|
||||
if token is None:
|
||||
return {"token": None, "upsell_message": None}
|
||||
return {"token": token}
|
||||
except httpx.HTTPStatusError as e:
|
||||
if e.response.status_code == 429:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
||||
detail="Rate limit exceeded. Please try again later.",
|
||||
)
|
||||
raise HTTPException(
|
||||
status_code=e.response.status_code,
|
||||
detail=f"AVE API error: {e.response.text}",
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
||||
detail=f"Failed to fetch token details: {str(e)}",
|
||||
)
|
||||
|
||||
|
||||
@router.get("/klines/{token_id}")
|
||||
async def get_klines(
|
||||
token_id: str,
|
||||
interval: str = "1h",
|
||||
limit: int = 100,
|
||||
start_time: Optional[int] = None,
|
||||
end_time: Optional[int] = None,
|
||||
current_user: User = Depends(get_current_user),
|
||||
):
|
||||
client = get_ave_client()
|
||||
try:
|
||||
klines = await client.get_klines(
|
||||
token_id=token_id,
|
||||
interval=interval,
|
||||
limit=limit,
|
||||
start_time=start_time,
|
||||
end_time=end_time,
|
||||
)
|
||||
return {"klines": klines}
|
||||
except httpx.HTTPStatusError as e:
|
||||
if e.response.status_code == 429:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
||||
detail="Rate limit exceeded. Please try again later.",
|
||||
)
|
||||
raise HTTPException(
|
||||
status_code=e.response.status_code,
|
||||
detail=f"AVE API error: {e.response.text}",
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
||||
detail=f"Failed to fetch klines: {str(e)}",
|
||||
)
|
||||
|
||||
|
||||
@router.get("/tokens/trending")
|
||||
async def get_trending_tokens(
|
||||
chain: Optional[str] = None,
|
||||
limit: int = 20,
|
||||
current_user: User = Depends(get_current_user),
|
||||
):
|
||||
client = get_ave_client()
|
||||
try:
|
||||
tokens = await client.get_trending_tokens(chain=chain, limit=limit)
|
||||
return {"tokens": tokens}
|
||||
except httpx.HTTPStatusError as e:
|
||||
if e.response.status_code == 429:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
||||
detail="Rate limit exceeded. Please try again later.",
|
||||
)
|
||||
raise HTTPException(
|
||||
status_code=e.response.status_code,
|
||||
detail=f"AVE API error: {e.response.text}",
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
||||
detail=f"Failed to fetch trending tokens: {str(e)}",
|
||||
)
|
||||
|
||||
|
||||
@router.get("/contracts/{contract_id}")
|
||||
async def get_token_risk(
|
||||
contract_id: str,
|
||||
current_user: User = Depends(get_current_user),
|
||||
):
|
||||
client = get_ave_client()
|
||||
try:
|
||||
risk = await client.get_token_risk(contract_id)
|
||||
if risk is None:
|
||||
return {"risk": None, "upsell_message": None}
|
||||
return {"risk": risk}
|
||||
except httpx.HTTPStatusError as e:
|
||||
if e.response.status_code == 429:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
||||
detail="Rate limit exceeded. Please try again later.",
|
||||
)
|
||||
raise HTTPException(
|
||||
status_code=e.response.status_code,
|
||||
detail=f"AVE API error: {e.response.text}",
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
||||
detail=f"Failed to fetch token risk: {str(e)}",
|
||||
)
|
||||
|
||||
|
||||
@router.post("/chain/quote")
|
||||
async def get_chain_quote(
|
||||
request: AveChainQuoteRequest,
|
||||
current_user: User = Depends(get_current_user),
|
||||
):
|
||||
client = get_ave_client()
|
||||
try:
|
||||
quote = await client.get_chain_quote(
|
||||
chain=request.chain,
|
||||
from_token=request.from_token,
|
||||
to_token=request.to_token,
|
||||
amount=request.amount,
|
||||
slippage=request.slippage,
|
||||
)
|
||||
if quote is None:
|
||||
return {"quote": None, "upsell_message": None}
|
||||
return {"quote": quote}
|
||||
except httpx.HTTPStatusError as e:
|
||||
if e.response.status_code == 429:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
||||
detail="Rate limit exceeded. Please try again later.",
|
||||
)
|
||||
raise HTTPException(
|
||||
status_code=e.response.status_code,
|
||||
detail=f"AVE API error: {e.response.text}",
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
||||
detail=f"Failed to fetch chain quote: {str(e)}",
|
||||
)
|
||||
|
||||
|
||||
@router.post("/chain/swap")
|
||||
async def get_chain_swap(
|
||||
request: AveChainSwapRequest,
|
||||
current_user: User = Depends(get_current_user),
|
||||
):
|
||||
client = get_ave_client()
|
||||
try:
|
||||
swap = await client.get_chain_swap(
|
||||
chain=request.chain,
|
||||
from_token=request.from_token,
|
||||
to_token=request.to_token,
|
||||
amount=request.amount,
|
||||
slippage=request.slippage,
|
||||
wallet_address=request.wallet_address,
|
||||
)
|
||||
if swap is None:
|
||||
return {"swap": None, "upsell_message": None}
|
||||
return {"swap": swap}
|
||||
except httpx.HTTPStatusError as e:
|
||||
if e.response.status_code == 429:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
|
||||
detail="Rate limit exceeded. Please try again later.",
|
||||
)
|
||||
raise HTTPException(
|
||||
status_code=e.response.status_code,
|
||||
detail=f"AVE API error: {e.response.text}",
|
||||
)
|
||||
except Exception as e:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
|
||||
detail=f"Failed to fetch chain swap: {str(e)}",
|
||||
)
|
||||
@@ -1,36 +1,219 @@
|
||||
from fastapi import APIRouter, Depends, HTTPException, status
|
||||
import uuid
|
||||
import asyncio
|
||||
from datetime import datetime
|
||||
from fastapi import APIRouter, Depends, HTTPException, status, BackgroundTasks
|
||||
from sqlalchemy.orm import Session
|
||||
from typing import List
|
||||
from typing import List, Dict, Any, Optional
|
||||
from concurrent.futures import ThreadPoolExecutor
|
||||
|
||||
from .auth import get_current_user
|
||||
from ..core.database import get_db
|
||||
from ..core.config import get_settings
|
||||
from ..db.schemas import BacktestCreate, BacktestResponse
|
||||
from ..db.models import Bot, Backtest, Signal, User
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
running_backtests: Dict[str, Any] = {}
|
||||
executor = ThreadPoolExecutor(max_workers=4)
|
||||
|
||||
@router.post("/bots/{bot_id}/backtest", response_model=BacktestResponse)
|
||||
def start_backtest(bot_id: str, config: BacktestCreate, db: Session = Depends(get_db)):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_501_NOT_IMPLEMENTED, detail="Not implemented"
|
||||
|
||||
def run_backtest_sync(
|
||||
backtest_id: str, db_url: str, bot_id: str, config: Dict[str, Any]
|
||||
):
|
||||
import asyncio
|
||||
from ..services.backtest.engine import BacktestEngine
|
||||
from ..core.database import SessionLocal
|
||||
|
||||
async def _run():
|
||||
engine = BacktestEngine(config)
|
||||
engine.run_id = backtest_id
|
||||
running_backtests[backtest_id] = engine
|
||||
try:
|
||||
results = await engine.run()
|
||||
db = SessionLocal()
|
||||
try:
|
||||
backtest = db.query(Backtest).filter(Backtest.id == backtest_id).first()
|
||||
if backtest:
|
||||
backtest.status = engine.status
|
||||
backtest.ended_at = datetime.utcnow()
|
||||
backtest.result = results
|
||||
db.commit()
|
||||
|
||||
for signal in engine.signals:
|
||||
db_signal = Signal(
|
||||
id=signal["id"],
|
||||
bot_id=signal["bot_id"],
|
||||
run_id=signal["run_id"],
|
||||
signal_type=signal["signal_type"],
|
||||
token=signal["token"],
|
||||
price=signal["price"],
|
||||
confidence=signal.get("confidence"),
|
||||
reasoning=signal.get("reasoning"),
|
||||
executed=signal.get("executed", False),
|
||||
created_at=signal["created_at"],
|
||||
)
|
||||
db.add(db_signal)
|
||||
db.commit()
|
||||
finally:
|
||||
db.close()
|
||||
finally:
|
||||
if backtest_id in running_backtests:
|
||||
del running_backtests[backtest_id]
|
||||
|
||||
asyncio.run(_run())
|
||||
|
||||
|
||||
@router.post(
|
||||
"/bots/{bot_id}/backtest",
|
||||
response_model=BacktestResponse,
|
||||
status_code=status.HTTP_201_CREATED,
|
||||
)
|
||||
async def start_backtest(
|
||||
bot_id: str,
|
||||
config: BacktestCreate,
|
||||
background_tasks: BackgroundTasks,
|
||||
current_user: User = Depends(get_current_user),
|
||||
db: Session = Depends(get_db),
|
||||
):
|
||||
bot = db.query(Bot).filter(Bot.id == bot_id).first()
|
||||
if not bot:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Bot not found"
|
||||
)
|
||||
if bot.user_id != current_user.id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN, detail="Not authorized"
|
||||
)
|
||||
|
||||
settings = get_settings()
|
||||
backtest_id = str(uuid.uuid4())
|
||||
|
||||
backtest_config = {
|
||||
"bot_id": bot_id,
|
||||
"token": config.token,
|
||||
"chain": config.chain,
|
||||
"timeframe": config.timeframe,
|
||||
"start_date": config.start_date,
|
||||
"end_date": config.end_date,
|
||||
"strategy_config": bot.strategy_config,
|
||||
"ave_api_key": settings.AVE_API_KEY,
|
||||
"ave_api_plan": settings.AVE_API_PLAN,
|
||||
"initial_balance": 10000.0,
|
||||
}
|
||||
|
||||
backtest = Backtest(
|
||||
id=backtest_id,
|
||||
bot_id=bot_id,
|
||||
started_at=datetime.utcnow(),
|
||||
status="running",
|
||||
config={
|
||||
"token": config.token,
|
||||
"chain": config.chain,
|
||||
"timeframe": config.timeframe,
|
||||
"start_date": config.start_date,
|
||||
"end_date": config.end_date,
|
||||
},
|
||||
)
|
||||
db.add(backtest)
|
||||
db.commit()
|
||||
db.refresh(backtest)
|
||||
|
||||
db_url = str(settings.DATABASE_URL)
|
||||
background_tasks.add_task(
|
||||
run_backtest_sync, backtest_id, db_url, bot_id, backtest_config
|
||||
)
|
||||
|
||||
return backtest
|
||||
|
||||
|
||||
@router.get("/bots/{bot_id}/backtest/{run_id}", response_model=BacktestResponse)
|
||||
def get_backtest(bot_id: str, run_id: str, db: Session = Depends(get_db)):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_501_NOT_IMPLEMENTED, detail="Not implemented"
|
||||
def get_backtest(
|
||||
bot_id: str,
|
||||
run_id: str,
|
||||
current_user: User = Depends(get_current_user),
|
||||
db: Session = Depends(get_db),
|
||||
):
|
||||
bot = db.query(Bot).filter(Bot.id == bot_id).first()
|
||||
if not bot:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Bot not found"
|
||||
)
|
||||
if bot.user_id != current_user.id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN, detail="Not authorized"
|
||||
)
|
||||
|
||||
backtest = (
|
||||
db.query(Backtest)
|
||||
.filter(Backtest.id == run_id, Backtest.bot_id == bot_id)
|
||||
.first()
|
||||
)
|
||||
if not backtest:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Backtest not found"
|
||||
)
|
||||
|
||||
return backtest
|
||||
|
||||
|
||||
@router.get("/bots/{bot_id}/backtests", response_model=List[BacktestResponse])
|
||||
def list_backtests(bot_id: str, db: Session = Depends(get_db)):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_501_NOT_IMPLEMENTED, detail="Not implemented"
|
||||
def list_backtests(
|
||||
bot_id: str,
|
||||
current_user: User = Depends(get_current_user),
|
||||
db: Session = Depends(get_db),
|
||||
):
|
||||
bot = db.query(Bot).filter(Bot.id == bot_id).first()
|
||||
if not bot:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Bot not found"
|
||||
)
|
||||
if bot.user_id != current_user.id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN, detail="Not authorized"
|
||||
)
|
||||
|
||||
backtests = (
|
||||
db.query(Backtest)
|
||||
.filter(Backtest.bot_id == bot_id)
|
||||
.order_by(Backtest.started_at.desc())
|
||||
.all()
|
||||
)
|
||||
return backtests
|
||||
|
||||
|
||||
@router.post("/bots/{bot_id}/backtest/{run_id}/stop")
|
||||
def stop_backtest(bot_id: str, run_id: str, db: Session = Depends(get_db)):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_501_NOT_IMPLEMENTED, detail="Not implemented"
|
||||
def stop_backtest(
|
||||
bot_id: str,
|
||||
run_id: str,
|
||||
current_user: User = Depends(get_current_user),
|
||||
db: Session = Depends(get_db),
|
||||
):
|
||||
bot = db.query(Bot).filter(Bot.id == bot_id).first()
|
||||
if not bot:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Bot not found"
|
||||
)
|
||||
if bot.user_id != current_user.id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN, detail="Not authorized"
|
||||
)
|
||||
|
||||
backtest = (
|
||||
db.query(Backtest)
|
||||
.filter(Backtest.id == run_id, Backtest.bot_id == bot_id)
|
||||
.first()
|
||||
)
|
||||
if not backtest:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Backtest not found"
|
||||
)
|
||||
|
||||
if run_id in running_backtests:
|
||||
engine = running_backtests[run_id]
|
||||
asyncio.create_task(engine.stop())
|
||||
backtest.status = "stopped"
|
||||
backtest.ended_at = datetime.utcnow()
|
||||
db.commit()
|
||||
|
||||
return {"status": "stopping", "run_id": run_id}
|
||||
|
||||
@@ -1,13 +1,19 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
from ..core.config import get_settings
|
||||
from ..services.ave import AveCloudClient
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
|
||||
@router.get("/chains")
|
||||
def get_chains():
|
||||
return {"chains": []}
|
||||
return {"chains": ["bsc"]}
|
||||
|
||||
|
||||
@router.get("/tokens")
|
||||
def get_tokens():
|
||||
return {"tokens": []}
|
||||
async def get_tokens():
|
||||
settings = get_settings()
|
||||
client = AveCloudClient(api_key=settings.AVE_API_KEY, plan=settings.AVE_API_PLAN)
|
||||
tokens = await client.get_tokens(chain="bsc", limit=20)
|
||||
return {"tokens": tokens}
|
||||
|
||||
@@ -1,38 +1,233 @@
|
||||
from fastapi import APIRouter, Depends, HTTPException, status
|
||||
import uuid
|
||||
import asyncio
|
||||
from datetime import datetime
|
||||
from fastapi import APIRouter, Depends, HTTPException, status, BackgroundTasks
|
||||
from sqlalchemy.orm import Session
|
||||
from typing import List
|
||||
from typing import List, Dict, Any, Optional
|
||||
from concurrent.futures import ThreadPoolExecutor
|
||||
|
||||
from .auth import get_current_user
|
||||
from ..core.database import get_db
|
||||
from ..core.config import get_settings
|
||||
from ..db.schemas import SimulationCreate, SimulationResponse
|
||||
from ..db.models import Bot, Simulation, Signal, User
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
running_simulations: Dict[str, Any] = {}
|
||||
executor = ThreadPoolExecutor(max_workers=4)
|
||||
|
||||
@router.post("/bots/{bot_id}/simulate", response_model=SimulationResponse)
|
||||
def start_simulation(
|
||||
bot_id: str, config: SimulationCreate, db: Session = Depends(get_db)
|
||||
|
||||
def run_simulation_sync(
|
||||
simulation_id: str, db_url: str, bot_id: str, config: Dict[str, Any]
|
||||
):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_501_NOT_IMPLEMENTED, detail="Not implemented"
|
||||
import asyncio
|
||||
from ..services.simulate.engine import SimulateEngine
|
||||
from ..core.database import SessionLocal
|
||||
|
||||
async def _run():
|
||||
engine = SimulateEngine(config)
|
||||
engine.run_id = simulation_id
|
||||
running_simulations[simulation_id] = engine
|
||||
try:
|
||||
results = await engine.run()
|
||||
db = SessionLocal()
|
||||
try:
|
||||
simulation = (
|
||||
db.query(Simulation).filter(Simulation.id == simulation_id).first()
|
||||
)
|
||||
if simulation:
|
||||
simulation.status = engine.status
|
||||
simulation.signals = engine.signals
|
||||
db.commit()
|
||||
|
||||
for signal in engine.signals:
|
||||
db_signal = Signal(
|
||||
id=signal["id"],
|
||||
bot_id=signal["bot_id"],
|
||||
run_id=signal["run_id"],
|
||||
signal_type=signal["signal_type"],
|
||||
token=signal["token"],
|
||||
price=signal["price"],
|
||||
confidence=signal.get("confidence"),
|
||||
reasoning=signal.get("reasoning"),
|
||||
executed=signal.get("executed", False),
|
||||
created_at=signal["created_at"],
|
||||
)
|
||||
db.add(db_signal)
|
||||
db.commit()
|
||||
finally:
|
||||
db.close()
|
||||
finally:
|
||||
if simulation_id in running_simulations:
|
||||
del running_simulations[simulation_id]
|
||||
|
||||
asyncio.run(_run())
|
||||
|
||||
|
||||
@router.post(
|
||||
"/bots/{bot_id}/simulate",
|
||||
response_model=SimulationResponse,
|
||||
status_code=status.HTTP_201_CREATED,
|
||||
)
|
||||
async def start_simulation(
|
||||
bot_id: str,
|
||||
config: SimulationCreate,
|
||||
background_tasks: BackgroundTasks,
|
||||
current_user: User = Depends(get_current_user),
|
||||
db: Session = Depends(get_db),
|
||||
):
|
||||
bot = db.query(Bot).filter(Bot.id == bot_id).first()
|
||||
if not bot:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Bot not found"
|
||||
)
|
||||
if bot.user_id != current_user.id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN, detail="Not authorized"
|
||||
)
|
||||
|
||||
settings = get_settings()
|
||||
simulation_id = str(uuid.uuid4())
|
||||
|
||||
check_interval = config.check_interval
|
||||
if settings.AVE_API_PLAN != "pro" and check_interval < 60:
|
||||
check_interval = 60
|
||||
|
||||
simulation_config = {
|
||||
"bot_id": bot_id,
|
||||
"token": config.token,
|
||||
"chain": config.chain,
|
||||
"duration_seconds": config.duration_seconds,
|
||||
"check_interval": check_interval,
|
||||
"auto_execute": config.auto_execute,
|
||||
"strategy_config": bot.strategy_config,
|
||||
"ave_api_key": settings.AVE_API_KEY,
|
||||
"ave_api_plan": settings.AVE_API_PLAN,
|
||||
}
|
||||
|
||||
simulation = Simulation(
|
||||
id=simulation_id,
|
||||
bot_id=bot_id,
|
||||
started_at=datetime.utcnow(),
|
||||
status="running",
|
||||
config={
|
||||
"token": config.token,
|
||||
"chain": config.chain,
|
||||
"duration_seconds": config.duration_seconds,
|
||||
"check_interval": check_interval,
|
||||
"auto_execute": config.auto_execute,
|
||||
},
|
||||
signals=[],
|
||||
)
|
||||
db.add(simulation)
|
||||
db.commit()
|
||||
db.refresh(simulation)
|
||||
|
||||
db_url = str(settings.DATABASE_URL)
|
||||
background_tasks.add_task(
|
||||
run_simulation_sync, simulation_id, db_url, bot_id, simulation_config
|
||||
)
|
||||
|
||||
return simulation
|
||||
|
||||
|
||||
@router.get("/bots/{bot_id}/simulate/{run_id}", response_model=SimulationResponse)
|
||||
def get_simulation(bot_id: str, run_id: str, db: Session = Depends(get_db)):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_501_NOT_IMPLEMENTED, detail="Not implemented"
|
||||
def get_simulation(
|
||||
bot_id: str,
|
||||
run_id: str,
|
||||
current_user: User = Depends(get_current_user),
|
||||
db: Session = Depends(get_db),
|
||||
):
|
||||
bot = db.query(Bot).filter(Bot.id == bot_id).first()
|
||||
if not bot:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Bot not found"
|
||||
)
|
||||
if bot.user_id != current_user.id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN, detail="Not authorized"
|
||||
)
|
||||
|
||||
simulation = (
|
||||
db.query(Simulation)
|
||||
.filter(Simulation.id == run_id, Simulation.bot_id == bot_id)
|
||||
.first()
|
||||
)
|
||||
if not simulation:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Simulation not found"
|
||||
)
|
||||
|
||||
if run_id in running_simulations:
|
||||
engine = running_simulations[run_id]
|
||||
simulation.signals = engine.get_signals()
|
||||
|
||||
return simulation
|
||||
|
||||
|
||||
@router.get("/bots/{bot_id}/simulations", response_model=List[SimulationResponse])
|
||||
def list_simulations(bot_id: str, db: Session = Depends(get_db)):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_501_NOT_IMPLEMENTED, detail="Not implemented"
|
||||
def list_simulations(
|
||||
bot_id: str,
|
||||
current_user: User = Depends(get_current_user),
|
||||
db: Session = Depends(get_db),
|
||||
):
|
||||
bot = db.query(Bot).filter(Bot.id == bot_id).first()
|
||||
if not bot:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Bot not found"
|
||||
)
|
||||
if bot.user_id != current_user.id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN, detail="Not authorized"
|
||||
)
|
||||
|
||||
simulations = (
|
||||
db.query(Simulation)
|
||||
.filter(Simulation.bot_id == bot_id)
|
||||
.order_by(Simulation.started_at.desc())
|
||||
.all()
|
||||
)
|
||||
|
||||
for sim in simulations:
|
||||
if sim.id in running_simulations:
|
||||
engine = running_simulations[sim.id]
|
||||
sim.signals = engine.get_signals()
|
||||
|
||||
return simulations
|
||||
|
||||
|
||||
@router.post("/bots/{bot_id}/simulate/{run_id}/stop")
|
||||
def stop_simulation(bot_id: str, run_id: str, db: Session = Depends(get_db)):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_501_NOT_IMPLEMENTED, detail="Not implemented"
|
||||
def stop_simulation(
|
||||
bot_id: str,
|
||||
run_id: str,
|
||||
current_user: User = Depends(get_current_user),
|
||||
db: Session = Depends(get_db),
|
||||
):
|
||||
bot = db.query(Bot).filter(Bot.id == bot_id).first()
|
||||
if not bot:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Bot not found"
|
||||
)
|
||||
if bot.user_id != current_user.id:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_403_FORBIDDEN, detail="Not authorized"
|
||||
)
|
||||
|
||||
simulation = (
|
||||
db.query(Simulation)
|
||||
.filter(Simulation.id == run_id, Simulation.bot_id == bot_id)
|
||||
.first()
|
||||
)
|
||||
if not simulation:
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_404_NOT_FOUND, detail="Simulation not found"
|
||||
)
|
||||
|
||||
if run_id in running_simulations:
|
||||
engine = running_simulations[run_id]
|
||||
asyncio.create_task(engine.stop())
|
||||
simulation.status = "stopped"
|
||||
db.commit()
|
||||
|
||||
return {"status": "stopping", "run_id": run_id}
|
||||
|
||||
@@ -25,6 +25,7 @@ class User(Base):
|
||||
id = Column(String, primary_key=True, default=generate_uuid)
|
||||
email = Column(String, unique=True, nullable=False)
|
||||
password_hash = Column(String, nullable=False)
|
||||
tier = Column(String, default="free")
|
||||
created_at = Column(DateTime, default=datetime.utcnow)
|
||||
updated_at = Column(DateTime, default=datetime.utcnow, onupdate=datetime.utcnow)
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from pydantic import BaseModel, EmailStr
|
||||
from typing import Optional, List, Any
|
||||
from pydantic import BaseModel, EmailStr, field_validator
|
||||
from typing import Optional, List, Any, Dict
|
||||
from datetime import datetime
|
||||
|
||||
|
||||
@@ -35,8 +35,8 @@ class UserSettingsUpdate(BaseModel):
|
||||
class BotCreate(BaseModel):
|
||||
name: str
|
||||
description: Optional[str] = None
|
||||
strategy_config: dict
|
||||
llm_config: dict
|
||||
strategy_config: Optional[dict] = {}
|
||||
llm_config: Optional[dict] = {}
|
||||
|
||||
|
||||
class BotUpdate(BaseModel):
|
||||
@@ -69,6 +69,13 @@ class BacktestCreate(BaseModel):
|
||||
start_date: str
|
||||
end_date: str
|
||||
|
||||
@field_validator("chain")
|
||||
@classmethod
|
||||
def chain_must_be_bsc(cls, v: str) -> str:
|
||||
if v != "bsc":
|
||||
raise ValueError("Phase 1 only supports BSC (bnb chain)")
|
||||
return v
|
||||
|
||||
|
||||
class BacktestResponse(BaseModel):
|
||||
id: str
|
||||
@@ -87,8 +94,16 @@ class SimulationCreate(BaseModel):
|
||||
token: str
|
||||
chain: str
|
||||
duration_seconds: int = 3600
|
||||
check_interval: int = 60
|
||||
auto_execute: bool = False
|
||||
|
||||
@field_validator("chain")
|
||||
@classmethod
|
||||
def chain_must_be_bsc(cls, v: str) -> str:
|
||||
if v != "bsc":
|
||||
raise ValueError("Phase 1 only supports BSC (bnb chain)")
|
||||
return v
|
||||
|
||||
|
||||
class SimulationResponse(BaseModel):
|
||||
id: str
|
||||
@@ -143,3 +158,72 @@ class SignalResponse(BaseModel):
|
||||
|
||||
class Config:
|
||||
from_attributes = True
|
||||
|
||||
|
||||
class AveTokenSearchResponse(BaseModel):
|
||||
tokens: List[dict]
|
||||
upsell_message: Optional[str] = None
|
||||
|
||||
|
||||
class AveBatchPricesRequest(BaseModel):
|
||||
token_ids: List[str]
|
||||
|
||||
|
||||
class AveBatchPricesResponse(BaseModel):
|
||||
prices: Dict[str, dict]
|
||||
upsell_message: Optional[str] = None
|
||||
|
||||
|
||||
class AveTokenDetailsResponse(BaseModel):
|
||||
token: Optional[dict] = None
|
||||
upsell_message: Optional[str] = None
|
||||
|
||||
|
||||
class AveKlinesRequest(BaseModel):
|
||||
token_id: str
|
||||
interval: str = "1h"
|
||||
limit: int = 100
|
||||
start_time: Optional[int] = None
|
||||
end_time: Optional[int] = None
|
||||
|
||||
|
||||
class AveKlinesResponse(BaseModel):
|
||||
klines: List[dict]
|
||||
upsell_message: Optional[str] = None
|
||||
|
||||
|
||||
class AveTrendingTokensResponse(BaseModel):
|
||||
tokens: List[dict]
|
||||
upsell_message: Optional[str] = None
|
||||
|
||||
|
||||
class AveTokenRiskResponse(BaseModel):
|
||||
risk: Optional[dict] = None
|
||||
upsell_message: Optional[str] = None
|
||||
|
||||
|
||||
class AveChainQuoteRequest(BaseModel):
|
||||
chain: str
|
||||
from_token: str
|
||||
to_token: str
|
||||
amount: str
|
||||
slippage: float = 0.5
|
||||
|
||||
|
||||
class AveChainQuoteResponse(BaseModel):
|
||||
quote: Optional[dict] = None
|
||||
upsell_message: Optional[str] = None
|
||||
|
||||
|
||||
class AveChainSwapRequest(BaseModel):
|
||||
chain: str
|
||||
from_token: str
|
||||
to_token: str
|
||||
amount: str
|
||||
slippage: float = 0.5
|
||||
wallet_address: Optional[str] = None
|
||||
|
||||
|
||||
class AveChainSwapResponse(BaseModel):
|
||||
swap: Optional[dict] = None
|
||||
upsell_message: Optional[str] = None
|
||||
|
||||
@@ -1,14 +1,35 @@
|
||||
import logging
|
||||
from contextlib import asynccontextmanager
|
||||
from fastapi import FastAPI
|
||||
from fastapi.middleware.cors import CORSMiddleware
|
||||
from slowapi import Limiter
|
||||
from slowapi.util import get_remote_address
|
||||
from .api import auth, bots, backtest, simulate, config
|
||||
from .api import auth, bots, backtest, simulate, config, ave
|
||||
from .core.limiter import limiter
|
||||
from .core.database import engine, Base
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@asynccontextmanager
|
||||
async def lifespan(app: FastAPI):
|
||||
"""Initialize database on startup."""
|
||||
# Import all models to ensure they're registered
|
||||
from .db.models import User, Bot, BotConversation, Backtest, Simulation, Signal
|
||||
|
||||
# Create tables if they don't exist
|
||||
Base.metadata.create_all(bind=engine)
|
||||
logger.info("Database initialized successfully")
|
||||
|
||||
yield
|
||||
# Cleanup on shutdown if needed
|
||||
|
||||
|
||||
app = FastAPI(
|
||||
title="Randebu Trading Bot API",
|
||||
description="AI-powered trading bot platform API",
|
||||
version="0.1.0",
|
||||
lifespan=lifespan,
|
||||
)
|
||||
|
||||
app.state.limiter = limiter
|
||||
@@ -26,6 +47,7 @@ app.include_router(bots.router, prefix="/api/bots", tags=["bots"])
|
||||
app.include_router(backtest.router, prefix="/api", tags=["backtest"])
|
||||
app.include_router(simulate.router, prefix="/api", tags=["simulate"])
|
||||
app.include_router(config.router, prefix="/api/config", tags=["config"])
|
||||
app.include_router(ave.router, prefix="/api/ave", tags=["ave"])
|
||||
|
||||
|
||||
@app.get("/")
|
||||
|
||||
@@ -33,29 +33,24 @@ class StrategyValidator:
|
||||
errors.append(f"Condition {i}: unsupported type '{cond_type}'")
|
||||
continue
|
||||
|
||||
params = condition.get("params", {})
|
||||
if cond_type in ["price_drop", "price_rise", "volume_spike"]:
|
||||
if "token" not in params:
|
||||
if "token" not in condition:
|
||||
errors.append(f"Condition {i}: missing 'token'")
|
||||
if "threshold_percent" not in params:
|
||||
errors.append(f"Condition {i}: missing 'threshold_percent'")
|
||||
elif not isinstance(params["threshold_percent"], (int, float)):
|
||||
errors.append(
|
||||
f"Condition {i}: 'threshold_percent' must be a number"
|
||||
)
|
||||
elif params["threshold_percent"] <= 0:
|
||||
errors.append(
|
||||
f"Condition {i}: 'threshold_percent' must be positive"
|
||||
)
|
||||
if "threshold" not in condition:
|
||||
errors.append(f"Condition {i}: missing 'threshold'")
|
||||
elif not isinstance(condition["threshold"], (int, float)):
|
||||
errors.append(f"Condition {i}: 'threshold' must be a number")
|
||||
elif condition["threshold"] <= 0:
|
||||
errors.append(f"Condition {i}: 'threshold' must be positive")
|
||||
|
||||
elif cond_type == "price_level":
|
||||
if "token" not in params:
|
||||
if "token" not in condition:
|
||||
errors.append(f"Condition {i}: missing 'token'")
|
||||
if "price" not in params:
|
||||
if "price" not in condition:
|
||||
errors.append(f"Condition {i}: missing 'price'")
|
||||
if "direction" not in params:
|
||||
if "direction" not in condition:
|
||||
errors.append(f"Condition {i}: missing 'direction'")
|
||||
elif params["direction"] not in ["above", "below"]:
|
||||
elif condition["direction"] not in ["above", "below"]:
|
||||
errors.append(
|
||||
f"Condition {i}: direction must be 'above' or 'below'"
|
||||
)
|
||||
@@ -85,23 +80,22 @@ class StrategyExplainer:
|
||||
explanations.append("This strategy will trigger when:")
|
||||
for cond in cond_list:
|
||||
cond_type = cond.get("type")
|
||||
params = cond.get("params", {})
|
||||
token = params.get("token", "the token")
|
||||
token = cond.get("token", "the token")
|
||||
|
||||
if cond_type == "price_drop":
|
||||
pct = params.get("threshold_percent", 0)
|
||||
pct = cond.get("threshold", 0)
|
||||
explanations.append(f" - {token} price drops by {pct}%")
|
||||
elif cond_type == "price_rise":
|
||||
pct = params.get("threshold_percent", 0)
|
||||
pct = cond.get("threshold", 0)
|
||||
explanations.append(f" - {token} price rises by {pct}%")
|
||||
elif cond_type == "volume_spike":
|
||||
pct = params.get("threshold_percent", 0)
|
||||
pct = cond.get("threshold", 0)
|
||||
explanations.append(
|
||||
f" - {token} trading volume increases by {pct}%"
|
||||
)
|
||||
elif cond_type == "price_level":
|
||||
price = params.get("price", 0)
|
||||
direction = params.get("direction", "unknown")
|
||||
price = cond.get("price", 0)
|
||||
direction = cond.get("direction", "unknown")
|
||||
explanations.append(
|
||||
f" - {token} price crosses {direction} ${price}"
|
||||
)
|
||||
|
||||
@@ -61,9 +61,9 @@ class MiniMaxConnector:
|
||||
system_prompt = """You are a trading strategy designer. Parse the user's natural language request into a JSON strategy_config object.
|
||||
|
||||
Supported conditions (MVP):
|
||||
- price_drop: Token price drops by X% (requires: token, threshold_percent)
|
||||
- price_rise: Token price rises by X% (requires: token, threshold_percent)
|
||||
- volume_spike: Trading volume increases X% (requires: token, threshold_percent)
|
||||
- price_drop: Token price drops by X% (requires: token, threshold)
|
||||
- price_rise: Token price rises by X% (requires: token, threshold)
|
||||
- volume_spike: Trading volume increases X% (requires: token, threshold)
|
||||
- price_level: Price crosses above/below X (requires: token, price, direction)
|
||||
|
||||
Output ONLY valid JSON with this schema:
|
||||
@@ -71,18 +71,17 @@ Output ONLY valid JSON with this schema:
|
||||
"conditions": [
|
||||
{
|
||||
"type": "price_drop|price_rise|volume_spike|price_level",
|
||||
"params": {
|
||||
"token": "TOKEN_SYMBOL",
|
||||
"threshold_percent": number, // for price_drop, price_rise, volume_spike
|
||||
"price": number, // for price_level
|
||||
"direction": "above|below" // for price_level
|
||||
}
|
||||
"token": "TOKEN_SYMBOL",
|
||||
"chain": "bsc",
|
||||
"threshold": number, // for price_drop, price_rise, volume_spike
|
||||
"price": number, // for price_level
|
||||
"direction": "above|below", // for price_level
|
||||
"timeframe": "1h"
|
||||
}
|
||||
],
|
||||
"actions": [
|
||||
{
|
||||
"type": "buy|sell|notify",
|
||||
"params": {}
|
||||
"type": "buy|sell|notify"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
3
src/backend/app/services/ave/__init__.py
Normal file
3
src/backend/app/services/ave/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from .client import AveCloudClient, check_tier_access
|
||||
|
||||
__all__ = ["AveCloudClient", "check_tier_access"]
|
||||
213
src/backend/app/services/ave/client.py
Normal file
213
src/backend/app/services/ave/client.py
Normal file
@@ -0,0 +1,213 @@
|
||||
import httpx
|
||||
from typing import List, Dict, Any, Optional
|
||||
from datetime import datetime
|
||||
|
||||
|
||||
class AveCloudClient:
|
||||
DATA_API_URL = "https://prod.ave-api.com"
|
||||
TRADING_API_URL = "https://bot-api.ave.ai"
|
||||
|
||||
def __init__(self, api_key: str, plan: str = "free"):
|
||||
self.api_key = api_key
|
||||
self.plan = plan
|
||||
|
||||
def _data_headers(self) -> Dict[str, str]:
|
||||
return {"X-API-KEY": self.api_key}
|
||||
|
||||
def _trading_headers(self) -> Dict[str, str]:
|
||||
return {"X-API-KEY": self.api_key, "Content-Type": "application/json"}
|
||||
|
||||
async def get_tokens(
|
||||
self,
|
||||
query: Optional[str] = None,
|
||||
chain: Optional[str] = None,
|
||||
limit: int = 20,
|
||||
) -> List[Dict[str, Any]]:
|
||||
url = f"{self.DATA_API_URL}/v2/tokens"
|
||||
params = {"limit": limit}
|
||||
if query:
|
||||
params["query"] = query
|
||||
if chain:
|
||||
params["chain"] = chain
|
||||
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.get(
|
||||
url, headers=self._data_headers(), params=params, timeout=30.0
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data", [])
|
||||
raise Exception(f"Failed to fetch tokens: {data}")
|
||||
|
||||
async def get_batch_prices(self, token_ids: List[str]) -> Dict[str, Dict[str, Any]]:
|
||||
url = f"{self.DATA_API_URL}/v2/tokens/price"
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.post(
|
||||
url,
|
||||
headers=self._data_headers(),
|
||||
json={"token_ids": token_ids},
|
||||
timeout=30.0,
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data", {})
|
||||
return {}
|
||||
|
||||
async def get_token_details(self, token_id: str) -> Optional[Dict[str, Any]]:
|
||||
url = f"{self.DATA_API_URL}/v2/tokens/{token_id}"
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.get(url, headers=self._data_headers(), timeout=30.0)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data")
|
||||
return None
|
||||
|
||||
async def get_klines(
|
||||
self,
|
||||
token_id: str,
|
||||
interval: str = "1h",
|
||||
limit: int = 100,
|
||||
start_time: Optional[int] = None,
|
||||
end_time: Optional[int] = None,
|
||||
) -> List[Dict[str, Any]]:
|
||||
url = f"{self.DATA_API_URL}/v2/klines/token/{token_id}"
|
||||
params = {"interval": interval, "limit": limit}
|
||||
if start_time:
|
||||
params["start_time"] = start_time
|
||||
if end_time:
|
||||
params["end_time"] = end_time
|
||||
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.get(
|
||||
url, headers=self._data_headers(), params=params, timeout=30.0
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data", [])
|
||||
raise Exception(f"Failed to fetch klines: {data}")
|
||||
|
||||
async def get_trending_tokens(
|
||||
self, chain: Optional[str] = None, limit: int = 20
|
||||
) -> List[Dict[str, Any]]:
|
||||
url = f"{self.DATA_API_URL}/v2/tokens/trending"
|
||||
params = {"limit": limit}
|
||||
if chain:
|
||||
params["chain"] = chain
|
||||
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.get(
|
||||
url, headers=self._data_headers(), params=params, timeout=30.0
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data", [])
|
||||
raise Exception(f"Failed to fetch trending tokens: {data}")
|
||||
|
||||
async def get_token_risk(self, contract_id: str) -> Optional[Dict[str, Any]]:
|
||||
url = f"{self.DATA_API_URL}/v2/contracts/{contract_id}"
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.get(url, headers=self._data_headers(), timeout=30.0)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data")
|
||||
return None
|
||||
|
||||
async def get_chain_quote(
|
||||
self,
|
||||
chain: str,
|
||||
from_token: str,
|
||||
to_token: str,
|
||||
amount: str,
|
||||
slippage: float = 0.5,
|
||||
) -> Optional[Dict[str, Any]]:
|
||||
url = f"{self.TRADING_API_URL}/v1/chain/quote"
|
||||
payload = {
|
||||
"chain": chain,
|
||||
"from_token": from_token,
|
||||
"to_token": to_token,
|
||||
"amount": amount,
|
||||
"slippage": slippage,
|
||||
}
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.post(
|
||||
url, headers=self._trading_headers(), json=payload, timeout=30.0
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data")
|
||||
return None
|
||||
|
||||
async def get_chain_swap(
|
||||
self,
|
||||
chain: str,
|
||||
from_token: str,
|
||||
to_token: str,
|
||||
amount: str,
|
||||
slippage: float = 0.5,
|
||||
wallet_address: Optional[str] = None,
|
||||
) -> Optional[Dict[str, Any]]:
|
||||
url = f"{self.TRADING_API_URL}/v1/chain/swap"
|
||||
payload = {
|
||||
"chain": chain,
|
||||
"from_token": from_token,
|
||||
"to_token": to_token,
|
||||
"amount": amount,
|
||||
"slippage": slippage,
|
||||
}
|
||||
if wallet_address:
|
||||
payload["wallet_address"] = wallet_address
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.post(
|
||||
url, headers=self._trading_headers(), json=payload, timeout=60.0
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data")
|
||||
return None
|
||||
|
||||
|
||||
def check_tier_access(user_tier: str, feature: str) -> tuple[bool, Optional[str]]:
|
||||
tier_access = {
|
||||
"free": {
|
||||
"data_rest": True,
|
||||
"websocket": False,
|
||||
"chain_wallet": True,
|
||||
"proxy_wallet": False,
|
||||
},
|
||||
"normal": {
|
||||
"data_rest": True,
|
||||
"websocket": False,
|
||||
"chain_wallet": True,
|
||||
"proxy_wallet": True,
|
||||
},
|
||||
"pro": {
|
||||
"data_rest": True,
|
||||
"websocket": True,
|
||||
"chain_wallet": True,
|
||||
"proxy_wallet": True,
|
||||
},
|
||||
}
|
||||
|
||||
if user_tier not in tier_access:
|
||||
user_tier = "free"
|
||||
|
||||
access = tier_access[user_tier]
|
||||
if access.get(feature):
|
||||
return True, None
|
||||
|
||||
upsell_messages = {
|
||||
"websocket": "Upgrade to Pro plan to access WebSocket streaming data. Visit your account settings.",
|
||||
"proxy_wallet": "Upgrade to Normal or Pro plan to access Proxy Wallet functionality. Visit your account settings.",
|
||||
}
|
||||
|
||||
return False, upsell_messages.get(
|
||||
feature, "Upgrade your plan to access this feature."
|
||||
)
|
||||
70
src/backend/app/services/backtest/ave_client.py
Normal file
70
src/backend/app/services/backtest/ave_client.py
Normal file
@@ -0,0 +1,70 @@
|
||||
import httpx
|
||||
from typing import List, Dict, Any, Optional
|
||||
from datetime import datetime
|
||||
|
||||
|
||||
class AveCloudClient:
|
||||
BASE_URL = "https://prod.ave-api.com"
|
||||
|
||||
def __init__(self, api_key: str, plan: str = "free"):
|
||||
self.api_key = api_key
|
||||
self.plan = plan
|
||||
|
||||
def _headers(self) -> Dict[str, str]:
|
||||
return {"X-API-KEY": self.api_key}
|
||||
|
||||
async def get_klines(
|
||||
self,
|
||||
token_id: str,
|
||||
interval: str = "1h",
|
||||
limit: int = 100,
|
||||
start_time: Optional[int] = None,
|
||||
end_time: Optional[int] = None,
|
||||
) -> List[Dict[str, Any]]:
|
||||
url = f"{self.BASE_URL}/v2/klines/token/{token_id}"
|
||||
params = {"interval": interval, "limit": limit}
|
||||
if start_time:
|
||||
params["start_time"] = start_time
|
||||
if end_time:
|
||||
params["end_time"] = end_time
|
||||
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.get(
|
||||
url, headers=self._headers(), params=params, timeout=30.0
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data", [])
|
||||
raise Exception(f"Failed to fetch klines: {data}")
|
||||
|
||||
async def get_token_price(self, token_id: str) -> Optional[Dict[str, Any]]:
|
||||
url = f"{self.BASE_URL}/v2/tokens/price"
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.post(
|
||||
url,
|
||||
headers=self._headers(),
|
||||
json={"token_ids": [token_id]},
|
||||
timeout=30.0,
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
prices = data.get("data", {})
|
||||
return prices.get(token_id)
|
||||
return None
|
||||
|
||||
async def get_batch_prices(self, token_ids: List[str]) -> Dict[str, Dict[str, Any]]:
|
||||
url = f"{self.BASE_URL}/v2/tokens/price"
|
||||
async with httpx.AsyncClient() as client:
|
||||
response = await client.post(
|
||||
url,
|
||||
headers=self._headers(),
|
||||
json={"token_ids": token_ids},
|
||||
timeout=30.0,
|
||||
)
|
||||
response.raise_for_status()
|
||||
data = response.json()
|
||||
if data.get("status") == 200:
|
||||
return data.get("data", {})
|
||||
return {}
|
||||
@@ -1,15 +1,324 @@
|
||||
from typing import Optional, Dict, Any
|
||||
import uuid
|
||||
import asyncio
|
||||
from datetime import datetime
|
||||
from typing import Dict, Any, List, Optional
|
||||
from .ave_client import AveCloudClient
|
||||
|
||||
|
||||
class BacktestEngine:
|
||||
def __init__(self, config: Dict[str, Any]):
|
||||
self.config = config
|
||||
self.run_id = str(uuid.uuid4())
|
||||
self.status = "pending"
|
||||
self.results: Optional[Dict[str, Any]] = None
|
||||
self.signals: List[Dict[str, Any]] = []
|
||||
self.ave_client = AveCloudClient(
|
||||
api_key=config.get("ave_api_key", ""),
|
||||
plan=config.get("ave_api_plan", "free"),
|
||||
)
|
||||
self.bot_id = config.get("bot_id")
|
||||
self.strategy_config = config.get("strategy_config", {})
|
||||
self.conditions = self.strategy_config.get("conditions", [])
|
||||
self.actions = self.strategy_config.get("actions", [])
|
||||
self.initial_balance = config.get("initial_balance", 10000.0)
|
||||
self.current_balance = self.initial_balance
|
||||
self.position = 0.0
|
||||
self.position_token = ""
|
||||
self.trades: List[Dict[str, Any]] = []
|
||||
self.running = False
|
||||
|
||||
async def run(self) -> Dict[str, Any]:
|
||||
raise NotImplementedError("Backtest engine not yet implemented")
|
||||
self.running = True
|
||||
self.status = "running"
|
||||
started_at = datetime.utcnow()
|
||||
|
||||
try:
|
||||
token = self.config.get("token", "")
|
||||
chain = self.config.get("chain", "bsc")
|
||||
timeframe = self.config.get("timeframe", "1h")
|
||||
start_date = self.config.get("start_date", "")
|
||||
end_date = self.config.get("end_date", "")
|
||||
|
||||
token_id = (
|
||||
f"{token}-{chain}"
|
||||
if token and not token.endswith(f"-{chain}")
|
||||
else token
|
||||
)
|
||||
|
||||
if not token_id or token_id == f"-{chain}":
|
||||
raise ValueError("Token ID is required")
|
||||
|
||||
start_ts = None
|
||||
end_ts = None
|
||||
if start_date:
|
||||
start_ts = int(
|
||||
datetime.fromisoformat(
|
||||
start_date.replace("Z", "+00:00")
|
||||
).timestamp()
|
||||
* 1000
|
||||
)
|
||||
if end_date:
|
||||
end_ts = int(
|
||||
datetime.fromisoformat(end_date.replace("Z", "+00:00")).timestamp()
|
||||
* 1000
|
||||
)
|
||||
|
||||
klines = await self.ave_client.get_klines(
|
||||
token_id=token_id,
|
||||
interval=timeframe,
|
||||
limit=1000,
|
||||
start_time=start_ts,
|
||||
end_time=end_ts,
|
||||
)
|
||||
|
||||
if not klines:
|
||||
self.status = "failed"
|
||||
self.results = {"error": "No kline data available"}
|
||||
return self.results
|
||||
|
||||
await self._process_klines(klines)
|
||||
self._calculate_metrics()
|
||||
self.status = "completed"
|
||||
|
||||
except Exception as e:
|
||||
self.status = "failed"
|
||||
self.results = {"error": str(e)}
|
||||
|
||||
ended_at = datetime.utcnow()
|
||||
self.results = self.results or {}
|
||||
self.results["started_at"] = started_at
|
||||
self.results["ended_at"] = ended_at
|
||||
self.results["duration_seconds"] = (ended_at - started_at).total_seconds()
|
||||
|
||||
return self.results
|
||||
|
||||
async def _process_klines(self, klines: List[Dict[str, Any]]):
|
||||
for i, kline in enumerate(klines):
|
||||
if not self.running:
|
||||
break
|
||||
|
||||
price = float(kline.get("close", 0))
|
||||
if price <= 0:
|
||||
continue
|
||||
|
||||
timestamp = kline.get("timestamp", 0)
|
||||
|
||||
for condition in self.conditions:
|
||||
if self._check_condition(condition, klines, i, price):
|
||||
await self._execute_actions(price, timestamp, condition)
|
||||
break
|
||||
|
||||
def _check_condition(
|
||||
self,
|
||||
condition: Dict[str, Any],
|
||||
klines: List[Dict[str, Any]],
|
||||
current_idx: int,
|
||||
current_price: float,
|
||||
) -> bool:
|
||||
cond_type = condition.get("type", "")
|
||||
threshold = condition.get("threshold", 0)
|
||||
timeframe = condition.get("timeframe", "1h")
|
||||
price_level = condition.get("price")
|
||||
direction = condition.get("direction", "above")
|
||||
|
||||
if cond_type == "price_drop":
|
||||
if current_idx == 0:
|
||||
return False
|
||||
prev_price = float(klines[current_idx - 1].get("close", 0))
|
||||
if prev_price <= 0:
|
||||
return False
|
||||
drop_pct = ((prev_price - current_price) / prev_price) * 100
|
||||
return drop_pct >= threshold
|
||||
|
||||
elif cond_type == "price_rise":
|
||||
if current_idx == 0:
|
||||
return False
|
||||
prev_price = float(klines[current_idx - 1].get("close", 0))
|
||||
if prev_price <= 0:
|
||||
return False
|
||||
rise_pct = ((current_price - prev_price) / prev_price) * 100
|
||||
return rise_pct >= threshold
|
||||
|
||||
elif cond_type == "volume_spike":
|
||||
if current_idx == 0:
|
||||
return False
|
||||
prev_volume = float(klines[current_idx - 1].get("volume", 0))
|
||||
current_volume = float(kline.get("volume", 0))
|
||||
if prev_volume <= 0:
|
||||
return False
|
||||
volume_increase = ((current_volume - prev_volume) / prev_volume) * 100
|
||||
return volume_increase >= threshold
|
||||
|
||||
elif cond_type == "price_level":
|
||||
if price_level is None:
|
||||
return False
|
||||
if direction == "above":
|
||||
return current_price > price_level
|
||||
else:
|
||||
return current_price < price_level
|
||||
|
||||
return False
|
||||
|
||||
async def _execute_actions(
|
||||
self, price: float, timestamp: int, matched_condition: Dict[str, Any]
|
||||
):
|
||||
token = matched_condition.get("token", self.config.get("token", ""))
|
||||
|
||||
for action in self.actions:
|
||||
action_type = action.get("type", "")
|
||||
amount_percent = action.get("amount_percent", 10)
|
||||
amount = self.current_balance * (amount_percent / 100)
|
||||
|
||||
if action_type == "buy" and self.current_balance >= amount:
|
||||
self.position += amount / price
|
||||
self.current_balance -= amount
|
||||
self.position_token = token
|
||||
self.trades.append(
|
||||
{
|
||||
"type": "buy",
|
||||
"token": token,
|
||||
"price": price,
|
||||
"amount": amount,
|
||||
"quantity": amount / price,
|
||||
"timestamp": timestamp,
|
||||
}
|
||||
)
|
||||
self.signals.append(
|
||||
{
|
||||
"id": str(uuid.uuid4()),
|
||||
"bot_id": self.bot_id,
|
||||
"run_id": self.run_id,
|
||||
"signal_type": "buy",
|
||||
"token": token,
|
||||
"price": price,
|
||||
"confidence": 0.8,
|
||||
"reasoning": f"Condition {matched_condition.get('type')} triggered buy",
|
||||
"executed": False,
|
||||
"created_at": datetime.utcnow(),
|
||||
}
|
||||
)
|
||||
|
||||
elif action_type == "sell" and self.position > 0:
|
||||
sell_amount = self.position * price
|
||||
self.current_balance += sell_amount
|
||||
self.trades.append(
|
||||
{
|
||||
"type": "sell",
|
||||
"token": self.position_token,
|
||||
"price": price,
|
||||
"amount": sell_amount,
|
||||
"quantity": self.position,
|
||||
"timestamp": timestamp,
|
||||
}
|
||||
)
|
||||
self.position = 0
|
||||
self.signals.append(
|
||||
{
|
||||
"id": str(uuid.uuid4()),
|
||||
"bot_id": self.bot_id,
|
||||
"run_id": self.run_id,
|
||||
"signal_type": "sell",
|
||||
"token": self.position_token,
|
||||
"price": price,
|
||||
"confidence": 0.8,
|
||||
"reasoning": f"Condition {matched_condition.get('type')} triggered sell",
|
||||
"executed": False,
|
||||
"created_at": datetime.utcnow(),
|
||||
}
|
||||
)
|
||||
|
||||
def _calculate_metrics(self):
|
||||
final_balance = self.current_balance + (
|
||||
self.position * self.trades[-1]["price"]
|
||||
if self.trades and self.position > 0
|
||||
else 0
|
||||
)
|
||||
total_return = (
|
||||
(final_balance - self.initial_balance) / self.initial_balance
|
||||
) * 100
|
||||
|
||||
buy_trades = [t for t in self.trades if t["type"] == "buy"]
|
||||
sell_trades = [t for t in self.trades if t["type"] == "sell"]
|
||||
total_trades = len(buy_trades) + len(sell_trades)
|
||||
|
||||
winning_trades = 0
|
||||
for i, trade in enumerate(sell_trades):
|
||||
if i < len(buy_trades):
|
||||
buy_price = buy_trades[i]["price"]
|
||||
sell_price = trade["price"]
|
||||
if sell_price > buy_price:
|
||||
winning_trades += 1
|
||||
|
||||
win_rate = (winning_trades / len(sell_trades) * 100) if sell_trades else 0
|
||||
|
||||
portfolio_values = []
|
||||
running_balance = self.initial_balance
|
||||
running_position = 0.0
|
||||
current_token = ""
|
||||
last_price = 0.0
|
||||
|
||||
for trade in self.trades:
|
||||
if trade["type"] == "buy":
|
||||
running_position = trade["quantity"]
|
||||
running_balance = trade["amount"]
|
||||
current_token = trade["token"]
|
||||
last_price = trade["price"]
|
||||
else:
|
||||
running_balance = trade["amount"]
|
||||
running_position = 0
|
||||
last_price = trade["price"]
|
||||
|
||||
portfolio_value = running_balance + (running_position * last_price)
|
||||
portfolio_values.append(portfolio_value)
|
||||
|
||||
max_value = self.initial_balance
|
||||
max_drawdown = 0.0
|
||||
for value in portfolio_values:
|
||||
if value > max_value:
|
||||
max_value = value
|
||||
drawdown = ((max_value - value) / max_value) * 100
|
||||
if drawdown > max_drawdown:
|
||||
max_drawdown = drawdown
|
||||
|
||||
sharpe_ratio = 0.0
|
||||
if len(portfolio_values) > 1:
|
||||
returns = []
|
||||
for i in range(1, len(portfolio_values)):
|
||||
ret = (
|
||||
portfolio_values[i] - portfolio_values[i - 1]
|
||||
) / portfolio_values[i - 1]
|
||||
returns.append(ret)
|
||||
if returns:
|
||||
avg_return = sum(returns) / len(returns)
|
||||
variance = sum((r - avg_return) ** 2 for r in returns) / len(returns)
|
||||
std_dev = variance**0.5
|
||||
if std_dev > 0:
|
||||
sharpe_ratio = avg_return / std_dev
|
||||
|
||||
buy_signals = len(buy_trades)
|
||||
sell_signals = len(sell_trades)
|
||||
|
||||
self.results = {
|
||||
"total_return": round(total_return, 2),
|
||||
"win_rate": round(win_rate, 2),
|
||||
"total_trades": total_trades,
|
||||
"buy_signals": buy_signals,
|
||||
"sell_signals": sell_signals,
|
||||
"max_drawdown": round(max_drawdown, 2),
|
||||
"sharpe_ratio": round(sharpe_ratio, 2),
|
||||
"final_balance": round(final_balance, 2),
|
||||
"signals": self.signals,
|
||||
}
|
||||
|
||||
async def stop(self):
|
||||
raise NotImplementedError("Backtest stop not yet implemented")
|
||||
self.running = False
|
||||
self.status = "stopped"
|
||||
self._calculate_metrics()
|
||||
|
||||
def get_results(self) -> Dict[str, Any]:
|
||||
raise NotImplementedError("Backtest results not yet implemented")
|
||||
return {
|
||||
"id": self.run_id,
|
||||
"status": self.status,
|
||||
"results": self.results,
|
||||
"signals": self.signals,
|
||||
}
|
||||
|
||||
@@ -1,15 +1,177 @@
|
||||
from typing import Optional, Dict, Any, List
|
||||
import uuid
|
||||
import asyncio
|
||||
from datetime import datetime
|
||||
from typing import Dict, Any, List, Optional
|
||||
from ..backtest.ave_client import AveCloudClient
|
||||
|
||||
|
||||
class SimulateEngine:
|
||||
def __init__(self, config: Dict[str, Any]):
|
||||
self.config = config
|
||||
self.run_id = str(uuid.uuid4())
|
||||
self.status = "pending"
|
||||
self.results: Optional[Dict[str, Any]] = None
|
||||
self.signals: List[Dict[str, Any]] = []
|
||||
self.ave_client = AveCloudClient(
|
||||
api_key=config.get("ave_api_key", ""),
|
||||
plan=config.get("ave_api_plan", "free"),
|
||||
)
|
||||
self.bot_id = config.get("bot_id")
|
||||
self.strategy_config = config.get("strategy_config", {})
|
||||
self.conditions = self.strategy_config.get("conditions", [])
|
||||
self.actions = self.strategy_config.get("actions", [])
|
||||
self.check_interval = config.get("check_interval", 60)
|
||||
self.duration_seconds = config.get("duration_seconds", 3600)
|
||||
self.auto_execute = config.get("auto_execute", False)
|
||||
self.token = config.get("token", "")
|
||||
self.chain = config.get("chain", "bsc")
|
||||
self.running = False
|
||||
self.started_at: Optional[datetime] = None
|
||||
self.last_price: Optional[float] = None
|
||||
self.last_volume: Optional[float] = None
|
||||
|
||||
async def run(self) -> List[Dict[str, Any]]:
|
||||
raise NotImplementedError("Simulation engine not yet implemented")
|
||||
async def run(self) -> Dict[str, Any]:
|
||||
self.running = True
|
||||
self.status = "running"
|
||||
self.started_at = datetime.utcnow()
|
||||
|
||||
token_id = (
|
||||
f"{self.token}-{self.chain}"
|
||||
if self.token and not self.token.endswith(f"-{self.chain}")
|
||||
else self.token
|
||||
)
|
||||
|
||||
if not token_id or token_id == f"-{self.chain}":
|
||||
self.status = "failed"
|
||||
self.results = {"error": "Token ID is required"}
|
||||
return self.results
|
||||
|
||||
end_time = datetime.utcnow().timestamp() + self.duration_seconds
|
||||
|
||||
try:
|
||||
while self.running and datetime.utcnow().timestamp() < end_time:
|
||||
try:
|
||||
price_data = await self.ave_client.get_token_price(token_id)
|
||||
if price_data:
|
||||
current_price = float(price_data.get("price", 0))
|
||||
current_volume = float(price_data.get("volume", 0))
|
||||
|
||||
if current_price > 0:
|
||||
await self._check_conditions(
|
||||
current_price, current_volume, price_data
|
||||
)
|
||||
|
||||
self.last_price = current_price
|
||||
self.last_volume = current_volume
|
||||
|
||||
except Exception as e:
|
||||
pass
|
||||
|
||||
for _ in range(self.check_interval):
|
||||
if not self.running:
|
||||
break
|
||||
await asyncio.sleep(1)
|
||||
|
||||
if self.running:
|
||||
self.status = "completed"
|
||||
else:
|
||||
self.status = "stopped"
|
||||
|
||||
except Exception as e:
|
||||
self.status = "failed"
|
||||
self.results = {"error": str(e)}
|
||||
|
||||
self.results = self.results or {}
|
||||
self.results["total_signals"] = len(self.signals)
|
||||
self.results["signals"] = self.signals
|
||||
self.results["started_at"] = self.started_at
|
||||
self.results["ended_at"] = datetime.utcnow()
|
||||
|
||||
return self.results
|
||||
|
||||
async def _check_conditions(
|
||||
self, current_price: float, current_volume: float, price_data: Dict[str, Any]
|
||||
):
|
||||
timestamp = int(datetime.utcnow().timestamp() * 1000)
|
||||
|
||||
for condition in self.conditions:
|
||||
if self._check_condition(condition, current_price, current_volume):
|
||||
await self._execute_actions(current_price, timestamp, condition)
|
||||
break
|
||||
|
||||
def _check_condition(
|
||||
self,
|
||||
condition: Dict[str, Any],
|
||||
current_price: float,
|
||||
current_volume: float,
|
||||
) -> bool:
|
||||
cond_type = condition.get("type", "")
|
||||
threshold = condition.get("threshold", 0)
|
||||
price_level = condition.get("price")
|
||||
direction = condition.get("direction", "above")
|
||||
|
||||
if cond_type == "price_drop":
|
||||
if self.last_price is None or self.last_price <= 0:
|
||||
return False
|
||||
drop_pct = ((self.last_price - current_price) / self.last_price) * 100
|
||||
return drop_pct >= threshold
|
||||
|
||||
elif cond_type == "price_rise":
|
||||
if self.last_price is None or self.last_price <= 0:
|
||||
return False
|
||||
rise_pct = ((current_price - self.last_price) / self.last_price) * 100
|
||||
return rise_pct >= threshold
|
||||
|
||||
elif cond_type == "volume_spike":
|
||||
if self.last_volume is None or self.last_volume <= 0:
|
||||
return False
|
||||
volume_increase = (
|
||||
(current_volume - self.last_volume) / self.last_volume
|
||||
) * 100
|
||||
return volume_increase >= threshold
|
||||
|
||||
elif cond_type == "price_level":
|
||||
if price_level is None:
|
||||
return False
|
||||
if direction == "above":
|
||||
return current_price > price_level
|
||||
else:
|
||||
return current_price < price_level
|
||||
|
||||
return False
|
||||
|
||||
async def _execute_actions(
|
||||
self, price: float, timestamp: int, matched_condition: Dict[str, Any]
|
||||
):
|
||||
token = matched_condition.get("token", self.token)
|
||||
reasoning = f"Condition {matched_condition.get('type')} triggered"
|
||||
|
||||
signal = {
|
||||
"id": str(uuid.uuid4()),
|
||||
"bot_id": self.bot_id,
|
||||
"run_id": self.run_id,
|
||||
"signal_type": "signal",
|
||||
"token": token,
|
||||
"price": price,
|
||||
"confidence": 0.8,
|
||||
"reasoning": reasoning,
|
||||
"executed": self.auto_execute,
|
||||
"created_at": datetime.utcnow(),
|
||||
}
|
||||
|
||||
self.signals.append(signal)
|
||||
|
||||
async def stop(self):
|
||||
raise NotImplementedError("Simulation stop not yet implemented")
|
||||
self.running = False
|
||||
self.status = "stopped"
|
||||
|
||||
def get_results(self) -> Dict[str, Any]:
|
||||
return {
|
||||
"id": self.run_id,
|
||||
"status": self.status,
|
||||
"results": self.results,
|
||||
"signals": self.signals,
|
||||
}
|
||||
|
||||
def get_signals(self) -> List[Dict[str, Any]]:
|
||||
raise NotImplementedError("Simulation signals not yet implemented")
|
||||
return self.signals
|
||||
|
||||
2
src/frontend/.env.example
Normal file
2
src/frontend/.env.example
Normal file
@@ -0,0 +1,2 @@
|
||||
VITE_API_URL=http://localhost:8000/api
|
||||
VITE_WS_URL=ws://localhost:8000/ws
|
||||
23
src/frontend/.gitignore
vendored
Normal file
23
src/frontend/.gitignore
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
node_modules
|
||||
|
||||
# Output
|
||||
.output
|
||||
.vercel
|
||||
.netlify
|
||||
.wrangler
|
||||
/.svelte-kit
|
||||
/build
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Env
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
!.env.test
|
||||
|
||||
# Vite
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
1
src/frontend/.npmrc
Normal file
1
src/frontend/.npmrc
Normal file
@@ -0,0 +1 @@
|
||||
engine-strict=true
|
||||
3
src/frontend/.vscode/extensions.json
vendored
Normal file
3
src/frontend/.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"recommendations": ["svelte.svelte-vscode"]
|
||||
}
|
||||
42
src/frontend/README.md
Normal file
42
src/frontend/README.md
Normal file
@@ -0,0 +1,42 @@
|
||||
# sv
|
||||
|
||||
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
|
||||
|
||||
## Creating a project
|
||||
|
||||
If you're seeing this, you've probably already done this step. Congrats!
|
||||
|
||||
```sh
|
||||
# create a new project
|
||||
npx sv create my-app
|
||||
```
|
||||
|
||||
To recreate this project with the same configuration:
|
||||
|
||||
```sh
|
||||
# recreate this project
|
||||
npx sv@0.15.0 create --template minimal --types ts --no-install .
|
||||
```
|
||||
|
||||
## Developing
|
||||
|
||||
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
|
||||
|
||||
```sh
|
||||
npm run dev
|
||||
|
||||
# or start the server and open the app in a new browser tab
|
||||
npm run dev -- --open
|
||||
```
|
||||
|
||||
## Building
|
||||
|
||||
To create a production version of your app:
|
||||
|
||||
```sh
|
||||
npm run build
|
||||
```
|
||||
|
||||
You can preview the production build with `npm run preview`.
|
||||
|
||||
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
|
||||
1383
src/frontend/package-lock.json
generated
Normal file
1383
src/frontend/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
23
src/frontend/package.json
Normal file
23
src/frontend/package.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "frontend",
|
||||
"private": true,
|
||||
"version": "0.0.1",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview",
|
||||
"prepare": "svelte-kit sync || echo ''",
|
||||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
||||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@sveltejs/adapter-auto": "^7.0.1",
|
||||
"@sveltejs/kit": "^2.57.0",
|
||||
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
||||
"svelte": "^5.55.2",
|
||||
"svelte-check": "^4.4.6",
|
||||
"typescript": "^6.0.2",
|
||||
"vite": "^8.0.7"
|
||||
}
|
||||
}
|
||||
13
src/frontend/src/app.d.ts
vendored
Normal file
13
src/frontend/src/app.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
// See https://svelte.dev/docs/kit/types#app.d.ts
|
||||
// for information about these interfaces
|
||||
declare global {
|
||||
namespace App {
|
||||
// interface Error {}
|
||||
// interface Locals {}
|
||||
// interface PageData {}
|
||||
// interface PageState {}
|
||||
// interface Platform {}
|
||||
}
|
||||
}
|
||||
|
||||
export {};
|
||||
12
src/frontend/src/app.html
Normal file
12
src/frontend/src/app.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="text-scale" content="scale" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
||||
209
src/frontend/src/lib/api/client.ts
Normal file
209
src/frontend/src/lib/api/client.ts
Normal file
@@ -0,0 +1,209 @@
|
||||
import type {
|
||||
User,
|
||||
Bot,
|
||||
BotConversation,
|
||||
Backtest,
|
||||
Simulation,
|
||||
Signal,
|
||||
AuthResponse,
|
||||
BotChatRequest,
|
||||
BotChatResponse,
|
||||
StrategyConfig
|
||||
} from './types';
|
||||
|
||||
const API_URL = import.meta.env.VITE_API_URL || 'http://localhost:8000/api';
|
||||
|
||||
function getAuthHeaders(): HeadersInit {
|
||||
const token = localStorage.getItem('token');
|
||||
return token ? { Authorization: `Bearer ${token}`, 'Content-Type': 'application/json' } : { 'Content-Type': 'application/json' };
|
||||
}
|
||||
|
||||
async function handleResponse<T>(response: Response): Promise<T> {
|
||||
if (!response.ok) {
|
||||
const error = await response.json().catch(() => ({ detail: 'An error occurred' }));
|
||||
throw new Error(error.detail || `HTTP error ${response.status}`);
|
||||
}
|
||||
return response.json();
|
||||
}
|
||||
|
||||
export const api = {
|
||||
auth: {
|
||||
async register(email: string, password: string): Promise<AuthResponse> {
|
||||
const response = await fetch(`${API_URL}/auth/register`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ email, password })
|
||||
});
|
||||
return handleResponse<AuthResponse>(response);
|
||||
},
|
||||
|
||||
async login(email: string, password: string): Promise<AuthResponse> {
|
||||
const response = await fetch(`${API_URL}/auth/login`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ email, password })
|
||||
});
|
||||
return handleResponse<AuthResponse>(response);
|
||||
},
|
||||
|
||||
async logout(): Promise<void> {
|
||||
await fetch(`${API_URL}/auth/logout`, {
|
||||
method: 'POST',
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
},
|
||||
|
||||
async me(): Promise<User> {
|
||||
const response = await fetch(`${API_URL}/auth/me`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<User>(response);
|
||||
}
|
||||
},
|
||||
|
||||
bots: {
|
||||
async list(): Promise<Bot[]> {
|
||||
const response = await fetch(`${API_URL}/bots`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<Bot[]>(response);
|
||||
},
|
||||
|
||||
async create(name: string, description?: string): Promise<Bot> {
|
||||
const response = await fetch(`${API_URL}/bots`, {
|
||||
method: 'POST',
|
||||
headers: getAuthHeaders(),
|
||||
body: JSON.stringify({ name, description })
|
||||
});
|
||||
return handleResponse<Bot>(response);
|
||||
},
|
||||
|
||||
async get(id: string): Promise<Bot> {
|
||||
const response = await fetch(`${API_URL}/bots/${id}`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<Bot>(response);
|
||||
},
|
||||
|
||||
async update(id: string, data: Partial<Bot>): Promise<Bot> {
|
||||
const response = await fetch(`${API_URL}/bots/${id}`, {
|
||||
method: 'PUT',
|
||||
headers: getAuthHeaders(),
|
||||
body: JSON.stringify(data)
|
||||
});
|
||||
return handleResponse<Bot>(response);
|
||||
},
|
||||
|
||||
async delete(id: string): Promise<void> {
|
||||
const response = await fetch(`${API_URL}/bots/${id}`, {
|
||||
method: 'DELETE',
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(`HTTP error ${response.status}`);
|
||||
}
|
||||
},
|
||||
|
||||
async chat(id: string, message: string): Promise<BotChatResponse> {
|
||||
const response = await fetch(`${API_URL}/bots/${id}/chat`, {
|
||||
method: 'POST',
|
||||
headers: getAuthHeaders(),
|
||||
body: JSON.stringify({ message } as BotChatRequest)
|
||||
});
|
||||
return handleResponse<BotChatResponse>(response);
|
||||
},
|
||||
|
||||
async getHistory(id: string): Promise<BotConversation[]> {
|
||||
const response = await fetch(`${API_URL}/bots/${id}/history`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<BotConversation[]>(response);
|
||||
}
|
||||
},
|
||||
|
||||
backtest: {
|
||||
async start(botId: string, config: { token: string; timeframe: string; start_date: string; end_date: string }): Promise<Backtest> {
|
||||
const response = await fetch(`${API_URL}/bots/${botId}/backtest`, {
|
||||
method: 'POST',
|
||||
headers: getAuthHeaders(),
|
||||
body: JSON.stringify(config)
|
||||
});
|
||||
return handleResponse<Backtest>(response);
|
||||
},
|
||||
|
||||
async get(botId: string, runId: string): Promise<Backtest> {
|
||||
const response = await fetch(`${API_URL}/bots/${botId}/backtest/${runId}`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<Backtest>(response);
|
||||
},
|
||||
|
||||
async list(botId: string): Promise<Backtest[]> {
|
||||
const response = await fetch(`${API_URL}/bots/${botId}/backtests`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<Backtest[]>(response);
|
||||
},
|
||||
|
||||
async stop(botId: string, runId: string): Promise<void> {
|
||||
const response = await fetch(`${API_URL}/bots/${botId}/backtest/${runId}/stop`, {
|
||||
method: 'POST',
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(`HTTP error ${response.status}`);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
simulate: {
|
||||
async start(botId: string, config: { token: string; interval_seconds: number; auto_execute: boolean }): Promise<Simulation> {
|
||||
const response = await fetch(`${API_URL}/bots/${botId}/simulate`, {
|
||||
method: 'POST',
|
||||
headers: getAuthHeaders(),
|
||||
body: JSON.stringify(config)
|
||||
});
|
||||
return handleResponse<Simulation>(response);
|
||||
},
|
||||
|
||||
async get(botId: string, runId: string): Promise<Simulation> {
|
||||
const response = await fetch(`${API_URL}/bots/${botId}/simulate/${runId}`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<Simulation>(response);
|
||||
},
|
||||
|
||||
async list(botId: string): Promise<Simulation[]> {
|
||||
const response = await fetch(`${API_URL}/bots/${botId}/simulations`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<Simulation[]>(response);
|
||||
},
|
||||
|
||||
async stop(botId: string, runId: string): Promise<void> {
|
||||
const response = await fetch(`${API_URL}/bots/${botId}/simulate/${runId}/stop`, {
|
||||
method: 'POST',
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(`HTTP error ${response.status}`);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
config: {
|
||||
async getChains(): Promise<string[]> {
|
||||
const response = await fetch(`${API_URL}/config/chains`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<string[]>(response);
|
||||
},
|
||||
|
||||
async getTokens(): Promise<{ symbol: string; chain: string; name: string }[]> {
|
||||
const response = await fetch(`${API_URL}/config/tokens`, {
|
||||
headers: getAuthHeaders()
|
||||
});
|
||||
return handleResponse<{ symbol: string; chain: string; name: string }[]>(response);
|
||||
}
|
||||
}
|
||||
};
|
||||
2
src/frontend/src/lib/api/index.ts
Normal file
2
src/frontend/src/lib/api/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export { api } from './client';
|
||||
export * from './types';
|
||||
128
src/frontend/src/lib/api/types.ts
Normal file
128
src/frontend/src/lib/api/types.ts
Normal file
@@ -0,0 +1,128 @@
|
||||
export interface User {
|
||||
id: string;
|
||||
email: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
||||
|
||||
export interface Bot {
|
||||
id: string;
|
||||
user_id: string;
|
||||
name: string;
|
||||
description: string | null;
|
||||
strategy_config: StrategyConfig;
|
||||
llm_config: LLMConfig;
|
||||
status: 'draft' | 'active' | 'paused';
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
||||
|
||||
export interface StrategyConfig {
|
||||
conditions: Condition[];
|
||||
actions: Action[];
|
||||
risk_management?: RiskManagement;
|
||||
}
|
||||
|
||||
export interface Condition {
|
||||
type: 'price_drop' | 'price_rise' | 'volume_spike' | 'price_level';
|
||||
token: string;
|
||||
chain?: string;
|
||||
threshold?: number;
|
||||
price?: number;
|
||||
direction?: 'above' | 'below';
|
||||
timeframe?: string;
|
||||
}
|
||||
|
||||
export interface Action {
|
||||
type: 'buy' | 'sell' | 'hold';
|
||||
amount_percent?: number;
|
||||
token?: string;
|
||||
}
|
||||
|
||||
export interface RiskManagement {
|
||||
stop_loss_percent?: number;
|
||||
take_profit_percent?: number;
|
||||
}
|
||||
|
||||
export interface LLMConfig {
|
||||
model: string;
|
||||
temperature: number;
|
||||
}
|
||||
|
||||
export interface BotConversation {
|
||||
id: string;
|
||||
bot_id: string;
|
||||
role: 'user' | 'assistant' | 'system';
|
||||
content: string;
|
||||
created_at: string;
|
||||
}
|
||||
|
||||
export interface Backtest {
|
||||
id: string;
|
||||
bot_id: string;
|
||||
started_at: string;
|
||||
ended_at: string | null;
|
||||
status: 'running' | 'completed' | 'failed';
|
||||
config: BacktestConfig;
|
||||
result: BacktestResult | null;
|
||||
}
|
||||
|
||||
export interface BacktestConfig {
|
||||
token: string;
|
||||
timeframe: string;
|
||||
start_date: string;
|
||||
end_date: string;
|
||||
}
|
||||
|
||||
export interface BacktestResult {
|
||||
total_return: number;
|
||||
win_rate: number;
|
||||
total_trades: number;
|
||||
buy_signals: number;
|
||||
sell_signals: number;
|
||||
max_drawdown: number;
|
||||
sharpe_ratio: number;
|
||||
}
|
||||
|
||||
export interface Simulation {
|
||||
id: string;
|
||||
bot_id: string;
|
||||
started_at: string;
|
||||
status: 'running' | 'stopped';
|
||||
config: SimulationConfig;
|
||||
signals: Signal[] | null;
|
||||
}
|
||||
|
||||
export interface SimulationConfig {
|
||||
token: string;
|
||||
interval_seconds: number;
|
||||
auto_execute: boolean;
|
||||
}
|
||||
|
||||
export interface Signal {
|
||||
id: string;
|
||||
bot_id: string;
|
||||
run_id: string;
|
||||
signal_type: 'buy' | 'sell' | 'hold';
|
||||
token: string;
|
||||
price: number;
|
||||
confidence: number | null;
|
||||
reasoning: string | null;
|
||||
executed: boolean;
|
||||
created_at: string;
|
||||
}
|
||||
|
||||
export interface AuthResponse {
|
||||
access_token: string;
|
||||
token_type: string;
|
||||
}
|
||||
|
||||
export interface BotChatRequest {
|
||||
message: string;
|
||||
}
|
||||
|
||||
export interface BotChatResponse {
|
||||
response: string;
|
||||
strategy_config: StrategyConfig | null;
|
||||
success: boolean;
|
||||
}
|
||||
1
src/frontend/src/lib/assets/favicon.svg
Normal file
1
src/frontend/src/lib/assets/favicon.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="107" height="128" viewBox="0 0 107 128"><title>svelte-logo</title><path d="M94.157 22.819c-10.4-14.885-30.94-19.297-45.792-9.835L22.282 29.608A29.92 29.92 0 0 0 8.764 49.65a31.5 31.5 0 0 0 3.108 20.231 30 30 0 0 0-4.477 11.183 31.9 31.9 0 0 0 5.448 24.116c10.402 14.887 30.942 19.297 45.791 9.835l26.083-16.624A29.92 29.92 0 0 0 98.235 78.35a31.53 31.53 0 0 0-3.105-20.232 30 30 0 0 0 4.474-11.182 31.88 31.88 0 0 0-5.447-24.116" style="fill:#ff3e00"/><path d="M45.817 106.582a20.72 20.72 0 0 1-22.237-8.243 19.17 19.17 0 0 1-3.277-14.503 18 18 0 0 1 .624-2.435l.49-1.498 1.337.981a33.6 33.6 0 0 0 10.203 5.098l.97.294-.09.968a5.85 5.85 0 0 0 1.052 3.878 6.24 6.24 0 0 0 6.695 2.485 5.8 5.8 0 0 0 1.603-.704L69.27 76.28a5.43 5.43 0 0 0 2.45-3.631 5.8 5.8 0 0 0-.987-4.371 6.24 6.24 0 0 0-6.698-2.487 5.7 5.7 0 0 0-1.6.704l-9.953 6.345a19 19 0 0 1-5.296 2.326 20.72 20.72 0 0 1-22.237-8.243 19.17 19.17 0 0 1-3.277-14.502 17.99 17.99 0 0 1 8.13-12.052l26.081-16.623a19 19 0 0 1 5.3-2.329 20.72 20.72 0 0 1 22.237 8.243 19.17 19.17 0 0 1 3.277 14.503 18 18 0 0 1-.624 2.435l-.49 1.498-1.337-.98a33.6 33.6 0 0 0-10.203-5.1l-.97-.294.09-.968a5.86 5.86 0 0 0-1.052-3.878 6.24 6.24 0 0 0-6.696-2.485 5.8 5.8 0 0 0-1.602.704L37.73 51.72a5.42 5.42 0 0 0-2.449 3.63 5.79 5.79 0 0 0 .986 4.372 6.24 6.24 0 0 0 6.698 2.486 5.8 5.8 0 0 0 1.602-.704l9.952-6.342a19 19 0 0 1 5.295-2.328 20.72 20.72 0 0 1 22.237 8.242 19.17 19.17 0 0 1 3.277 14.503 18 18 0 0 1-8.13 12.053l-26.081 16.622a19 19 0 0 1-5.3 2.328" style="fill:#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
313
src/frontend/src/lib/components/BacktestChart.svelte
Normal file
313
src/frontend/src/lib/components/BacktestChart.svelte
Normal file
@@ -0,0 +1,313 @@
|
||||
<script lang="ts">
|
||||
import type { BacktestResult } from '$lib/api';
|
||||
|
||||
interface ChartDataPoint {
|
||||
timestamp: string;
|
||||
value: number;
|
||||
}
|
||||
|
||||
interface Props {
|
||||
results: BacktestResult | null;
|
||||
signals?: Array<{ created_at: string; signal_type: string; price: number }>;
|
||||
height?: number;
|
||||
}
|
||||
|
||||
let { results, signals = [], height = 300 }: Props = $props();
|
||||
|
||||
let width = $state(800);
|
||||
let containerEl: HTMLDivElement;
|
||||
|
||||
$effect(() => {
|
||||
if (containerEl) {
|
||||
width = containerEl.clientWidth;
|
||||
}
|
||||
});
|
||||
|
||||
function generatePortfolioCurve(): ChartDataPoint[] {
|
||||
if (!results || signals.length === 0) return [];
|
||||
|
||||
const points: ChartDataPoint[] = [];
|
||||
const startValue = 10000;
|
||||
let currentValue = startValue;
|
||||
|
||||
const sortedSignals = [...signals].sort(
|
||||
(a, b) => new Date(a.created_at).getTime() - new Date(b.created_at).getTime()
|
||||
);
|
||||
|
||||
points.push({
|
||||
timestamp: sortedSignals[0]?.created_at || new Date().toISOString(),
|
||||
value: currentValue
|
||||
});
|
||||
|
||||
for (const signal of sortedSignals) {
|
||||
if (signal.signal_type === 'buy') {
|
||||
currentValue *= 1.05;
|
||||
} else if (signal.signal_type === 'sell') {
|
||||
currentValue *= 0.95;
|
||||
}
|
||||
points.push({
|
||||
timestamp: signal.created_at,
|
||||
value: currentValue
|
||||
});
|
||||
}
|
||||
|
||||
return points;
|
||||
}
|
||||
|
||||
function getChartArea(w: number, h: number): { x: number; y: number; width: number; height: number } {
|
||||
const padding = { top: 20, right: 20, bottom: 40, left: 60 };
|
||||
return {
|
||||
x: padding.left,
|
||||
y: padding.top,
|
||||
width: w - padding.left - padding.right,
|
||||
height: h - padding.top - padding.bottom
|
||||
};
|
||||
}
|
||||
|
||||
function getValueRange(pts: ChartDataPoint[]): { min: number; max: number } {
|
||||
if (pts.length === 0) return { min: 0, max: 10000 };
|
||||
const values = pts.map(p => p.value);
|
||||
const min = Math.min(...values);
|
||||
const max = Math.max(...values);
|
||||
const padding = (max - min) * 0.1 || 1000;
|
||||
return { min: min - padding, max: max + padding };
|
||||
}
|
||||
|
||||
function getPointPosition(point: ChartDataPoint, index: number, total: number, area: { x: number; y: number; width: number; height: number }, range: { min: number; max: number }): { x: number; y: number } {
|
||||
const x = area.x + (index / Math.max(total - 1, 1)) * area.width;
|
||||
const normalizedValue = (point.value - range.min) / (range.max - range.min);
|
||||
const y = area.y + area.height - normalizedValue * area.height;
|
||||
return { x, y };
|
||||
}
|
||||
|
||||
function getYAxisLabels(area: { x: number; y: number; width: number; height: number }, range: { min: number; max: number }): Array<{ value: number; y: number }> {
|
||||
const step = (range.max - range.min) / 4;
|
||||
return [0, 1, 2, 3, 4].map(i => ({
|
||||
value: range.max - i * step,
|
||||
y: area.y + (i / 4) * area.height
|
||||
}));
|
||||
}
|
||||
|
||||
function getXAxisLabels(pts: ChartDataPoint[], area: { x: number; y: number; width: number; height: number }, range: { min: number; max: number }): Array<{ label: string; x: number }> {
|
||||
if (pts.length === 0) return [];
|
||||
const step = Math.max(1, Math.floor(pts.length / 5));
|
||||
return pts
|
||||
.filter((_, i) => i % step === 0 || i === pts.length - 1)
|
||||
.map((p, i, arr) => ({
|
||||
label: new Date(p.timestamp).toLocaleDateString(),
|
||||
x: getPointPosition(p, pts.indexOf(p), pts.length, area, range).x
|
||||
}));
|
||||
}
|
||||
|
||||
function getReturnColor(): string {
|
||||
if (!results) return '#888';
|
||||
return results.total_return >= 0 ? '#22c55e' : '#ef4444';
|
||||
}
|
||||
|
||||
let points = $derived(generatePortfolioCurve());
|
||||
let area = $derived(getChartArea(width, height));
|
||||
let range = $derived(getValueRange(points));
|
||||
let yAxisLabels = $derived(getYAxisLabels(area, range));
|
||||
let xAxisLabels = $derived(getXAxisLabels(points, area, range));
|
||||
</script>
|
||||
|
||||
<div class="backtest-chart" bind:this={containerEl}>
|
||||
{#if !results}
|
||||
<div class="empty-state">
|
||||
<p>No backtest results to display</p>
|
||||
</div>
|
||||
{:else}
|
||||
<div class="chart-header">
|
||||
<div class="metric">
|
||||
<span class="metric-label">Total Return</span>
|
||||
<span class="metric-value" style="color: {getReturnColor()}">
|
||||
{results.total_return >= 0 ? '+' : ''}{results.total_return.toFixed(2)}%
|
||||
</span>
|
||||
</div>
|
||||
<div class="metric">
|
||||
<span class="metric-label">Win Rate</span>
|
||||
<span class="metric-value">{results.win_rate.toFixed(1)}%</span>
|
||||
</div>
|
||||
<div class="metric">
|
||||
<span class="metric-label">Total Trades</span>
|
||||
<span class="metric-value">{results.total_trades}</span>
|
||||
</div>
|
||||
<div class="metric">
|
||||
<span class="metric-label">Sharpe Ratio</span>
|
||||
<span class="metric-value">{results.sharpe_ratio.toFixed(2)}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<svg {width} {height} viewBox="0 0 {width} {height}">
|
||||
<defs>
|
||||
<linearGradient id="portfolioGradient" x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="0%" stop-color="rgba(102, 126, 234, 0.4)" />
|
||||
<stop offset="100%" stop-color="rgba(102, 126, 234, 0)" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<g class="grid-lines">
|
||||
{#each [0, 1, 2, 3, 4] as i}
|
||||
{@const y = area.y + (i / 4) * area.height}
|
||||
<line
|
||||
x1={area.x}
|
||||
y1={y}
|
||||
x2={area.x + area.width}
|
||||
y2={y}
|
||||
stroke="rgba(255,255,255,0.08)"
|
||||
stroke-dasharray="4,4"
|
||||
/>
|
||||
{/each}
|
||||
</g>
|
||||
|
||||
<g class="y-axis">
|
||||
{#each yAxisLabels as label}
|
||||
<text x={area.x - 8} y={label.y + 4} class="axis-label" text-anchor="end">
|
||||
${label.value.toLocaleString()}
|
||||
</text>
|
||||
{/each}
|
||||
</g>
|
||||
|
||||
<g class="x-axis">
|
||||
{#each xAxisLabels as label}
|
||||
<text x={label.x} y={height - 8} class="axis-label" text-anchor="middle">
|
||||
{label.label}
|
||||
</text>
|
||||
{/each}
|
||||
</g>
|
||||
|
||||
{#if points.length > 1}
|
||||
<path
|
||||
d={points.map((p, i) => {
|
||||
const pos = getPointPosition(p, i, points.length, area, range);
|
||||
if (i === 0) {
|
||||
return `M ${pos.x} ${area.y + area.height} L ${pos.x} ${pos.y}`;
|
||||
}
|
||||
return `L ${pos.x} ${pos.y}`;
|
||||
}).join(' ') + ` L ${getPointPosition(points[points.length - 1], points.length - 1, points.length, area, range).x} ${area.y + area.height} Z`}
|
||||
fill="url(#portfolioGradient)"
|
||||
/>
|
||||
|
||||
<path
|
||||
d={points.map((p, i) => {
|
||||
const pos = getPointPosition(p, i, points.length, area, range);
|
||||
return `${i === 0 ? 'M' : 'L'} ${pos.x} ${pos.y}`;
|
||||
}).join(' ')}
|
||||
fill="none"
|
||||
stroke="#667eea"
|
||||
stroke-width="2.5"
|
||||
/>
|
||||
{/if}
|
||||
</svg>
|
||||
|
||||
<div class="chart-footer">
|
||||
<div class="stat">
|
||||
<span class="stat-label">Buy Signals</span>
|
||||
<span class="stat-value buy">{results.buy_signals}</span>
|
||||
</div>
|
||||
<div class="stat">
|
||||
<span class="stat-label">Sell Signals</span>
|
||||
<span class="stat-value sell">{results.sell_signals}</span>
|
||||
</div>
|
||||
<div class="stat">
|
||||
<span class="stat-label">Max Drawdown</span>
|
||||
<span class="stat-value negative">-{results.max_drawdown.toFixed(2)}%</span>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.backtest-chart {
|
||||
width: 100%;
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 300px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.chart-header {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.metric {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.metric-label {
|
||||
font-size: 0.75rem;
|
||||
color: #888;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.metric-value {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
svg {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.axis-label {
|
||||
font-size: 10px;
|
||||
fill: #666;
|
||||
}
|
||||
|
||||
.chart-footer {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
margin-top: 1rem;
|
||||
padding-top: 1rem;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.stat {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 0.75rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.buy {
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.sell {
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.negative {
|
||||
color: #ef4444;
|
||||
}
|
||||
</style>
|
||||
127
src/frontend/src/lib/components/BotCard.svelte
Normal file
127
src/frontend/src/lib/components/BotCard.svelte
Normal file
@@ -0,0 +1,127 @@
|
||||
<script lang="ts">
|
||||
import type { Bot } from '$lib/api';
|
||||
|
||||
interface Props {
|
||||
bot: Bot;
|
||||
onOpen?: (botId: string) => void;
|
||||
onDelete?: (botId: string) => void;
|
||||
showActions?: boolean;
|
||||
}
|
||||
|
||||
let { bot, onOpen, onDelete, showActions = true }: Props = $props();
|
||||
|
||||
function handleOpen() {
|
||||
onOpen?.(bot.id);
|
||||
}
|
||||
|
||||
function handleDelete(e: Event) {
|
||||
e.stopPropagation();
|
||||
onDelete?.(bot.id);
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="bot-card" onclick={handleOpen} role="button" tabindex="0" onkeydown={(e) => e.key === 'Enter' && handleOpen()}>
|
||||
<div class="bot-info">
|
||||
<h3>{bot.name}</h3>
|
||||
{#if bot.description}
|
||||
<p class="bot-description">{bot.description}</p>
|
||||
{/if}
|
||||
<span class="bot-status status-{bot.status}">{bot.status}</span>
|
||||
</div>
|
||||
{#if showActions}
|
||||
<div class="bot-actions" onclick={(e) => e.stopPropagation()} role="group">
|
||||
<button class="btn btn-primary" onclick={handleOpen}>Open</button>
|
||||
<button class="btn btn-danger" onclick={handleDelete}>Delete</button>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.bot-card {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 1.5rem;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s, border-color 0.2s;
|
||||
}
|
||||
|
||||
.bot-card:hover {
|
||||
transform: translateY(-2px);
|
||||
border-color: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.bot-card:focus {
|
||||
outline: 2px solid #667eea;
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
.bot-info {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.bot-info h3 {
|
||||
margin: 0 0 0.5rem;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.bot-description {
|
||||
color: #888;
|
||||
font-size: 0.9rem;
|
||||
margin: 0 0 0.75rem;
|
||||
}
|
||||
|
||||
.bot-status {
|
||||
display: inline-block;
|
||||
padding: 0.25rem 0.75rem;
|
||||
border-radius: 9999px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.status-draft {
|
||||
background: rgba(251, 191, 36, 0.2);
|
||||
color: #fbbf24;
|
||||
}
|
||||
|
||||
.status-active {
|
||||
background: rgba(34, 197, 94, 0.2);
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.status-paused {
|
||||
background: rgba(251, 191, 36, 0.2);
|
||||
color: #fbbf24;
|
||||
}
|
||||
|
||||
.bot-actions {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 8px;
|
||||
font-weight: 500;
|
||||
font-size: 0.9rem;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
transition: transform 0.2s, opacity 0.2s;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
color: #fca5a5;
|
||||
border: 1px solid rgba(239, 68, 68, 0.4);
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
</style>
|
||||
94
src/frontend/src/lib/components/BotSelector.svelte
Normal file
94
src/frontend/src/lib/components/BotSelector.svelte
Normal file
@@ -0,0 +1,94 @@
|
||||
<script lang="ts">
|
||||
import type { Bot } from '$lib/api';
|
||||
|
||||
interface Props {
|
||||
bots: Bot[];
|
||||
selectedBotId?: string | null;
|
||||
onSelect: (botId: string) => void;
|
||||
disabled?: boolean;
|
||||
label?: string;
|
||||
}
|
||||
|
||||
let { bots, selectedBotId = null, onSelect, disabled = false, label = 'Select Bot' }: Props = $props();
|
||||
|
||||
function handleChange(e: Event) {
|
||||
const target = e.target as HTMLSelectElement;
|
||||
onSelect(target.value);
|
||||
}
|
||||
|
||||
const MAX_BOTS = 3;
|
||||
</script>
|
||||
|
||||
<div class="bot-selector">
|
||||
{#if label}
|
||||
<label for="bot-select">{label}</label>
|
||||
{/if}
|
||||
<div class="select-wrapper">
|
||||
<select
|
||||
id="bot-select"
|
||||
onchange={handleChange}
|
||||
disabled={disabled || bots.length === 0}
|
||||
value={selectedBotId || ''}
|
||||
>
|
||||
{#if bots.length === 0}
|
||||
<option value="" disabled>No bots available</option>
|
||||
{:else}
|
||||
{#each bots as bot}
|
||||
<option value={bot.id}>{bot.name}</option>
|
||||
{/each}
|
||||
{/if}
|
||||
</select>
|
||||
<span class="bot-count">{bots.length}/{MAX_BOTS}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.bot-selector {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 0.9rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.select-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
select {
|
||||
flex: 1;
|
||||
padding: 0.75rem 1rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
cursor: pointer;
|
||||
appearance: none;
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 1rem center;
|
||||
padding-right: 2.5rem;
|
||||
}
|
||||
|
||||
select:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
select:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.bot-count {
|
||||
font-size: 0.8rem;
|
||||
color: #666;
|
||||
white-space: nowrap;
|
||||
}
|
||||
</style>
|
||||
300
src/frontend/src/lib/components/ChatInterface.svelte
Normal file
300
src/frontend/src/lib/components/ChatInterface.svelte
Normal file
@@ -0,0 +1,300 @@
|
||||
<script lang="ts">
|
||||
import type { Bot } from '$lib/api';
|
||||
import type { ChatMessage } from '$lib/stores/chatStore';
|
||||
|
||||
interface Props {
|
||||
bot: Bot | null;
|
||||
messages: ChatMessage[];
|
||||
isSending?: boolean;
|
||||
onSendMessage: (message: string) => void;
|
||||
onSelectBot?: (botId: string) => void;
|
||||
availableBots?: Bot[];
|
||||
showBotSelector?: boolean;
|
||||
}
|
||||
|
||||
let {
|
||||
bot,
|
||||
messages,
|
||||
isSending = false,
|
||||
onSendMessage,
|
||||
onSelectBot,
|
||||
availableBots = [],
|
||||
showBotSelector = false
|
||||
}: Props = $props();
|
||||
|
||||
let messageInput = $state('');
|
||||
let chatContainer: HTMLDivElement;
|
||||
|
||||
function handleSend() {
|
||||
if (!messageInput.trim()) return;
|
||||
onSendMessage(messageInput);
|
||||
messageInput = '';
|
||||
}
|
||||
|
||||
function handleKeydown(e: KeyboardEvent) {
|
||||
if (e.key === 'Enter' && !e.shiftKey) {
|
||||
e.preventDefault();
|
||||
handleSend();
|
||||
}
|
||||
}
|
||||
|
||||
function handleBotChange(e: Event) {
|
||||
const target = e.target as HTMLSelectElement;
|
||||
if (onSelectBot && target.value) {
|
||||
onSelectBot(target.value);
|
||||
}
|
||||
}
|
||||
|
||||
$effect(() => {
|
||||
if (messages.length && chatContainer) {
|
||||
setTimeout(() => {
|
||||
chatContainer.scrollTop = chatContainer.scrollHeight;
|
||||
}, 50);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<div class="chat-interface">
|
||||
{#if showBotSelector && availableBots.length > 0}
|
||||
<div class="bot-selector">
|
||||
<label for="bot-select">Active Bot:</label>
|
||||
<select id="bot-select" onchange={handleBotChange}>
|
||||
{#each availableBots as availableBot}
|
||||
<option value={availableBot.id} selected={availableBot.id === bot?.id}>
|
||||
{availableBot.name}
|
||||
</option>
|
||||
{/each}
|
||||
</select>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="chat-messages" bind:this={chatContainer}>
|
||||
{#if messages.length === 0}
|
||||
<div class="welcome-message">
|
||||
<p>Welcome to {bot?.name || 'your bot'}! Describe your trading strategy in plain English.</p>
|
||||
<p class="hint">Example: "Buy PEPE when the price drops by 5% within 1 hour"</p>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{#each messages as message}
|
||||
<div class="message {message.role}">
|
||||
<div class="message-content">
|
||||
{message.content}
|
||||
</div>
|
||||
<div class="message-time">
|
||||
{message.timestamp.toLocaleTimeString()}
|
||||
</div>
|
||||
</div>
|
||||
{/each}
|
||||
|
||||
{#if isSending}
|
||||
<div class="message assistant">
|
||||
<div class="message-content typing">
|
||||
<span class="dot"></span>
|
||||
<span class="dot"></span>
|
||||
<span class="dot"></span>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{#if bot}
|
||||
<div class="input-container">
|
||||
<textarea
|
||||
bind:value={messageInput}
|
||||
onkeydown={handleKeydown}
|
||||
placeholder="Describe your trading strategy..."
|
||||
rows="1"
|
||||
disabled={isSending}
|
||||
></textarea>
|
||||
<button onclick={handleSend} disabled={isSending || !messageInput.trim()}>
|
||||
Send
|
||||
</button>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.chat-interface {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.bot-selector {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
padding: 0.75rem 1rem;
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.bot-selector label {
|
||||
font-size: 0.9rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.bot-selector select {
|
||||
padding: 0.5rem 0.75rem;
|
||||
border-radius: 6px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 0.9rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.bot-selector select:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
.chat-messages {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.welcome-message {
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.welcome-message .hint {
|
||||
font-size: 0.85rem;
|
||||
margin-top: 1rem;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.message {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.message.user {
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.message.assistant {
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.message.system {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.message-content {
|
||||
max-width: 70%;
|
||||
padding: 0.75rem 1rem;
|
||||
border-radius: 12px;
|
||||
line-height: 1.5;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.message.user .message-content {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
|
||||
.message.assistant .message-content {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
|
||||
.message.system .message-content {
|
||||
background: rgba(251, 191, 36, 0.1);
|
||||
color: #fbbf24;
|
||||
font-size: 0.9rem;
|
||||
border: 1px solid rgba(251, 191, 36, 0.3);
|
||||
}
|
||||
|
||||
.message-time {
|
||||
font-size: 0.7rem;
|
||||
color: #666;
|
||||
margin-top: 0.25rem;
|
||||
padding: 0 0.5rem;
|
||||
}
|
||||
|
||||
.typing {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
padding: 1rem 1.25rem;
|
||||
}
|
||||
|
||||
.dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: #888;
|
||||
border-radius: 50%;
|
||||
animation: typing 1.4s infinite;
|
||||
}
|
||||
|
||||
.dot:nth-child(2) {
|
||||
animation-delay: 0.2s;
|
||||
}
|
||||
|
||||
.dot:nth-child(3) {
|
||||
animation-delay: 0.4s;
|
||||
}
|
||||
|
||||
@keyframes typing {
|
||||
0%, 60%, 100% {
|
||||
transform: translateY(0);
|
||||
opacity: 0.4;
|
||||
}
|
||||
30% {
|
||||
transform: translateY(-4px);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.input-container {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
padding: 1rem;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
textarea {
|
||||
flex: 1;
|
||||
padding: 0.75rem 1rem;
|
||||
border-radius: 12px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
resize: none;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
textarea:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 0.75rem 1.5rem;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 12px;
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
button:hover:not(:disabled) {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
</style>
|
||||
348
src/frontend/src/lib/components/ConditionBuilder.svelte
Normal file
348
src/frontend/src/lib/components/ConditionBuilder.svelte
Normal file
@@ -0,0 +1,348 @@
|
||||
<script lang="ts">
|
||||
import type { Condition } from '$lib/api';
|
||||
import TokenPicker from './TokenPicker.svelte';
|
||||
|
||||
interface Props {
|
||||
conditions: Condition[];
|
||||
onUpdate: (conditions: Condition[]) => void;
|
||||
disabled?: boolean;
|
||||
}
|
||||
|
||||
let { conditions, onUpdate, disabled = false }: Props = $props();
|
||||
|
||||
type ConditionType = Condition['type'];
|
||||
|
||||
const conditionTypes: { value: ConditionType; label: string; description: string }[] = [
|
||||
{ value: 'price_drop', label: 'Price Drop', description: 'Trigger when price falls by X%' },
|
||||
{ value: 'price_rise', label: 'Price Rise', description: 'Trigger when price rises by X%' },
|
||||
{ value: 'volume_spike', label: 'Volume Spike', description: 'Trigger when volume increases by X%' },
|
||||
{ value: 'price_level', label: 'Price Level', description: 'Trigger when price crosses a level' },
|
||||
];
|
||||
|
||||
const timeframes = ['1m', '5m', '15m', '1h', '4h', '1d'];
|
||||
|
||||
function addCondition() {
|
||||
const newCondition: Condition = {
|
||||
type: 'price_drop',
|
||||
token: '',
|
||||
threshold: 5,
|
||||
timeframe: '1h'
|
||||
};
|
||||
onUpdate([...conditions, newCondition]);
|
||||
}
|
||||
|
||||
function removeCondition(index: number) {
|
||||
onUpdate(conditions.filter((_, i) => i !== index));
|
||||
}
|
||||
|
||||
function updateCondition(index: number, updates: Partial<Condition>) {
|
||||
const updated = conditions.map((c, i) =>
|
||||
i === index ? { ...c, ...updates } : c
|
||||
);
|
||||
onUpdate(updated);
|
||||
}
|
||||
|
||||
function getConditionDescription(condition: Condition): string {
|
||||
switch (condition.type) {
|
||||
case 'price_drop':
|
||||
return `Price drops ${condition.threshold || 0}% within ${condition.timeframe || '1h'}`;
|
||||
case 'price_rise':
|
||||
return `Price rises ${condition.threshold || 0}% within ${condition.timeframe || '1h'}`;
|
||||
case 'volume_spike':
|
||||
return `Volume spikes ${condition.threshold || 0}% within ${condition.timeframe || '1h'}`;
|
||||
case 'price_level':
|
||||
return `Price crosses ${condition.direction || 'above'} $${condition.price || 0}`;
|
||||
default:
|
||||
return 'Unknown condition';
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="condition-builder">
|
||||
<div class="conditions-header">
|
||||
<h4>Conditions</h4>
|
||||
<button type="button" class="add-btn" onclick={addCondition} {disabled}>
|
||||
+ Add Condition
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{#if conditions.length === 0}
|
||||
<div class="empty-state">
|
||||
<p>No conditions set</p>
|
||||
<p class="hint">Add a condition to define when your strategy triggers</p>
|
||||
</div>
|
||||
{:else}
|
||||
<div class="conditions-list">
|
||||
{#each conditions as condition, index}
|
||||
<div class="condition-card">
|
||||
<div class="condition-header">
|
||||
<span class="condition-number">#{index + 1}</span>
|
||||
<button
|
||||
type="button"
|
||||
class="remove-btn"
|
||||
onclick={() => removeCondition(index)}
|
||||
disabled={disabled}
|
||||
aria-label="Remove condition"
|
||||
>
|
||||
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<line x1="18" y1="6" x2="6" y2="18"></line>
|
||||
<line x1="6" y1="6" x2="18" y2="18"></line>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="condition-fields">
|
||||
<div class="field">
|
||||
<label for="type-{index}">Type</label>
|
||||
<select
|
||||
id="type-{index}"
|
||||
value={condition.type}
|
||||
onchange={(e) => updateCondition(index, { type: (e.target as HTMLSelectElement).value as ConditionType })}
|
||||
disabled={disabled}
|
||||
>
|
||||
{#each conditionTypes as ct}
|
||||
<option value={ct.value}>{ct.label}</option>
|
||||
{/each}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<TokenPicker
|
||||
label="Token"
|
||||
selectedToken={condition.token}
|
||||
selectedChain={condition.chain || ''}
|
||||
onSelect={(token, chain) => updateCondition(index, { token, chain })}
|
||||
disabled={disabled}
|
||||
/>
|
||||
|
||||
{#if condition.type === 'price_level'}
|
||||
<div class="field">
|
||||
<label for="direction-{index}">Direction</label>
|
||||
<select
|
||||
id="direction-{index}"
|
||||
value={condition.direction || 'above'}
|
||||
onchange={(e) => updateCondition(index, { direction: (e.target as HTMLSelectElement).value as 'above' | 'below' })}
|
||||
disabled={disabled}
|
||||
>
|
||||
<option value="above">Above</option>
|
||||
<option value="below">Below</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="price-{index}">Price ($)</label>
|
||||
<input
|
||||
id="price-{index}"
|
||||
type="number"
|
||||
value={condition.price || ''}
|
||||
oninput={(e) => updateCondition(index, { price: parseFloat((e.target as HTMLInputElement).value) || undefined })}
|
||||
placeholder="0.000001"
|
||||
step="any"
|
||||
min="0"
|
||||
disabled={disabled}
|
||||
/>
|
||||
</div>
|
||||
{:else}
|
||||
<div class="field">
|
||||
<label for="threshold-{index}">Threshold (%)</label>
|
||||
<input
|
||||
id="threshold-{index}"
|
||||
type="number"
|
||||
value={condition.threshold || ''}
|
||||
oninput={(e) => updateCondition(index, { threshold: parseFloat((e.target as HTMLInputElement).value) || undefined })}
|
||||
placeholder="5"
|
||||
step="any"
|
||||
min="0"
|
||||
disabled={disabled}
|
||||
/>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="timeframe-{index}">Timeframe</label>
|
||||
<select
|
||||
id="timeframe-{index}"
|
||||
value={condition.timeframe || '1h'}
|
||||
onchange={(e) => updateCondition(index, { timeframe: (e.target as HTMLSelectElement).value })}
|
||||
disabled={disabled}
|
||||
>
|
||||
{#each timeframes as tf}
|
||||
<option value={tf}>{tf}</option>
|
||||
{/each}
|
||||
</select>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="condition-preview">
|
||||
<span class="preview-label">Summary:</span>
|
||||
{getConditionDescription(condition)}
|
||||
</div>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.condition-builder {
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.conditions-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
margin: 0;
|
||||
font-size: 0.9rem;
|
||||
color: #888;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.add-btn {
|
||||
padding: 0.5rem 1rem;
|
||||
background: rgba(102, 126, 234, 0.2);
|
||||
color: #667eea;
|
||||
border: 1px solid rgba(102, 126, 234, 0.4);
|
||||
border-radius: 6px;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.add-btn:hover:not(:disabled) {
|
||||
background: rgba(102, 126, 234, 0.3);
|
||||
}
|
||||
|
||||
.add-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 1.5rem;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.empty-state .hint {
|
||||
font-size: 0.85rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.conditions-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.condition-card {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
border: 1px solid rgba(255, 255, 255, 0.05);
|
||||
border-radius: 8px;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.condition-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.condition-number {
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
color: #667eea;
|
||||
}
|
||||
|
||||
.remove-btn {
|
||||
background: none;
|
||||
border: none;
|
||||
color: #888;
|
||||
cursor: pointer;
|
||||
padding: 0.25rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 4px;
|
||||
transition: background 0.2s, color 0.2s;
|
||||
}
|
||||
|
||||
.remove-btn:hover:not(:disabled) {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.remove-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.condition-fields {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.field {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.35rem;
|
||||
}
|
||||
|
||||
.field label {
|
||||
font-size: 0.8rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
input,
|
||||
select {
|
||||
padding: 0.5rem 0.75rem;
|
||||
border-radius: 6px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
select:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
input:disabled,
|
||||
select:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
input[type="number"] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.condition-preview {
|
||||
padding-top: 0.75rem;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
font-size: 0.85rem;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.preview-label {
|
||||
color: #666;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
</style>
|
||||
121
src/frontend/src/lib/components/ProUpgradeBanner.svelte
Normal file
121
src/frontend/src/lib/components/ProUpgradeBanner.svelte
Normal file
@@ -0,0 +1,121 @@
|
||||
<script lang="ts">
|
||||
interface Props {
|
||||
feature?: string;
|
||||
dismissible?: boolean;
|
||||
onDismiss?: () => void;
|
||||
}
|
||||
|
||||
let { feature, dismissible = true, onDismiss }: Props = $props();
|
||||
</script>
|
||||
|
||||
<div class="pro-upgrade-banner">
|
||||
<div class="banner-content">
|
||||
<div class="banner-icon">
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="banner-text">
|
||||
<strong>Upgrade to Pro</strong>
|
||||
{#if feature}
|
||||
<p>{feature}</p>
|
||||
{:else}
|
||||
<p>Unlock advanced features and unlimited bots</p>
|
||||
{/if}
|
||||
</div>
|
||||
<a href="/settings" class="upgrade-btn">Upgrade Now</a>
|
||||
</div>
|
||||
{#if dismissible && onDismiss}
|
||||
<button class="dismiss-btn" onclick={onDismiss} aria-label="Dismiss">
|
||||
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<line x1="18" y1="6" x2="6" y2="18"></line>
|
||||
<line x1="6" y1="6" x2="18" y2="18"></line>
|
||||
</svg>
|
||||
</button>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.pro-upgrade-banner {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
|
||||
border: 1px solid rgba(102, 126, 234, 0.3);
|
||||
border-radius: 12px;
|
||||
padding: 1rem 1.5rem;
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.banner-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.banner-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: rgba(102, 126, 234, 0.2);
|
||||
border-radius: 8px;
|
||||
color: #667eea;
|
||||
}
|
||||
|
||||
.banner-text {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.banner-text strong {
|
||||
display: block;
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.banner-text p {
|
||||
margin: 0;
|
||||
font-size: 0.85rem;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.upgrade-btn {
|
||||
padding: 0.5rem 1rem;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
font-size: 0.9rem;
|
||||
transition: transform 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
|
||||
.upgrade-btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
|
||||
}
|
||||
|
||||
.dismiss-btn {
|
||||
position: absolute;
|
||||
top: 0.5rem;
|
||||
right: 0.5rem;
|
||||
background: none;
|
||||
border: none;
|
||||
color: #888;
|
||||
cursor: pointer;
|
||||
padding: 0.25rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 4px;
|
||||
transition: background 0.2s, color 0.2s;
|
||||
}
|
||||
|
||||
.dismiss-btn:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: #fff;
|
||||
}
|
||||
</style>
|
||||
228
src/frontend/src/lib/components/SignalChart.svelte
Normal file
228
src/frontend/src/lib/components/SignalChart.svelte
Normal file
@@ -0,0 +1,228 @@
|
||||
<script lang="ts">
|
||||
import type { Signal } from '$lib/api';
|
||||
|
||||
interface Props {
|
||||
signals: Signal[];
|
||||
height?: number;
|
||||
}
|
||||
|
||||
let { signals, height = 200 }: Props = $props();
|
||||
|
||||
let width = $state(800);
|
||||
let containerEl: HTMLDivElement;
|
||||
|
||||
$effect(() => {
|
||||
if (containerEl) {
|
||||
width = containerEl.clientWidth;
|
||||
}
|
||||
});
|
||||
|
||||
function getSignalPosition(signal: Signal, index: number, total: number): { x: number; y: number } {
|
||||
const padding = 30;
|
||||
const chartWidth = width - padding * 2;
|
||||
const chartHeight = height - padding * 2;
|
||||
const x = padding + (index / Math.max(total - 1, 1)) * chartWidth;
|
||||
const priceRange = getPriceRange();
|
||||
const normalizedPrice = priceRange.min === priceRange.max ? 0.5 :
|
||||
(signal.price - priceRange.min) / (priceRange.max - priceRange.min);
|
||||
const y = padding + (1 - normalizedPrice) * chartHeight;
|
||||
return { x, y };
|
||||
}
|
||||
|
||||
function getPriceRange(): { min: number; max: number } {
|
||||
if (signals.length === 0) return { min: 0, max: 1 };
|
||||
const prices = signals.map(s => s.price);
|
||||
const min = Math.min(...prices);
|
||||
const max = Math.max(...prices);
|
||||
const padding = (max - min) * 0.1 || 1;
|
||||
return { min: min - padding, max: max + padding };
|
||||
}
|
||||
|
||||
function getSignalColor(signal: Signal): string {
|
||||
switch (signal.signal_type) {
|
||||
case 'buy': return '#22c55e';
|
||||
case 'sell': return '#ef4444';
|
||||
case 'hold': return '#fbbf24';
|
||||
default: return '#888';
|
||||
}
|
||||
}
|
||||
|
||||
function getYAxisLabels(): string[] {
|
||||
const range = getPriceRange();
|
||||
const step = (range.max - range.min) / 4;
|
||||
return [
|
||||
range.max.toFixed(6),
|
||||
(range.max - step).toFixed(6),
|
||||
(range.min + step).toFixed(6),
|
||||
range.min.toFixed(6)
|
||||
];
|
||||
}
|
||||
|
||||
function getXAxisLabels(): string[] {
|
||||
if (signals.length === 0) return [];
|
||||
const step = Math.max(1, Math.floor(signals.length / 5));
|
||||
const labels: string[] = [];
|
||||
for (let i = 0; i < signals.length; i += step) {
|
||||
labels.push(new Date(signals[i].created_at).toLocaleTimeString());
|
||||
}
|
||||
return labels;
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="signal-chart" bind:this={containerEl}>
|
||||
{#if signals.length === 0}
|
||||
<div class="empty-state">
|
||||
<p>No signals to display</p>
|
||||
</div>
|
||||
{:else}
|
||||
<svg {width} {height} viewBox="0 0 {width} {height}">
|
||||
<defs>
|
||||
<linearGradient id="chartGradient" x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="0%" stop-color="rgba(102, 126, 234, 0.3)" />
|
||||
<stop offset="100%" stop-color="rgba(102, 126, 234, 0)" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<g class="grid-lines">
|
||||
{#each [0, 1, 2, 3] as i}
|
||||
{@const y = 30 + (i / 3) * (height - 60)}
|
||||
<line
|
||||
x1="30" y1={y}
|
||||
x2={width - 30} y2={y}
|
||||
stroke="rgba(255,255,255,0.1)"
|
||||
stroke-dasharray="4,4"
|
||||
/>
|
||||
{/each}
|
||||
</g>
|
||||
|
||||
<g class="y-axis">
|
||||
{#each getYAxisLabels() as label, i}
|
||||
{@const y = 30 + (i / 3) * (height - 60)}
|
||||
<text x="25" y={y + 4} class="axis-label" text-anchor="end">${label}</text>
|
||||
{/each}
|
||||
</g>
|
||||
|
||||
<g class="x-axis">
|
||||
{#each getXAxisLabels() as label, i}
|
||||
{@const x = 30 + (i / (getXAxisLabels().length - 1 || 1)) * (width - 60)}
|
||||
<text x={x} y={height - 8} class="axis-label" text-anchor="middle">{label}</text>
|
||||
{/each}
|
||||
</g>
|
||||
|
||||
<path
|
||||
d={signals.map((s, i) => {
|
||||
const pos = getSignalPosition(s, i, signals.length);
|
||||
return `${i === 0 ? 'M' : 'L'} ${pos.x} ${pos.y}`;
|
||||
}).join(' ')}
|
||||
fill="none"
|
||||
stroke="#667eea"
|
||||
stroke-width="2"
|
||||
/>
|
||||
|
||||
{#each signals as signal, i}
|
||||
{@const pos = getSignalPosition(signal, i, signals.length)}
|
||||
{@const color = getSignalColor(signal)}
|
||||
<circle
|
||||
cx={pos.x}
|
||||
cy={pos.y}
|
||||
r="6"
|
||||
fill={color}
|
||||
stroke={color}
|
||||
stroke-width="2"
|
||||
class="signal-dot"
|
||||
>
|
||||
<title>{signal.signal_type.toUpperCase()} - ${signal.price.toFixed(6)} - {new Date(signal.created_at).toLocaleString()}</title>
|
||||
</circle>
|
||||
{/each}
|
||||
</svg>
|
||||
|
||||
<div class="legend">
|
||||
<div class="legend-item">
|
||||
<span class="legend-dot buy"></span>
|
||||
<span>Buy</span>
|
||||
</div>
|
||||
<div class="legend-item">
|
||||
<span class="legend-dot sell"></span>
|
||||
<span>Sell</span>
|
||||
</div>
|
||||
<div class="legend-item">
|
||||
<span class="legend-dot hold"></span>
|
||||
<span>Hold</span>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.signal-chart {
|
||||
width: 100%;
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 8px;
|
||||
padding: 1rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 200px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
svg {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.axis-label {
|
||||
font-size: 10px;
|
||||
fill: #666;
|
||||
}
|
||||
|
||||
.signal-dot {
|
||||
cursor: pointer;
|
||||
transition: r 0.2s;
|
||||
}
|
||||
|
||||
.signal-dot:hover {
|
||||
r: 8;
|
||||
}
|
||||
|
||||
.legend {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 1.5rem;
|
||||
margin-top: 0.75rem;
|
||||
padding-top: 0.75rem;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.legend-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-size: 0.85rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.legend-dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.legend-dot.buy {
|
||||
background: #22c55e;
|
||||
}
|
||||
|
||||
.legend-dot.sell {
|
||||
background: #ef4444;
|
||||
}
|
||||
|
||||
.legend-dot.hold {
|
||||
background: #fbbf24;
|
||||
}
|
||||
</style>
|
||||
227
src/frontend/src/lib/components/StrategyPreview.svelte
Normal file
227
src/frontend/src/lib/components/StrategyPreview.svelte
Normal file
@@ -0,0 +1,227 @@
|
||||
<script lang="ts">
|
||||
import type { StrategyConfig } from '$lib/api';
|
||||
|
||||
interface Props {
|
||||
config: StrategyConfig | null;
|
||||
editable?: boolean;
|
||||
onUpdate?: (config: StrategyConfig) => void;
|
||||
}
|
||||
|
||||
let { config, editable = false, onUpdate }: Props = $props();
|
||||
|
||||
function getConditionDescription(condition: StrategyConfig['conditions'][0]): string {
|
||||
switch (condition.type) {
|
||||
case 'price_drop':
|
||||
return `${condition.token} drops by ${condition.threshold}% within ${condition.timeframe}`;
|
||||
case 'price_rise':
|
||||
return `${condition.token} rises by ${condition.threshold}% within ${condition.timeframe}`;
|
||||
case 'volume_spike':
|
||||
return `${condition.token} volume spikes by ${condition.threshold}% within ${condition.timeframe}`;
|
||||
case 'price_level':
|
||||
return `${condition.token} crosses ${condition.direction} $${condition.price}`;
|
||||
default:
|
||||
return 'Unknown condition';
|
||||
}
|
||||
}
|
||||
|
||||
function getActionDescription(action: StrategyConfig['actions'][0]): string {
|
||||
switch (action.type) {
|
||||
case 'buy':
|
||||
return `Buy ${action.amount_percent}% of ${action.token || 'portfolio'}`;
|
||||
case 'sell':
|
||||
return `Sell ${action.amount_percent}% of ${action.token || 'portfolio'}`;
|
||||
case 'hold':
|
||||
return 'Hold';
|
||||
default:
|
||||
return 'Unknown action';
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="strategy-preview">
|
||||
{#if !config || (config.conditions.length === 0 && config.actions.length === 0)}
|
||||
<div class="empty-state">
|
||||
<p>No strategy configured yet.</p>
|
||||
<p class="hint">Describe your trading strategy in the chat to create one.</p>
|
||||
</div>
|
||||
{:else}
|
||||
<div class="strategy-section">
|
||||
<h4>Conditions</h4>
|
||||
{#if config.conditions.length === 0}
|
||||
<p class="empty">No conditions set</p>
|
||||
{:else}
|
||||
<ul class="items-list">
|
||||
{#each config.conditions as condition, i}
|
||||
<li>
|
||||
<span class="condition-badge">{condition.type.replace('_', ' ')}</span>
|
||||
{getConditionDescription(condition)}
|
||||
</li>
|
||||
{/each}
|
||||
</ul>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="strategy-section">
|
||||
<h4>Actions</h4>
|
||||
{#if config.actions.length === 0}
|
||||
<p class="empty">No actions set</p>
|
||||
{:else}
|
||||
<ul class="items-list">
|
||||
{#each config.actions as action}
|
||||
<li>
|
||||
<span class="action-badge action-{action.type}">{action.type}</span>
|
||||
{getActionDescription(action)}
|
||||
</li>
|
||||
{/each}
|
||||
</ul>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{#if config.risk_management}
|
||||
<div class="strategy-section">
|
||||
<h4>Risk Management</h4>
|
||||
<div class="risk-items">
|
||||
{#if config.risk_management.stop_loss_percent}
|
||||
<div class="risk-item">
|
||||
<span class="risk-label">Stop Loss</span>
|
||||
<span class="risk-value negative">{config.risk_management.stop_loss_percent}%</span>
|
||||
</div>
|
||||
{/if}
|
||||
{#if config.risk_management.take_profit_percent}
|
||||
<div class="risk-item">
|
||||
<span class="risk-label">Take Profit</span>
|
||||
<span class="risk-value positive">{config.risk_management.take_profit_percent}%</span>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.strategy-preview {
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 8px;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 1rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.empty-state .hint {
|
||||
font-size: 0.85rem;
|
||||
color: #666;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.strategy-section {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.strategy-section:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
color: #888;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin: 0 0 0.75rem;
|
||||
}
|
||||
|
||||
.items-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.items-list li {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
padding: 0.5rem 0;
|
||||
font-size: 0.9rem;
|
||||
color: #ccc;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.items-list li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.condition-badge,
|
||||
.action-badge {
|
||||
padding: 0.2rem 0.5rem;
|
||||
border-radius: 4px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.condition-badge {
|
||||
background: rgba(102, 126, 234, 0.2);
|
||||
color: #667eea;
|
||||
}
|
||||
|
||||
.action-badge {
|
||||
min-width: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.action-buy {
|
||||
background: rgba(34, 197, 94, 0.2);
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.action-sell {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.action-hold {
|
||||
background: rgba(251, 191, 36, 0.2);
|
||||
color: #fbbf24;
|
||||
}
|
||||
|
||||
.empty {
|
||||
color: #666;
|
||||
font-size: 0.9rem;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.risk-items {
|
||||
display: flex;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.risk-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.risk-label {
|
||||
font-size: 0.75rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.risk-value {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.positive {
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.negative {
|
||||
color: #ef4444;
|
||||
}
|
||||
</style>
|
||||
256
src/frontend/src/lib/components/TokenPicker.svelte
Normal file
256
src/frontend/src/lib/components/TokenPicker.svelte
Normal file
@@ -0,0 +1,256 @@
|
||||
<script lang="ts">
|
||||
import { api } from '$lib/api';
|
||||
|
||||
interface Token {
|
||||
symbol: string;
|
||||
chain: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
interface Props {
|
||||
selectedToken?: string;
|
||||
selectedChain?: string;
|
||||
onSelect: (token: string, chain: string) => void;
|
||||
disabled?: boolean;
|
||||
label?: string;
|
||||
}
|
||||
|
||||
let { selectedToken = '', selectedChain = '', onSelect, disabled = false, label = 'Select Token' }: Props = $props();
|
||||
|
||||
let searchQuery = $state('');
|
||||
let isOpen = $state(false);
|
||||
let tokens = $state<Token[]>([]);
|
||||
let isLoading = $state(false);
|
||||
let inputEl: HTMLInputElement;
|
||||
let containerEl: HTMLDivElement;
|
||||
|
||||
const commonTokens: Token[] = [
|
||||
{ symbol: 'BTC', chain: 'btc', name: 'Bitcoin' },
|
||||
{ symbol: 'ETH', chain: 'eth', name: 'Ethereum' },
|
||||
{ symbol: 'BNB', chain: 'bsc', name: 'BNB' },
|
||||
{ symbol: 'PEPE', chain: 'bsc', name: 'Pepe' },
|
||||
{ symbol: 'SHIB', chain: 'eth', name: 'Shiba Inu' },
|
||||
{ symbol: 'DOGE', chain: 'doge', name: 'Dogecoin' },
|
||||
{ symbol: 'SOL', chain: 'sol', name: 'Solana' },
|
||||
{ symbol: 'XRP', chain: 'xrp', name: 'Ripple' },
|
||||
];
|
||||
|
||||
$effect(() => {
|
||||
function handleClickOutside(event: MouseEvent) {
|
||||
if (containerEl && !containerEl.contains(event.target as Node)) {
|
||||
isOpen = false;
|
||||
}
|
||||
}
|
||||
document.addEventListener('click', handleClickOutside);
|
||||
return () => document.removeEventListener('click', handleClickOutside);
|
||||
});
|
||||
|
||||
async function loadTokens() {
|
||||
isLoading = true;
|
||||
try {
|
||||
tokens = await api.config.getTokens();
|
||||
} catch (e) {
|
||||
tokens = commonTokens;
|
||||
} finally {
|
||||
isLoading = false;
|
||||
}
|
||||
}
|
||||
|
||||
function getFilteredTokens(): Token[] {
|
||||
const allTokens = tokens.length > 0 ? tokens : commonTokens;
|
||||
if (!searchQuery) return allTokens.slice(0, 10);
|
||||
const query = searchQuery.toLowerCase();
|
||||
return allTokens.filter(
|
||||
t => t.symbol.toLowerCase().includes(query) ||
|
||||
t.name.toLowerCase().includes(query) ||
|
||||
t.chain.toLowerCase().includes(query)
|
||||
).slice(0, 10);
|
||||
}
|
||||
|
||||
function handleSelect(token: Token) {
|
||||
onSelect(token.symbol, token.chain);
|
||||
searchQuery = '';
|
||||
isOpen = false;
|
||||
}
|
||||
|
||||
function handleInputFocus() {
|
||||
isOpen = true;
|
||||
if (tokens.length === 0 && !isLoading) {
|
||||
loadTokens();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="token-picker" bind:this={containerEl}>
|
||||
{#if label}
|
||||
<label>{label}</label>
|
||||
{/if}
|
||||
|
||||
<div class="input-wrapper">
|
||||
<input
|
||||
type="text"
|
||||
bind:this={inputEl}
|
||||
bind:value={searchQuery}
|
||||
onfocus={handleInputFocus}
|
||||
placeholder={selectedToken ? `${selectedToken}${selectedChain ? ` (${selectedChain})` : ''}` : 'Search tokens...'}
|
||||
{disabled}
|
||||
class:has-value={selectedToken}
|
||||
/>
|
||||
{#if selectedToken}
|
||||
<button class="clear-btn" onclick={() => onSelect('', '')} disabled={disabled}>
|
||||
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<line x1="18" y1="6" x2="6" y2="18"></line>
|
||||
<line x1="6" y1="6" x2="18" y2="18"></line>
|
||||
</svg>
|
||||
</button>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{#if isOpen}
|
||||
<div class="dropdown">
|
||||
{#if isLoading}
|
||||
<div class="loading">Loading tokens...</div>
|
||||
{:else if getFilteredTokens().length === 0}
|
||||
<div class="no-results">No tokens found</div>
|
||||
{:else}
|
||||
{#each getFilteredTokens() as token}
|
||||
<button
|
||||
class="token-option"
|
||||
class:selected={token.symbol === selectedToken && token.chain === selectedChain}
|
||||
onclick={() => handleSelect(token)}
|
||||
>
|
||||
<span class="token-symbol">{token.symbol}</span>
|
||||
<span class="token-chain">{token.chain.toUpperCase()}</span>
|
||||
<span class="token-name">{token.name}</span>
|
||||
</button>
|
||||
{/each}
|
||||
{/if}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.token-picker {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 0.9rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.input-wrapper {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
padding: 0.75rem 2.5rem 0.75rem 1rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
input.has-value {
|
||||
border-color: rgba(102, 126, 234, 0.5);
|
||||
}
|
||||
|
||||
input:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.clear-btn {
|
||||
position: absolute;
|
||||
right: 0.75rem;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: none;
|
||||
border: none;
|
||||
color: #888;
|
||||
cursor: pointer;
|
||||
padding: 0.25rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.clear-btn:hover:not(:disabled) {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin-top: 0.5rem;
|
||||
background: #1a1a1a;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 8px;
|
||||
max-height: 250px;
|
||||
overflow-y: auto;
|
||||
z-index: 50;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.loading,
|
||||
.no-results {
|
||||
padding: 1rem;
|
||||
text-align: center;
|
||||
color: #888;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.token-option {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
width: 100%;
|
||||
padding: 0.75rem 1rem;
|
||||
background: none;
|
||||
border: none;
|
||||
color: #fff;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.token-option:hover {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.token-option.selected {
|
||||
background: rgba(102, 126, 234, 0.2);
|
||||
}
|
||||
|
||||
.token-symbol {
|
||||
font-weight: 600;
|
||||
min-width: 60px;
|
||||
}
|
||||
|
||||
.token-chain {
|
||||
font-size: 0.75rem;
|
||||
padding: 0.15rem 0.4rem;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 4px;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.token-name {
|
||||
flex: 1;
|
||||
color: #888;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
</style>
|
||||
9
src/frontend/src/lib/components/index.ts
Normal file
9
src/frontend/src/lib/components/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export { default as ChatInterface } from './ChatInterface.svelte';
|
||||
export { default as BotCard } from './BotCard.svelte';
|
||||
export { default as BotSelector } from './BotSelector.svelte';
|
||||
export { default as StrategyPreview } from './StrategyPreview.svelte';
|
||||
export { default as SignalChart } from './SignalChart.svelte';
|
||||
export { default as BacktestChart } from './BacktestChart.svelte';
|
||||
export { default as ProUpgradeBanner } from './ProUpgradeBanner.svelte';
|
||||
export { default as TokenPicker } from './TokenPicker.svelte';
|
||||
export { default as ConditionBuilder } from './ConditionBuilder.svelte';
|
||||
1
src/frontend/src/lib/index.ts
Normal file
1
src/frontend/src/lib/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
// place files you want to import through the `$lib` alias in this folder.
|
||||
50
src/frontend/src/lib/stores/authStore.ts
Normal file
50
src/frontend/src/lib/stores/authStore.ts
Normal file
@@ -0,0 +1,50 @@
|
||||
import { writable, get } from 'svelte/store';
|
||||
import { api } from '$lib/api';
|
||||
import { setUser, clearUser, clearBots } from './index';
|
||||
import { clearSimulationState } from './simulationStore';
|
||||
import { clearBacktestState } from './backtestStore';
|
||||
|
||||
export const isAuthenticated = writable(false);
|
||||
export const isLoading = writable(true);
|
||||
|
||||
export async function initAuth() {
|
||||
isLoading.set(true);
|
||||
const token = localStorage.getItem('token');
|
||||
if (token) {
|
||||
try {
|
||||
const user = await api.auth.me();
|
||||
setUser(user);
|
||||
isAuthenticated.set(true);
|
||||
} catch {
|
||||
localStorage.removeItem('token');
|
||||
isAuthenticated.set(false);
|
||||
}
|
||||
}
|
||||
isLoading.set(false);
|
||||
}
|
||||
|
||||
export async function login(email: string, password: string) {
|
||||
const response = await api.auth.login(email, password);
|
||||
localStorage.setItem('token', response.access_token);
|
||||
const user = await api.auth.me();
|
||||
setUser(user);
|
||||
isAuthenticated.set(true);
|
||||
}
|
||||
|
||||
export async function register(email: string, password: string) {
|
||||
const response = await api.auth.register(email, password);
|
||||
localStorage.setItem('token', response.access_token);
|
||||
const user = await api.auth.me();
|
||||
setUser(user);
|
||||
isAuthenticated.set(true);
|
||||
}
|
||||
|
||||
export function logout() {
|
||||
api.auth.logout().catch(() => {});
|
||||
localStorage.removeItem('token');
|
||||
clearUser();
|
||||
clearBots();
|
||||
clearBacktestState();
|
||||
clearSimulationState();
|
||||
isAuthenticated.set(false);
|
||||
}
|
||||
45
src/frontend/src/lib/stores/backtestStore.ts
Normal file
45
src/frontend/src/lib/stores/backtestStore.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
import { writable } from 'svelte/store';
|
||||
import type { Backtest, BacktestResult } from '$lib/api';
|
||||
|
||||
export interface BacktestState {
|
||||
currentBacktest: Backtest | null;
|
||||
backtestHistory: Backtest[];
|
||||
isLoading: boolean;
|
||||
error: string | null;
|
||||
}
|
||||
|
||||
const initialState: BacktestState = {
|
||||
currentBacktest: null,
|
||||
backtestHistory: [],
|
||||
isLoading: false,
|
||||
error: null
|
||||
};
|
||||
|
||||
export const backtestStore = writable<BacktestState>(initialState);
|
||||
|
||||
export function setCurrentBacktest(backtest: Backtest | null) {
|
||||
backtestStore.update(state => ({ ...state, currentBacktest: backtest }));
|
||||
}
|
||||
|
||||
export function addBacktestToHistory(backtest: Backtest) {
|
||||
backtestStore.update(state => ({
|
||||
...state,
|
||||
backtestHistory: [backtest, ...state.backtestHistory]
|
||||
}));
|
||||
}
|
||||
|
||||
export function setBacktestHistory(backtests: Backtest[]) {
|
||||
backtestStore.update(state => ({ ...state, backtestHistory: backtests }));
|
||||
}
|
||||
|
||||
export function setBacktestLoading(loading: boolean) {
|
||||
backtestStore.update(state => ({ ...state, isLoading: loading }));
|
||||
}
|
||||
|
||||
export function setBacktestError(error: string | null) {
|
||||
backtestStore.update(state => ({ ...state, error }));
|
||||
}
|
||||
|
||||
export function clearBacktestState() {
|
||||
backtestStore.set(initialState);
|
||||
}
|
||||
24
src/frontend/src/lib/stores/botsStore.ts
Normal file
24
src/frontend/src/lib/stores/botsStore.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import { writable } from 'svelte/store';
|
||||
import type { Bot } from '$lib/api';
|
||||
|
||||
export const botsStore = writable<Bot[]>([]);
|
||||
|
||||
export function setBots(bots: Bot[]) {
|
||||
botsStore.set(bots);
|
||||
}
|
||||
|
||||
export function addBot(bot: Bot) {
|
||||
botsStore.update(bots => [...bots, bot]);
|
||||
}
|
||||
|
||||
export function updateBot(bot: Bot) {
|
||||
botsStore.update(bots => bots.map(b => b.id === bot.id ? bot : b));
|
||||
}
|
||||
|
||||
export function removeBot(botId: string) {
|
||||
botsStore.update(bots => bots.filter(b => b.id !== botId));
|
||||
}
|
||||
|
||||
export function clearBots() {
|
||||
botsStore.set([]);
|
||||
}
|
||||
33
src/frontend/src/lib/stores/chatStore.ts
Normal file
33
src/frontend/src/lib/stores/chatStore.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
import { writable } from 'svelte/store';
|
||||
import type { BotConversation } from '$lib/api';
|
||||
|
||||
export interface ChatMessage {
|
||||
id: string;
|
||||
role: 'user' | 'assistant' | 'system';
|
||||
content: string;
|
||||
timestamp: Date;
|
||||
}
|
||||
|
||||
export const chatStore = writable<ChatMessage[]>([]);
|
||||
|
||||
export function addMessage(message: Omit<ChatMessage, 'id' | 'timestamp'>) {
|
||||
const newMessage: ChatMessage = {
|
||||
...message,
|
||||
id: crypto.randomUUID(),
|
||||
timestamp: new Date()
|
||||
};
|
||||
chatStore.update(messages => [...messages, newMessage]);
|
||||
}
|
||||
|
||||
export function setMessages(messages: BotConversation[]) {
|
||||
chatStore.set(messages.map(m => ({
|
||||
id: m.id,
|
||||
role: m.role,
|
||||
content: m.content,
|
||||
timestamp: new Date(m.created_at)
|
||||
})));
|
||||
}
|
||||
|
||||
export function clearChat() {
|
||||
chatStore.set([]);
|
||||
}
|
||||
12
src/frontend/src/lib/stores/currentBotStore.ts
Normal file
12
src/frontend/src/lib/stores/currentBotStore.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { writable } from 'svelte/store';
|
||||
import type { Bot } from '$lib/api';
|
||||
|
||||
export const currentBotStore = writable<Bot | null>(null);
|
||||
|
||||
export function setCurrentBot(bot: Bot | null) {
|
||||
currentBotStore.set(bot);
|
||||
}
|
||||
|
||||
export function clearCurrentBot() {
|
||||
currentBotStore.set(null);
|
||||
}
|
||||
30
src/frontend/src/lib/stores/index.ts
Normal file
30
src/frontend/src/lib/stores/index.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
export { userStore, setUser, clearUser } from './userStore';
|
||||
export { botsStore, setBots, addBot, updateBot, removeBot, clearBots } from './botsStore';
|
||||
export { currentBotStore, setCurrentBot, clearCurrentBot } from './currentBotStore';
|
||||
export { chatStore, addMessage, setMessages, clearChat } from './chatStore';
|
||||
export {
|
||||
backtestStore,
|
||||
setCurrentBacktest,
|
||||
addBacktestToHistory,
|
||||
setBacktestHistory,
|
||||
setBacktestLoading,
|
||||
setBacktestError,
|
||||
clearBacktestState
|
||||
} from './backtestStore';
|
||||
export {
|
||||
simulationStore,
|
||||
setCurrentSimulation,
|
||||
addSignals,
|
||||
clearSignals,
|
||||
setSimulationLoading,
|
||||
setSimulationError,
|
||||
clearSimulationState
|
||||
} from './simulationStore';
|
||||
export {
|
||||
isAuthenticated,
|
||||
isLoading,
|
||||
initAuth,
|
||||
login,
|
||||
register,
|
||||
logout
|
||||
} from './authStore';
|
||||
45
src/frontend/src/lib/stores/simulationStore.ts
Normal file
45
src/frontend/src/lib/stores/simulationStore.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
import { writable } from 'svelte/store';
|
||||
import type { Simulation, Signal } from '$lib/api';
|
||||
|
||||
export interface SimulationState {
|
||||
currentSimulation: Simulation | null;
|
||||
signals: Signal[];
|
||||
isLoading: boolean;
|
||||
error: string | null;
|
||||
}
|
||||
|
||||
const initialState: SimulationState = {
|
||||
currentSimulation: null,
|
||||
signals: [],
|
||||
isLoading: false,
|
||||
error: null
|
||||
};
|
||||
|
||||
export const simulationStore = writable<SimulationState>(initialState);
|
||||
|
||||
export function setCurrentSimulation(simulation: Simulation | null) {
|
||||
simulationStore.update(state => ({ ...state, currentSimulation: simulation }));
|
||||
}
|
||||
|
||||
export function addSignals(newSignals: Signal[]) {
|
||||
simulationStore.update(state => ({
|
||||
...state,
|
||||
signals: [...state.signals, ...newSignals]
|
||||
}));
|
||||
}
|
||||
|
||||
export function clearSignals() {
|
||||
simulationStore.update(state => ({ ...state, signals: [] }));
|
||||
}
|
||||
|
||||
export function setSimulationLoading(loading: boolean) {
|
||||
simulationStore.update(state => ({ ...state, isLoading: loading }));
|
||||
}
|
||||
|
||||
export function setSimulationError(error: string | null) {
|
||||
simulationStore.update(state => ({ ...state, error }));
|
||||
}
|
||||
|
||||
export function clearSimulationState() {
|
||||
simulationStore.set(initialState);
|
||||
}
|
||||
12
src/frontend/src/lib/stores/userStore.ts
Normal file
12
src/frontend/src/lib/stores/userStore.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { writable } from 'svelte/store';
|
||||
import type { User } from '$lib/api';
|
||||
|
||||
export const userStore = writable<User | null>(null);
|
||||
|
||||
export function setUser(user: User | null) {
|
||||
userStore.set(user);
|
||||
}
|
||||
|
||||
export function clearUser() {
|
||||
userStore.set(null);
|
||||
}
|
||||
54
src/frontend/src/routes/+layout.svelte
Normal file
54
src/frontend/src/routes/+layout.svelte
Normal file
@@ -0,0 +1,54 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from 'svelte';
|
||||
import { initAuth, isLoading } from '$lib/stores';
|
||||
import favicon from '$lib/assets/favicon.svg';
|
||||
|
||||
let { children } = $props();
|
||||
|
||||
onMount(() => {
|
||||
initAuth();
|
||||
});
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<link rel="icon" href={favicon} />
|
||||
</svelte:head>
|
||||
|
||||
{#if $isLoading}
|
||||
<div class="loading">
|
||||
<div class="spinner"></div>
|
||||
</div>
|
||||
{:else}
|
||||
{@render children()}
|
||||
{/if}
|
||||
|
||||
<style>
|
||||
:global(body) {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0f0f0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.loading {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border: 3px solid rgba(255, 255, 255, 0.1);
|
||||
border-top-color: #667eea;
|
||||
border-radius: 50%;
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
135
src/frontend/src/routes/+page.svelte
Normal file
135
src/frontend/src/routes/+page.svelte
Normal file
@@ -0,0 +1,135 @@
|
||||
<script lang="ts">
|
||||
import { isAuthenticated } from '$lib/stores';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Randebu - AI Trading Bot Platform</title>
|
||||
</svelte:head>
|
||||
|
||||
{#if $isAuthenticated}
|
||||
<script>
|
||||
window.location.href = '/dashboard';
|
||||
</script>
|
||||
{:else}
|
||||
<main>
|
||||
<div class="hero">
|
||||
<h1>Randebu</h1>
|
||||
<p class="tagline">Create trading bots through conversation with AI</p>
|
||||
<div class="cta">
|
||||
<a href="/register" class="btn btn-primary">Get Started</a>
|
||||
<a href="/login" class="btn btn-secondary">Login</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="features">
|
||||
<h2>How It Works</h2>
|
||||
<div class="feature-grid">
|
||||
<div class="feature">
|
||||
<h3>1. Describe Your Strategy</h3>
|
||||
<p>Tell our AI what kind of trading you want to do in plain English</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h3>2. Backtest & Validate</h3>
|
||||
<p>Test your strategy against historical data before risking real funds</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h3>3. Simulate & Monitor</h3>
|
||||
<p>Run real-time simulations and watch for trading signals</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
{/if}
|
||||
|
||||
<style>
|
||||
:global(body) {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0f0f0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.hero {
|
||||
text-align: center;
|
||||
max-width: 600px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3.5rem;
|
||||
margin: 0;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 1.25rem;
|
||||
color: #aaa;
|
||||
margin: 1rem 0 2rem;
|
||||
}
|
||||
|
||||
.cta {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
transition: transform 0.2s, opacity 0.2s;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: white;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.features {
|
||||
margin-top: 4rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.features h2 {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.feature-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 2rem;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.feature h3 {
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.feature p {
|
||||
color: #888;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
</style>
|
||||
189
src/frontend/src/routes/bot/[id]/+page.svelte
Normal file
189
src/frontend/src/routes/bot/[id]/+page.svelte
Normal file
@@ -0,0 +1,189 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from 'svelte';
|
||||
import { page } from '$app/stores';
|
||||
import { goto } from '$app/navigation';
|
||||
import { isAuthenticated, isLoading, chatStore, addMessage, setMessages, clearChat, currentBotStore, setCurrentBot } from '$lib/stores';
|
||||
import { api } from '$lib/api';
|
||||
import { ChatInterface, StrategyPreview, ProUpgradeBanner } from '$lib/components';
|
||||
|
||||
let botId = $derived($page.params.id);
|
||||
let isSending = $state(false);
|
||||
let showStrategy = $state(false);
|
||||
|
||||
onMount(async () => {
|
||||
if (!$isAuthenticated && !$isLoading) {
|
||||
goto('/login');
|
||||
return;
|
||||
}
|
||||
if ($isAuthenticated && botId) {
|
||||
await loadBot();
|
||||
await loadChatHistory();
|
||||
}
|
||||
});
|
||||
|
||||
async function loadBot() {
|
||||
try {
|
||||
const bot = await api.bots.get(botId);
|
||||
setCurrentBot(bot);
|
||||
} catch (e) {
|
||||
goto('/dashboard');
|
||||
}
|
||||
}
|
||||
|
||||
async function loadChatHistory() {
|
||||
try {
|
||||
const history = await api.bots.getHistory(botId);
|
||||
setMessages(history);
|
||||
} catch (e) {
|
||||
console.error('Failed to load chat history:', e);
|
||||
}
|
||||
}
|
||||
|
||||
async function handleSendMessage(message: string) {
|
||||
if (isSending) return;
|
||||
|
||||
isSending = true;
|
||||
|
||||
try {
|
||||
const response = await api.bots.chat(botId, message);
|
||||
addMessage({ role: 'assistant', content: response.response });
|
||||
|
||||
if (response.strategy_config) {
|
||||
const bot = await api.bots.get(botId);
|
||||
setCurrentBot(bot);
|
||||
}
|
||||
} catch (e) {
|
||||
addMessage({ role: 'assistant', content: 'Sorry, I encountered an error. Please try again.' });
|
||||
} finally {
|
||||
isSending = false;
|
||||
}
|
||||
}
|
||||
|
||||
function toggleStrategy() {
|
||||
showStrategy = !showStrategy;
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>{$currentBotStore?.name || 'Bot'} - Randebu</title>
|
||||
</svelte:head>
|
||||
|
||||
<main>
|
||||
<header>
|
||||
<div class="header-left">
|
||||
<a href="/dashboard" class="back-link">← Dashboard</a>
|
||||
<h1>{$currentBotStore?.name || 'Loading...'}</h1>
|
||||
</div>
|
||||
<div class="header-actions">
|
||||
{#if $currentBotStore?.strategy_config}
|
||||
<button class="btn btn-secondary" onclick={toggleStrategy}>
|
||||
{showStrategy ? 'Hide' : 'Show'} Strategy
|
||||
</button>
|
||||
{/if}
|
||||
<a href="/bot/{botId}/backtest" class="btn btn-secondary">Backtest</a>
|
||||
<a href="/bot/{botId}/simulate" class="btn btn-secondary">Simulate</a>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{#if showStrategy && $currentBotStore?.strategy_config}
|
||||
<div class="strategy-panel">
|
||||
<StrategyPreview config={$currentBotStore.strategy_config} />
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="chat-wrapper">
|
||||
<ChatInterface
|
||||
bot={$currentBotStore}
|
||||
messages={$chatStore}
|
||||
{isSending}
|
||||
onSendMessage={handleSendMessage}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<ProUpgradeBanner feature="Auto-execute trades with your bot" />
|
||||
</main>
|
||||
|
||||
<style>
|
||||
:global(body) {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0f0f0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
main {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.header-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.back-link {
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.back-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.header-actions {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
font-size: 0.9rem;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: white;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.strategy-panel {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.chat-wrapper {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
</style>
|
||||
442
src/frontend/src/routes/bot/[id]/backtest/+page.svelte
Normal file
442
src/frontend/src/routes/bot/[id]/backtest/+page.svelte
Normal file
@@ -0,0 +1,442 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from 'svelte';
|
||||
import { page } from '$app/stores';
|
||||
import { goto } from '$app/navigation';
|
||||
import { isAuthenticated, isLoading, currentBotStore, setCurrentBot, backtestStore, setCurrentBacktest, addBacktestToHistory, setBacktestLoading, setBacktestError } from '$lib/stores';
|
||||
import { api } from '$lib/api';
|
||||
import { BacktestChart } from '$lib/components';
|
||||
import type { Backtest } from '$lib/api';
|
||||
|
||||
let botId = $derived($page.params.id);
|
||||
let token = $state('PEPE');
|
||||
let timeframe = $state('1h');
|
||||
let startDate = $state('');
|
||||
let endDate = $state('');
|
||||
let isRunning = $state(false);
|
||||
let selectedBacktest = $state<Backtest | null>(null);
|
||||
|
||||
onMount(async () => {
|
||||
if (!$isAuthenticated && !$isLoading) {
|
||||
goto('/login');
|
||||
return;
|
||||
}
|
||||
if ($isAuthenticated && botId) {
|
||||
await loadBot();
|
||||
await loadBacktests();
|
||||
}
|
||||
});
|
||||
|
||||
async function loadBot() {
|
||||
try {
|
||||
const bot = await api.bots.get(botId);
|
||||
setCurrentBot(bot);
|
||||
} catch (e) {
|
||||
goto('/dashboard');
|
||||
}
|
||||
}
|
||||
|
||||
async function loadBacktests() {
|
||||
try {
|
||||
const backtests = await api.backtest.list(botId);
|
||||
setBacktestHistory(backtests);
|
||||
} catch (e) {
|
||||
console.error('Failed to load backtests:', e);
|
||||
}
|
||||
}
|
||||
|
||||
async function startBacktest() {
|
||||
if (!startDate || !endDate) return;
|
||||
setBacktestError(null);
|
||||
setBacktestLoading(true);
|
||||
isRunning = true;
|
||||
|
||||
try {
|
||||
const backtest = await api.backtest.start(botId, {
|
||||
token,
|
||||
timeframe,
|
||||
start_date: startDate,
|
||||
end_date: endDate
|
||||
});
|
||||
setCurrentBacktest(backtest);
|
||||
addBacktestToHistory(backtest);
|
||||
} catch (e) {
|
||||
setBacktestError(e instanceof Error ? e.message : 'Failed to start backtest');
|
||||
} finally {
|
||||
setBacktestLoading(false);
|
||||
isRunning = false;
|
||||
}
|
||||
}
|
||||
|
||||
async function stopBacktest(runId: string) {
|
||||
try {
|
||||
await api.backtest.stop(botId, runId);
|
||||
await loadBacktests();
|
||||
} catch (e) {
|
||||
console.error('Failed to stop backtest:', e);
|
||||
}
|
||||
}
|
||||
|
||||
function setBacktestHistory(backtests: any[]) {
|
||||
backtestStore.update(state => ({ ...state, backtestHistory: backtests }));
|
||||
}
|
||||
|
||||
function selectBacktest(backtest: Backtest) {
|
||||
if (backtest.status === 'completed' && backtest.result) {
|
||||
selectedBacktest = backtest;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Backtest - {$currentBotStore?.name || 'Bot'} - Randebu</title>
|
||||
</svelte:head>
|
||||
|
||||
<main>
|
||||
<header>
|
||||
<div class="header-left">
|
||||
<a href="/bot/{botId}" class="back-link">← Back to Chat</a>
|
||||
<h1>Backtest</h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="content">
|
||||
<section class="config-section">
|
||||
<h2>Configure Backtest</h2>
|
||||
|
||||
{#if $backtestStore.error}
|
||||
<div class="error">{$backtestStore.error}</div>
|
||||
{/if}
|
||||
|
||||
<form onsubmit={(e) => { e.preventDefault(); startBacktest(); }}>
|
||||
<div class="form-row">
|
||||
<div class="field">
|
||||
<label for="token">Token</label>
|
||||
<input type="text" id="token" bind:value={token} required />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="timeframe">Timeframe</label>
|
||||
<select id="timeframe" bind:value={timeframe}>
|
||||
<option value="1m">1 minute</option>
|
||||
<option value="5m">5 minutes</option>
|
||||
<option value="15m">15 minutes</option>
|
||||
<option value="1h">1 hour</option>
|
||||
<option value="4h">4 hours</option>
|
||||
<option value="1d">1 day</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="field">
|
||||
<label for="startDate">Start Date</label>
|
||||
<input type="date" id="startDate" bind:value={startDate} required />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="endDate">End Date</label>
|
||||
<input type="date" id="endDate" bind:value={endDate} required />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button type="submit" disabled={isRunning || $backtestStore.isLoading}>
|
||||
{isRunning ? 'Running...' : 'Start Backtest'}
|
||||
</button>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
<section class="results-section">
|
||||
<h2>Backtest History</h2>
|
||||
|
||||
{#if $backtestStore.backtestHistory.length === 0}
|
||||
<p class="empty-state">No backtests yet. Run your first backtest above.</p>
|
||||
{:else}
|
||||
<div class="backtest-list">
|
||||
{#each $backtestStore.backtestHistory as backtest}
|
||||
<div class="backtest-card">
|
||||
<div class="backtest-header">
|
||||
<span class="backtest-status status-{backtest.status}">{backtest.status}</span>
|
||||
<span class="backtest-date">{new Date(backtest.started_at).toLocaleDateString()}</span>
|
||||
</div>
|
||||
{#if backtest.result}
|
||||
<div class="backtest-results">
|
||||
<div class="result-item">
|
||||
<span class="result-label">Total Return</span>
|
||||
<span class="result-value" class:positive={backtest.result.total_return > 0} class:negative={backtest.result.total_return < 0}>
|
||||
{backtest.result.total_return.toFixed(2)}%
|
||||
</span>
|
||||
</div>
|
||||
<div class="result-item">
|
||||
<span class="result-label">Win Rate</span>
|
||||
<span class="result-value">{backtest.result.win_rate.toFixed(1)}%</span>
|
||||
</div>
|
||||
<div class="result-item">
|
||||
<span class="result-label">Total Trades</span>
|
||||
<span class="result-value">{backtest.result.total_trades}</span>
|
||||
</div>
|
||||
<div class="result-item">
|
||||
<span class="result-label">Max Drawdown</span>
|
||||
<span class="result-value negative">{backtest.result.max_drawdown.toFixed(2)}%</span>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{#if backtest.status === 'running'}
|
||||
<button onclick={() => stopBacktest(backtest.id)} class="btn btn-danger">Stop</button>
|
||||
{/if}
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
{/if}
|
||||
</section>
|
||||
|
||||
{#if selectedBacktest}
|
||||
<section class="chart-section">
|
||||
<div class="chart-header">
|
||||
<h2>Portfolio Performance</h2>
|
||||
<button class="close-btn" onclick={() => selectedBacktest = null}>×</button>
|
||||
</div>
|
||||
<BacktestChart results={selectedBacktest.result} />
|
||||
</section>
|
||||
{/if}
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style>
|
||||
:global(body) {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0f0f0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: 100vh;
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
header {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.header-left {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.back-link {
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.25rem;
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
.content {
|
||||
display: grid;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
section {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.error {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
border: 1px solid #ef4444;
|
||||
color: #fca5a5;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.field {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 0.9rem;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
input, select {
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
input:focus, select:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
padding: 0.875rem;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
button:hover:not(:disabled) {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
color: #888;
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.backtest-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.backtest-card {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
border-radius: 8px;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.backtest-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.backtest-status {
|
||||
padding: 0.25rem 0.75rem;
|
||||
border-radius: 9999px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.status-running {
|
||||
background: rgba(59, 130, 246, 0.2);
|
||||
color: #60a5fa;
|
||||
}
|
||||
|
||||
.status-completed {
|
||||
background: rgba(34, 197, 94, 0.2);
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.status-failed {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
color: #fca5a5;
|
||||
}
|
||||
|
||||
.backtest-date {
|
||||
color: #888;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.backtest-results {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.result-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.result-label {
|
||||
font-size: 0.75rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.result-value {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.positive {
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.negative {
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
margin-top: 0.75rem;
|
||||
width: auto;
|
||||
padding: 0.5rem 1rem;
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
color: #fca5a5;
|
||||
border: 1px solid rgba(239, 68, 68, 0.4);
|
||||
}
|
||||
|
||||
.chart-section {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.chart-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.chart-header h2 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.close-btn {
|
||||
width: auto;
|
||||
padding: 0.25rem 0.75rem;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border: none;
|
||||
color: #888;
|
||||
font-size: 1.5rem;
|
||||
line-height: 1;
|
||||
cursor: pointer;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.close-btn:hover {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
color: #fff;
|
||||
}
|
||||
</style>
|
||||
431
src/frontend/src/routes/bot/[id]/simulate/+page.svelte
Normal file
431
src/frontend/src/routes/bot/[id]/simulate/+page.svelte
Normal file
@@ -0,0 +1,431 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from 'svelte';
|
||||
import { page } from '$app/stores';
|
||||
import { goto } from '$app/navigation';
|
||||
import { isAuthenticated, isLoading, currentBotStore, setCurrentBot, simulationStore, setCurrentSimulation, addSignals, clearSignals, setSimulationLoading, setSimulationError } from '$lib/stores';
|
||||
import { api } from '$lib/api';
|
||||
import { SignalChart, ProUpgradeBanner } from '$lib/components';
|
||||
|
||||
let botId = $derived($page.params.id);
|
||||
let token = $state('PEPE');
|
||||
let intervalSeconds = $state(60);
|
||||
let autoExecute = $state(false);
|
||||
let isRunning = $state(false);
|
||||
|
||||
onMount(async () => {
|
||||
if (!$isAuthenticated && !$isLoading) {
|
||||
goto('/login');
|
||||
return;
|
||||
}
|
||||
if ($isAuthenticated && botId) {
|
||||
await loadBot();
|
||||
await loadSimulations();
|
||||
}
|
||||
});
|
||||
|
||||
async function loadBot() {
|
||||
try {
|
||||
const bot = await api.bots.get(botId);
|
||||
setCurrentBot(bot);
|
||||
} catch (e) {
|
||||
goto('/dashboard');
|
||||
}
|
||||
}
|
||||
|
||||
async function loadSimulations() {
|
||||
try {
|
||||
const simulations = await api.simulate.list(botId);
|
||||
if (simulations.length > 0) {
|
||||
const latest = simulations[0];
|
||||
setCurrentSimulation(latest);
|
||||
if (latest.signals) {
|
||||
addSignals(latest.signals);
|
||||
}
|
||||
if (latest.status === 'running') {
|
||||
isRunning = true;
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
console.error('Failed to load simulations:', e);
|
||||
}
|
||||
}
|
||||
|
||||
async function startSimulation() {
|
||||
setSimulationError(null);
|
||||
setSimulationLoading(true);
|
||||
isRunning = true;
|
||||
|
||||
try {
|
||||
const simulation = await api.simulate.start(botId, {
|
||||
token,
|
||||
interval_seconds: intervalSeconds,
|
||||
auto_execute: autoExecute
|
||||
});
|
||||
setCurrentSimulation(simulation);
|
||||
clearSignals();
|
||||
} catch (e) {
|
||||
setSimulationError(e instanceof Error ? e.message : 'Failed to start simulation');
|
||||
isRunning = false;
|
||||
} finally {
|
||||
setSimulationLoading(false);
|
||||
}
|
||||
}
|
||||
|
||||
async function stopSimulation() {
|
||||
if (!$simulationStore.currentSimulation) return;
|
||||
|
||||
try {
|
||||
await api.simulate.stop(botId, $simulationStore.currentSimulation.id);
|
||||
await loadSimulations();
|
||||
isRunning = false;
|
||||
} catch (e) {
|
||||
console.error('Failed to stop simulation:', e);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Simulate - {$currentBotStore?.name || 'Bot'} - Randebu</title>
|
||||
</svelte:head>
|
||||
|
||||
<main>
|
||||
<header>
|
||||
<div class="header-left">
|
||||
<a href="/bot/{botId}" class="back-link">← Back to Chat</a>
|
||||
<h1>Simulation</h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="notice">
|
||||
<span class="notice-icon">⚠️</span>
|
||||
<span>Simulation Mode - Using REST polling (every {intervalSeconds}s). For real-time signals, consider upgrading to Pro tier.</span>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<section class="config-section">
|
||||
<h2>Configure Simulation</h2>
|
||||
|
||||
{#if $simulationStore.error}
|
||||
<div class="error">{$simulationStore.error}</div>
|
||||
{/if}
|
||||
|
||||
<form onsubmit={(e) => { e.preventDefault(); startSimulation(); }}>
|
||||
<div class="form-row">
|
||||
<div class="field">
|
||||
<label for="token">Token</label>
|
||||
<input type="text" id="token" bind:value={token} required disabled={isRunning} />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="interval">Check Interval (seconds)</label>
|
||||
<select id="interval" bind:value={intervalSeconds} disabled={isRunning}>
|
||||
<option value={30}>30 seconds</option>
|
||||
<option value={60}>60 seconds</option>
|
||||
<option value={120}>2 minutes</option>
|
||||
<option value={300}>5 minutes</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="field checkbox-field">
|
||||
<input type="checkbox" id="autoExecute" bind:checked={autoExecute} disabled={isRunning} />
|
||||
<label for="autoExecute">Auto-execute trades (requires Pro tier)</label>
|
||||
</div>
|
||||
|
||||
{#if isRunning}
|
||||
<button type="button" onclick={stopSimulation} class="btn btn-danger">
|
||||
Stop Simulation
|
||||
</button>
|
||||
{:else}
|
||||
<button type="submit" disabled={$simulationStore.isLoading}>
|
||||
{$simulationStore.isLoading ? 'Starting...' : 'Start Simulation'}
|
||||
</button>
|
||||
{/if}
|
||||
</form>
|
||||
</section>
|
||||
|
||||
<ProUpgradeBanner feature="Real-time WebSocket signals for instant trading decisions" />
|
||||
|
||||
<section class="signals-section">
|
||||
<h2>Signals ({$simulationStore.signals.length})</h2>
|
||||
|
||||
{#if $simulationStore.signals.length === 0}
|
||||
<p class="empty-state">No signals yet. Start a simulation to see trading signals.</p>
|
||||
{:else}
|
||||
<SignalChart signals={$simulationStore.signals} height={200} />
|
||||
|
||||
<div class="signals-list">
|
||||
{#each $simulationStore.signals as signal}
|
||||
<div class="signal-card">
|
||||
<div class="signal-header">
|
||||
<span class="signal-type type-{signal.signal_type}">{signal.signal_type}</span>
|
||||
<span class="signal-token">{signal.token}</span>
|
||||
<span class="signal-price">${signal.price.toFixed(6)}</span>
|
||||
</div>
|
||||
{#if signal.confidence}
|
||||
<div class="signal-confidence">
|
||||
<span>Confidence: {(signal.confidence * 100).toFixed(1)}%</span>
|
||||
<div class="confidence-bar">
|
||||
<div class="confidence-fill" style="width: {signal.confidence * 100}%"></div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{#if signal.reasoning}
|
||||
<p class="signal-reasoning">{signal.reasoning}</p>
|
||||
{/if}
|
||||
<div class="signal-time">
|
||||
{new Date(signal.created_at).toLocaleString()}
|
||||
</div>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
{/if}
|
||||
</section>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style>
|
||||
:global(body) {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0f0f0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: 100vh;
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
header {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.header-left {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.back-link {
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
|
||||
.notice {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
background: rgba(251, 191, 36, 0.1);
|
||||
border: 1px solid rgba(251, 191, 36, 0.3);
|
||||
border-radius: 8px;
|
||||
padding: 0.75rem 1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
font-size: 0.9rem;
|
||||
color: #fbbf24;
|
||||
}
|
||||
|
||||
.notice-icon {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.content {
|
||||
display: grid;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
section {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.25rem;
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
.error {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
border: 1px solid #ef4444;
|
||||
color: #fca5a5;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.field {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.checkbox-field {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.checkbox-field input {
|
||||
width: auto;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
.checkbox-field label {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 0.9rem;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
input, select {
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
input:focus, select:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
padding: 0.875rem;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
button:hover:not(:disabled) {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
color: #fca5a5;
|
||||
border: 1px solid rgba(239, 68, 68, 0.4);
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
color: #888;
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.signals-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.signal-card {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
border-radius: 8px;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.signal-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.signal-type {
|
||||
padding: 0.25rem 0.75rem;
|
||||
border-radius: 9999px;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.type-buy {
|
||||
background: rgba(34, 197, 94, 0.2);
|
||||
color: #22c55e;
|
||||
}
|
||||
|
||||
.type-sell {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.type-hold {
|
||||
background: rgba(251, 191, 36, 0.2);
|
||||
color: #fbbf24;
|
||||
}
|
||||
|
||||
.signal-token {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.signal-price {
|
||||
color: #888;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.signal-confidence {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: 0.85rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.confidence-bar {
|
||||
flex: 1;
|
||||
height: 4px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.confidence-fill {
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, #667eea, #764ba2);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.signal-reasoning {
|
||||
font-size: 0.9rem;
|
||||
color: #ccc;
|
||||
margin: 0.5rem 0;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.signal-time {
|
||||
font-size: 0.75rem;
|
||||
color: #666;
|
||||
}
|
||||
</style>
|
||||
291
src/frontend/src/routes/dashboard/+page.svelte
Normal file
291
src/frontend/src/routes/dashboard/+page.svelte
Normal file
@@ -0,0 +1,291 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from 'svelte';
|
||||
import { goto } from '$app/navigation';
|
||||
import { isAuthenticated, isLoading, botsStore, setBots, addBot, removeBot, userStore, logout } from '$lib/stores';
|
||||
import { api } from '$lib/api';
|
||||
import { BotCard } from '$lib/components';
|
||||
|
||||
let showCreateModal = $state(false);
|
||||
let newBotName = $state('');
|
||||
let newBotDescription = $state('');
|
||||
let isCreating = $state(false);
|
||||
let createError = $state('');
|
||||
|
||||
onMount(async () => {
|
||||
if (!$isAuthenticated && !$isLoading) {
|
||||
goto('/login');
|
||||
return;
|
||||
}
|
||||
if ($isAuthenticated) {
|
||||
await loadBots();
|
||||
}
|
||||
});
|
||||
|
||||
async function loadBots() {
|
||||
try {
|
||||
const bots = await api.bots.list();
|
||||
setBots(bots);
|
||||
} catch (e) {
|
||||
console.error('Failed to load bots:', e);
|
||||
}
|
||||
}
|
||||
|
||||
async function createBot() {
|
||||
if (!newBotName.trim()) return;
|
||||
createError = '';
|
||||
isCreating = true;
|
||||
try {
|
||||
const bot = await api.bots.create(newBotName, newBotDescription);
|
||||
addBot(bot);
|
||||
showCreateModal = false;
|
||||
newBotName = '';
|
||||
newBotDescription = '';
|
||||
goto(`/bot/${bot.id}`);
|
||||
} catch (e) {
|
||||
createError = e instanceof Error ? e.message : 'Failed to create bot';
|
||||
} finally {
|
||||
isCreating = false;
|
||||
}
|
||||
}
|
||||
|
||||
async function deleteBot(botId: string) {
|
||||
if (!confirm('Are you sure you want to delete this bot?')) return;
|
||||
try {
|
||||
await api.bots.delete(botId);
|
||||
removeBot(botId);
|
||||
} catch (e) {
|
||||
console.error('Failed to delete bot:', e);
|
||||
}
|
||||
}
|
||||
|
||||
function handleLogout() {
|
||||
logout();
|
||||
goto('/');
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Dashboard - Randebu</title>
|
||||
</svelte:head>
|
||||
|
||||
<main>
|
||||
<header>
|
||||
<h1>Dashboard</h1>
|
||||
<div class="header-actions">
|
||||
<span class="user-email">{$userStore?.email}</span>
|
||||
<a href="/settings" class="btn btn-secondary">Settings</a>
|
||||
<button onclick={handleLogout} class="btn btn-secondary">Logout</button>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="bots-section">
|
||||
<div class="section-header">
|
||||
<h2>Your Bots ({$botsStore.length}/3)</h2>
|
||||
{#if $botsStore.length < 3}
|
||||
<button onclick={() => showCreateModal = true} class="btn btn-primary">
|
||||
Create New Bot
|
||||
</button>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{#if $botsStore.length === 0}
|
||||
<div class="empty-state">
|
||||
<p>You haven't created any bots yet.</p>
|
||||
<p>Create your first bot to start trading!</p>
|
||||
</div>
|
||||
{:else}
|
||||
<div class="bots-grid">
|
||||
{#each $botsStore as bot}
|
||||
<BotCard {bot} onOpen={(id) => goto(`/bot/${id}`)} onDelete={deleteBot} />
|
||||
{/each}
|
||||
</div>
|
||||
{/if}
|
||||
</section>
|
||||
|
||||
{#if showCreateModal}
|
||||
<div class="modal-overlay" onclick={() => showCreateModal = false}>
|
||||
<div class="modal" onclick={(e) => e.stopPropagation()}>
|
||||
<h2>Create New Bot</h2>
|
||||
{#if createError}
|
||||
<div class="error">{createError}</div>
|
||||
{/if}
|
||||
<form onsubmit={(e) => { e.preventDefault(); createBot(); }}>
|
||||
<div class="field">
|
||||
<label for="botName">Bot Name</label>
|
||||
<input type="text" id="botName" bind:value={newBotName} required />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="botDescription">Description (optional)</label>
|
||||
<textarea id="botDescription" bind:value={newBotDescription} rows="3"></textarea>
|
||||
</div>
|
||||
<div class="modal-actions">
|
||||
<button type="button" onclick={() => showCreateModal = false} class="btn btn-secondary">
|
||||
Cancel
|
||||
</button>
|
||||
<button type="submit" disabled={isCreating}>
|
||||
{isCreating ? 'Creating...' : 'Create'}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</main>
|
||||
|
||||
<style>
|
||||
:global(body) {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0f0f0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: 100vh;
|
||||
padding: 2rem;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 2rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.header-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.user-email {
|
||||
color: #888;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 0;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.bots-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
font-size: 0.9rem;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
transition: transform 0.2s, opacity 0.2s;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: white;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 3rem;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.modal-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.modal {
|
||||
background: #1a1a1a;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 16px;
|
||||
padding: 2rem;
|
||||
width: 100%;
|
||||
max-width: 450px;
|
||||
}
|
||||
|
||||
.modal h2 {
|
||||
margin: 0 0 1.5rem;
|
||||
}
|
||||
|
||||
.error {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
border: 1px solid #ef4444;
|
||||
color: #fca5a5;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.field {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #ccc;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
input, textarea {
|
||||
width: 100%;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input:focus, textarea:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
.modal-actions {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: flex-end;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
</style>
|
||||
176
src/frontend/src/routes/login/+page.svelte
Normal file
176
src/frontend/src/routes/login/+page.svelte
Normal file
@@ -0,0 +1,176 @@
|
||||
<script lang="ts">
|
||||
import { goto } from '$app/navigation';
|
||||
import { login, isAuthenticated } from '$lib/stores';
|
||||
|
||||
let email = $state('');
|
||||
let password = $state('');
|
||||
let error = $state('');
|
||||
let isLoading = $state(false);
|
||||
|
||||
$effect(() => {
|
||||
if ($isAuthenticated) {
|
||||
goto('/dashboard');
|
||||
}
|
||||
});
|
||||
|
||||
async function handleSubmit() {
|
||||
error = '';
|
||||
isLoading = true;
|
||||
try {
|
||||
await login(email, password);
|
||||
goto('/dashboard');
|
||||
} catch (e) {
|
||||
error = e instanceof Error ? e.message : 'Login failed';
|
||||
} finally {
|
||||
isLoading = false;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Login - Randebu</title>
|
||||
</svelte:head>
|
||||
|
||||
<main>
|
||||
<div class="auth-card">
|
||||
<h1>Login</h1>
|
||||
<p class="subtitle">Welcome back</p>
|
||||
|
||||
{#if error}
|
||||
<div class="error">{error}</div>
|
||||
{/if}
|
||||
|
||||
<form onsubmit={(e) => { e.preventDefault(); handleSubmit(); }}>
|
||||
<div class="field">
|
||||
<label for="email">Email</label>
|
||||
<input type="email" id="email" bind:value={email} required />
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<label for="password">Password</label>
|
||||
<input type="password" id="password" bind:value={password} required />
|
||||
</div>
|
||||
|
||||
<button type="submit" disabled={isLoading}>
|
||||
{isLoading ? 'Logging in...' : 'Login'}
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<p class="footer">
|
||||
Don't have an account? <a href="/register">Register</a>
|
||||
</p>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style>
|
||||
:global(body) {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0f0f0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.auth-card {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 16px;
|
||||
padding: 2.5rem;
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: 1.75rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
color: #888;
|
||||
text-align: center;
|
||||
margin: 0.5rem 0 2rem;
|
||||
}
|
||||
|
||||
.error {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
border: 1px solid #ef4444;
|
||||
color: #fca5a5;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.field {
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #ccc;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
padding: 0.875rem;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
button:hover:not(:disabled) {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
margin-top: 1.5rem;
|
||||
color: #888;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.footer a {
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
193
src/frontend/src/routes/register/+page.svelte
Normal file
193
src/frontend/src/routes/register/+page.svelte
Normal file
@@ -0,0 +1,193 @@
|
||||
<script lang="ts">
|
||||
import { goto } from '$app/navigation';
|
||||
import { register, isAuthenticated } from '$lib/stores';
|
||||
|
||||
let email = $state('');
|
||||
let password = $state('');
|
||||
let confirmPassword = $state('');
|
||||
let error = $state('');
|
||||
let isLoading = $state(false);
|
||||
|
||||
$effect(() => {
|
||||
if ($isAuthenticated) {
|
||||
goto('/dashboard');
|
||||
}
|
||||
});
|
||||
|
||||
async function handleSubmit() {
|
||||
error = '';
|
||||
|
||||
if (password !== confirmPassword) {
|
||||
error = 'Passwords do not match';
|
||||
return;
|
||||
}
|
||||
|
||||
if (password.length < 6) {
|
||||
error = 'Password must be at least 6 characters';
|
||||
return;
|
||||
}
|
||||
|
||||
isLoading = true;
|
||||
try {
|
||||
await register(email, password);
|
||||
goto('/dashboard');
|
||||
} catch (e) {
|
||||
error = e instanceof Error ? e.message : 'Registration failed';
|
||||
} finally {
|
||||
isLoading = false;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Register - Randebu</title>
|
||||
</svelte:head>
|
||||
|
||||
<main>
|
||||
<div class="auth-card">
|
||||
<h1>Create Account</h1>
|
||||
<p class="subtitle">Start creating trading bots</p>
|
||||
|
||||
{#if error}
|
||||
<div class="error">{error}</div>
|
||||
{/if}
|
||||
|
||||
<form onsubmit={(e) => { e.preventDefault(); handleSubmit(); }}>
|
||||
<div class="field">
|
||||
<label for="email">Email</label>
|
||||
<input type="email" id="email" bind:value={email} required />
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<label for="password">Password</label>
|
||||
<input type="password" id="password" bind:value={password} required minlength="6" />
|
||||
</div>
|
||||
|
||||
<div class="field">
|
||||
<label for="confirmPassword">Confirm Password</label>
|
||||
<input type="password" id="confirmPassword" bind:value={confirmPassword} required />
|
||||
</div>
|
||||
|
||||
<button type="submit" disabled={isLoading}>
|
||||
{isLoading ? 'Creating account...' : 'Create Account'}
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<p class="footer">
|
||||
Already have an account? <a href="/login">Login</a>
|
||||
</p>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style>
|
||||
:global(body) {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0f0f0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.auth-card {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 16px;
|
||||
padding: 2.5rem;
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: 1.75rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
color: #888;
|
||||
text-align: center;
|
||||
margin: 0.5rem 0 2rem;
|
||||
}
|
||||
|
||||
.error {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
border: 1px solid #ef4444;
|
||||
color: #fca5a5;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.field {
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #ccc;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
padding: 0.875rem;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
button:hover:not(:disabled) {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
margin-top: 1.5rem;
|
||||
color: #888;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.footer a {
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
281
src/frontend/src/routes/settings/+page.svelte
Normal file
281
src/frontend/src/routes/settings/+page.svelte
Normal file
@@ -0,0 +1,281 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from 'svelte';
|
||||
import { goto } from '$app/navigation';
|
||||
import { isAuthenticated, isLoading, userStore, logout } from '$lib/stores';
|
||||
import { api } from '$lib/api';
|
||||
|
||||
let email = $state('');
|
||||
let currentPassword = $state('');
|
||||
let newPassword = $state('');
|
||||
let confirmPassword = $state('');
|
||||
let isUpdating = $state(false);
|
||||
let updateSuccess = $state('');
|
||||
let updateError = $state('');
|
||||
|
||||
onMount(async () => {
|
||||
if (!$isAuthenticated && !$isLoading) {
|
||||
goto('/login');
|
||||
return;
|
||||
}
|
||||
if ($userStore) {
|
||||
email = $userStore.email;
|
||||
}
|
||||
});
|
||||
|
||||
async function updateEmail() {
|
||||
updateSuccess = '';
|
||||
updateError = '';
|
||||
isUpdating = true;
|
||||
try {
|
||||
await fetch(`${import.meta.env.VITE_API_URL || 'http://localhost:8000/api'}/auth/settings`, {
|
||||
method: 'PATCH',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': `Bearer ${localStorage.getItem('token')}`
|
||||
},
|
||||
body: JSON.stringify({ email })
|
||||
});
|
||||
updateSuccess = 'Email updated successfully';
|
||||
} catch (e) {
|
||||
updateError = e instanceof Error ? e.message : 'Failed to update email';
|
||||
} finally {
|
||||
isUpdating = false;
|
||||
}
|
||||
}
|
||||
|
||||
async function updatePassword() {
|
||||
updateSuccess = '';
|
||||
updateError = '';
|
||||
|
||||
if (newPassword !== confirmPassword) {
|
||||
updateError = 'Passwords do not match';
|
||||
return;
|
||||
}
|
||||
|
||||
if (newPassword.length < 6) {
|
||||
updateError = 'Password must be at least 6 characters';
|
||||
return;
|
||||
}
|
||||
|
||||
isUpdating = true;
|
||||
try {
|
||||
await fetch(`${import.meta.env.VITE_API_URL || 'http://localhost:8000/api'}/auth/settings`, {
|
||||
method: 'PATCH',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': `Bearer ${localStorage.getItem('token')}`
|
||||
},
|
||||
body: JSON.stringify({ password: newPassword, current_password: currentPassword })
|
||||
});
|
||||
updateSuccess = 'Password updated successfully';
|
||||
currentPassword = '';
|
||||
newPassword = '';
|
||||
confirmPassword = '';
|
||||
} catch (e) {
|
||||
updateError = e instanceof Error ? e.message : 'Failed to update password';
|
||||
} finally {
|
||||
isUpdating = false;
|
||||
}
|
||||
}
|
||||
|
||||
function handleLogout() {
|
||||
logout();
|
||||
goto('/');
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Settings - Randebu</title>
|
||||
</svelte:head>
|
||||
|
||||
<main>
|
||||
<header>
|
||||
<div class="header-left">
|
||||
<a href="/dashboard" class="back-link">← Dashboard</a>
|
||||
<h1>Settings</h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="content">
|
||||
<section class="settings-section">
|
||||
<h2>Profile</h2>
|
||||
|
||||
{#if updateSuccess}
|
||||
<div class="success">{updateSuccess}</div>
|
||||
{/if}
|
||||
|
||||
{#if updateError}
|
||||
<div class="error">{updateError}</div>
|
||||
{/if}
|
||||
|
||||
<form onsubmit={(e) => { e.preventDefault(); updateEmail(); }}>
|
||||
<div class="field">
|
||||
<label for="email">Email</label>
|
||||
<input type="email" id="email" bind:value={email} required />
|
||||
</div>
|
||||
<button type="submit" disabled={isUpdating}>
|
||||
{isUpdating ? 'Updating...' : 'Update Email'}
|
||||
</button>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
<section class="settings-section">
|
||||
<h2>Change Password</h2>
|
||||
|
||||
<form onsubmit={(e) => { e.preventDefault(); updatePassword(); }}>
|
||||
<div class="field">
|
||||
<label for="currentPassword">Current Password</label>
|
||||
<input type="password" id="currentPassword" bind:value={currentPassword} required />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="newPassword">New Password</label>
|
||||
<input type="password" id="newPassword" bind:value={newPassword} required minlength="6" />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="confirmPassword">Confirm New Password</label>
|
||||
<input type="password" id="confirmPassword" bind:value={confirmPassword} required />
|
||||
</div>
|
||||
<button type="submit" disabled={isUpdating}>
|
||||
{isUpdating ? 'Updating...' : 'Update Password'}
|
||||
</button>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
<section class="settings-section danger-section">
|
||||
<h2>Account</h2>
|
||||
<button onclick={handleLogout} class="btn btn-danger">
|
||||
Logout
|
||||
</button>
|
||||
</section>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<style>
|
||||
:global(body) {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: #0f0f0f;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: 100vh;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
header {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.header-left {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.back-link {
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
section {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.1rem;
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
.success {
|
||||
background: rgba(34, 197, 94, 0.2);
|
||||
border: 1px solid #22c55e;
|
||||
color: #86efac;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.error {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
border: 1px solid #ef4444;
|
||||
color: #fca5a5;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.field {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #ccc;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
padding: 0.75rem;
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
color: #fff;
|
||||
font-size: 1rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
outline: none;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
padding: 0.875rem;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
button:hover:not(:disabled) {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.danger-section button {
|
||||
background: rgba(239, 68, 68, 0.2);
|
||||
color: #fca5a5;
|
||||
border: 1px solid rgba(239, 68, 68, 0.4);
|
||||
}
|
||||
</style>
|
||||
3
src/frontend/static/robots.txt
Normal file
3
src/frontend/static/robots.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
# allow crawling everything by default
|
||||
User-agent: *
|
||||
Disallow:
|
||||
17
src/frontend/svelte.config.js
Normal file
17
src/frontend/svelte.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import adapter from '@sveltejs/adapter-auto';
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
compilerOptions: {
|
||||
// Force runes mode for the project, except for libraries. Can be removed in svelte 6.
|
||||
runes: ({ filename }) => (filename.split(/[/\\]/).includes('node_modules') ? undefined : true)
|
||||
},
|
||||
kit: {
|
||||
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
|
||||
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
|
||||
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
|
||||
adapter: adapter()
|
||||
}
|
||||
};
|
||||
|
||||
export default config;
|
||||
20
src/frontend/tsconfig.json
Normal file
20
src/frontend/tsconfig.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"extends": "./.svelte-kit/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"rewriteRelativeImportExtensions": true,
|
||||
"allowJs": true,
|
||||
"checkJs": true,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"sourceMap": true,
|
||||
"strict": true,
|
||||
"moduleResolution": "bundler"
|
||||
}
|
||||
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
|
||||
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
|
||||
//
|
||||
// To make changes to top-level options such as include and exclude, we recommend extending
|
||||
// the generated config; see https://svelte.dev/docs/kit/configuration#typescript
|
||||
}
|
||||
6
src/frontend/vite.config.ts
Normal file
6
src/frontend/vite.config.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { sveltekit } from '@sveltejs/kit/vite';
|
||||
import { defineConfig } from 'vite';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [sveltekit()]
|
||||
});
|
||||
Reference in New Issue
Block a user