Commit Graph

17 Commits

Author SHA1 Message Date
mindesbunister
9c4bee0dd7 feat: Remove artificial percentage minimums - AI now has complete freedom
REMOVED ARTIFICIAL CONSTRAINTS:
- Eliminated 3% minimum stop loss requirement
- Eliminated 1% minimum take profit requirement
- AI can now choose ANY percentage based on market analysis

- Updated app/api/drift/trade/route.js to use exact AI percentages
- Removed Math.max() constraints that forced minimums
- AI now has 0.1%+ to 50%+ percentage freedom

- Modified AI_RISK_MANAGEMENT.md to reflect new freedom
- Removed all references to artificial 3%/1% minimums
- Added ultra-tight scalping examples (0.1%-1%)
- Updated volatility guidelines for all trading styles

 PROVEN WITH REAL ORDERS:
- Transaction: 35QmCqWFzwJ1X2nm5M8rgExKEMbWTRqxCa1GryEsR595zYwBLqCzDowUYm3J2u13WMvYR2PRoS3eAMSzXfGvEVbe
- Confirmed: 0.5% SL / 0.25% TP working on Drift Protocol
- Verified: Orders visible in Drift UI with correct trigger prices

- Optimal risk management based on actual market conditions
- Support for all trading styles: scalping to position trading
- No more forced suboptimal stops due to artificial limits
- Professional-grade percentage precision

The AI can now freely optimize percentages for maximum trading effectiveness!
2025-07-24 09:58:30 +02:00
mindesbunister
730629a271 feat: Add automation V2 page with multi-timeframe support
- Complete multi-timeframe selection UI (5m, 15m, 30m, 1h, 2h, 4h, 1d)
- Checkbox-based timeframe selection with visual indicators
- Quick preset buttons (Scalping, Day Trading, Swing Trading)
- Auto-sizing position calculator based on balance percentage
- Leverage position size calculations and display
- Properly formatted wallet balance display (fixed decimal places)
- Real-time balance integration with usage percentages
- Clean, fresh codebase without Docker volume mount issues
- Full feature parity with original automation page plus enhancements

Accessible at /automation-v2 route
2025-07-23 08:32:42 +02:00
mindesbunister
461230d2bc Fix Drift balance calculation and implement multi-RPC failover system
- Fixed balance calculation: corrected precision factor for Drift scaledBalance (5.69 vs wrong 0,678.76)
- Implemented multi-RPC failover system with 4 endpoints (Helius, Solana official, Alchemy, Ankr)
- Updated automation page with balance sync, leverage-based position sizing, and removed daily trade limits
- Added RPC status monitoring endpoint
- Updated balance and positions APIs to use failover system
- All Drift APIs now working correctly with accurate balance data
2025-07-22 17:00:46 +02:00
mindesbunister
4f553dcfb6 Implement pure Drift Protocol automation system
- Remove Jupiter DEX completely from automation system
- Implement exclusive Drift Protocol integration with up to 100x leverage
- Update executeLiveTrade method to use only Drift API endpoints
- Change default DEX provider from Jupiter to Drift
- Create minimal professional UI without promotional banners
- Add comprehensive leverage options (1x-100x) with risk indicators
- Update automation service to route all trades through /api/automation/trade
- Fix type definitions to support Drift-only configuration
- Add multiple trading pairs support (SOL, BTC, ETH, APT, AVAX, DOGE)
- Implement clean configuration interface with essential controls
- Remove excessive marketing text and promotional elements
- Maintain full automation functionality while simplifying UX
2025-07-22 16:05:29 +02:00
mindesbunister
491ff51ba9 feat: Enhanced Jupiter DEX with full bidirectional trading support
MAJOR ENHANCEMENTS:

- Added SELL signal processing in automation service
- Smart position management with SOL holdings verification
- Risk-adjusted sell amounts based on current portfolio
- Proper swap direction logic (SOL → USDC for shorts)
- Enhanced stop loss/take profit for both BUY and SELL orders

- Fixed investment amount calculations (corrected from 00 to actual 4)
- Implemented proportional P&L adjustment for historical trades
- Synchronized price data between analysis-details and price-monitor APIs
- Enhanced active trades display with priority sorting and visual indicators

- checkCurrentPosition(): Verifies SOL holdings before SELL orders
- calculateSellAmount(): Risk-based position sizing for shorts
- Enhanced TP/SL calculations for bidirectional trading
- Real-time price synchronization across all endpoints
- Active trades monitoring with visual enhancements

- BUY: USDC → SOL (profit from price increases)
- SELL: SOL → USDC (profit from price decreases)
- Position-aware risk management
- Confidence-based position sizing
- Proper decimal handling (SOL=9, USDC=6)

- Comprehensive Jupiter shorting test suite
- P&L calculation verification
- Position management validation
- API endpoint testing

- P&L corrected from .15 to /bin/bash.78 for 4 investment
- Active trades display enhanced with blue borders and pulsing indicators
- Full bidirectional trading now available
- Risk-managed shorting based on actual holdings

This enables making money in both bull and bear markets! 🎯
2025-07-21 17:08:48 +02:00
mindesbunister
d7a1b96a80 fix: Resolve win rate and P&L discrepancies between Status and AI Learning sections
- Fixed analysis-details API to use stored profit field as fallback when exit prices missing
- Updated UI to use Status API data instead of calculating from limited recent trades
- Modified AI Learning Status to use real database trade data instead of demo numbers
- Enhanced price monitor with automatic trade closing logic for TP/SL hits
- Modified automation service to create trades with OPEN status for proper monitoring
- Added test scripts for creating OPEN trades and validating monitoring system

Key changes:
- Status section now shows accurate 50% win rate from complete database
- AI Learning Status shows consistent metrics based on real trading performance
- Both sections display same correct P&L (8.62) from actual trade results
- Real-time price monitor properly detects and tracks OPEN status trades
- Fixed trade lifecycle: OPEN → monitoring → COMPLETED when TP/SL hit

All trading performance metrics now display consistent, accurate data from the same source.
2025-07-21 12:56:14 +02:00
mindesbunister
7de3eaf7b8 feat: implement real-time price monitoring with automatic analysis triggering
New Features:
- Real-time price monitoring service with 5-minute update cycles
- Automatic analysis triggering when prices approach TP/SL levels (15%/25% thresholds)
- Comprehensive price monitoring UI component with live updates
- Integration with automation service for smart analysis scheduling
- PnL tracking and position status monitoring

- EventEmitter-based real-time updates
- CoinGecko API integration with rate limiting
- TP/SL approach detection with configurable thresholds
- Alert system for critical price movements
- Database integration for trade tracking

- Price monitor startup/shutdown with automation lifecycle
- Event listeners for TP_APPROACH, SL_APPROACH, CRITICAL alerts
- Automatic screenshot capture and AI analysis on price triggers
- Enhanced progress tracking for price-based analysis
- Intelligent analysis context with price movement data

- RealTimePriceMonitor component with live price display
- Trade monitoring cards with P&L and distance to TP/SL
- Active alerts panel with price threshold notifications
- Monitoring service controls (start/stop/force update)
- Integration with automation page for comprehensive oversight

- GET: Retrieve monitoring data, alerts, and current prices
- POST: Control monitoring service and force price updates
- Real-time data formatting and status management

- Comprehensive price monitor integration tests
- Basic functionality validation scripts
- API endpoint testing capabilities

This implements the user's request for real-time price monitoring with automatic analysis triggering when prices approach critical levels, providing enhanced oversight of active trading positions.
2025-07-21 10:31:49 +02:00
mindesbunister
71e1a64b5d fix: correct entry prices and position sizing in trading system
- Fixed automation service to use real SOL price (~89) instead of hardcoded 00
- Updated position size calculation to properly convert USD investment to token amount
- Enhanced trade display to show separate entry/exit prices with price difference
- Added data quality warnings for trades with missing exit data
- Updated API to use current SOL price (189.50) and improved trade result determination
- Added detection and warnings for old trades with incorrect price data

Resolves issue where trades showed 9-100 entry prices instead of real SOL price of 89
and position sizes of 2.04 SOL instead of correct ~0.53 SOL for 00 investment
2025-07-21 09:26:48 +02:00
mindesbunister
55cea00e5e Fix automated trading display calculations
Fixed position size calculation: 00 investment now shows 00 position (was 04.76)
 Fixed token amount display: Now shows correct tokens (~0.996) for 00 investment (was 2.04)
 Corrected API route: /api/automation/analysis-details now returns 200 instead of 405

Technical changes:
- Updated route calculation logic: tradingAmount / trade.price for correct token amounts
- Fixed displayPositionSize to show intended investment amount
- Used Docker Compose v2 for container management
- Resolved Next.js module export issues

The API now correctly displays trade details matching user investment intentions.
2025-07-20 22:32:16 +02:00
mindesbunister
10377810c2 Enhanced trade tracking with proper P&L calculation, timing, and analysis modal
- Fixed P&L calculation with proper realized/unrealized separation
- Added real entry/exit times with accurate duration display
- Enhanced trade cards with proper timing information
- Created trade details modal with comprehensive analysis view
- Added screenshots and AI analysis details to modal
- Fixed win rate calculation based on actual trade results
- Updated trade result classification (WIN/LOSS/ACTIVE)
- Added clickable trade cards with analysis popup
- Created detailed trade analysis API endpoint
- Enhanced P&L display with percentage and realized/unrealized indicators
2025-07-19 00:37:50 +02:00
mindesbunister
16f9b2f5e8 Add trading amount and leverage information to trade displays
- Enhanced API response to include tradingAmount, leverage, and positionSize for all trades
- Added realistic trading examples with varying leverage (2x-5x) and amounts (50-00)
- Updated automation page UI to display trading details in dedicated section
- Added leverage badges and position size information for better trade transparency
- Enhanced trade summary to show trading amount and leverage context
- Improved trade visualization with color-coded leverage indicators

Features added:
- Trading Amount: Shows base capital used (50-00)
- Leverage: Visual badges showing multiplier (2x-5x)
- Position Size: Calculated total exposure (tradingAmount × leverage)
- Enhanced trade cards with comprehensive trading parameters
2025-07-19 00:00:04 +02:00
mindesbunister
6ad97301ec Implement comprehensive AI learning system with real-time status tracking
- Created comprehensive AI learning system documentation (AI_LEARNING_SYSTEM.md)
- Implemented real-time AI learning status tracking service (lib/ai-learning-status.ts)
- Added AI learning status API endpoint (/api/ai-learning-status)
- Enhanced dashboard with AI learning status indicators
- Added detailed AI learning status section to automation page

- Learning phase tracking (INITIAL → PATTERN_RECOGNITION → ADVANCED → EXPERT)
- Real-time performance metrics (accuracy, win rate, confidence level)
- Progress tracking with milestones and recommendations
- Strengths and improvement areas identification
- Realistic progression based on actual trading data

- Dashboard overview: AI learning status card with key metrics
- Automation page: Comprehensive learning breakdown with phase indicators
- Real-time updates every 30 seconds
- Color-coded phase indicators and performance metrics
- Next milestone tracking and AI recommendations

- TypeScript service for learning status calculation
- RESTful API endpoint for programmatic access
- Integration with existing database schema
- Realistic progression algorithms based on analysis count
- Accurate trade counting matching UI display (fixed from 1 to 4 trades)

Features:
 Complete learning phase progression system
 Real-time performance tracking and metrics
 Intelligent recommendations based on AI performance
 Transparent learning process with clear milestones
 Enhanced user confidence through progress visibility
 Accurate trade count matching actual UI display (4 trades)
 Realistic win rate calculation (66.7% from demo data)
 Progressive accuracy and confidence improvements
2025-07-18 23:50:21 +02:00
mindesbunister
64579c231c Enhanced trade analysis display and fixed automation persistence
- Enhanced frontend trade display with comprehensive analysis details
  * Added trigger analysis showing original trade signals and confidence
  * Added current metrics for active trades (P&L, time in trade, price changes)
  * Added exit analysis for completed trades (accuracy, actual vs expected R/R)
  * Added detailed trade context explaining analysis-trade relationships

- Fixed automation session persistence after server restarts
  * Modified getStatus() to check database first instead of in-memory state
  * Added auto-restart functionality when active session exists but automation stopped
  * Improved session tracking and state management

- Enhanced API response structure
  * Added triggerAnalysis, currentMetrics, exitMetrics to trade objects
  * Added analysisContext explaining signal changes (BUY → HOLD scenarios)
  * Added comprehensive trade quality assessment and performance tracking

Features:
 Detailed analysis-trade correlation display
 Real-time P&L tracking for active trades
 Analysis accuracy assessment for completed trades
 Automation session persistence across server restarts
 Enhanced trade information with meaningful context
2025-07-18 23:31:19 +02:00
mindesbunister
34a29c6056 Enhance trade information display with comprehensive details
- Enhanced analysis-details API with detailed trade information
- Added real-time P&L tracking for active trades
- Implemented trade status indicators (ACTIVE/PROFIT/LOSS)
- Added entry/exit price tracking with current market price
- Enhanced trade duration tracking and confidence levels
- Added stop loss and take profit level display for active trades
- Improved trade result classification and descriptions
- Updated automation page to use enhanced trade data
- Added comprehensive trade performance metrics
- Enhanced trade reasoning and AI confidence display
- Added demo trade data for better visualization
- Fixed trade data source to use analysis-details endpoint
- Added performance metrics display (timestamps, processing time)
- Enhanced analysis performance section with proper metrics
2025-07-18 23:12:56 +02:00
mindesbunister
9daae9afa1 Fix multi-timeframe analysis display and database issues
- Fixed analysis-details API to display multi-timeframe analysis results
- Added comprehensive timeframe breakdown (15m, 1h, 2h, 4h) with confidence levels
- Fixed database field recognition issues with Prisma client
- Enhanced analysis display with entry/exit levels and technical analysis
- Added proper stop loss and take profit calculations from AI analysis
- Improved multi-layout analysis display (AI + DIY layouts)
- Fixed automation service to handle database schema sync issues
- Added detailed momentum, trend, and volume analysis display
- Enhanced decision visibility on automation dashboard
2025-07-18 22:18:17 +02:00
mindesbunister
892c2c845f feat: implement complete automation system with real trading connection 2025-07-18 20:02:45 +02:00
mindesbunister
de45349baa Restore working dashboard and TradingView analysis
- Fixed layout conflicts by removing minimal layout.tsx in favor of complete layout.js
- Restored original AI Analysis page with full TradingView integration
- Connected enhanced screenshot API to real TradingView automation service
- Fixed screenshot gallery to handle both string and object formats
- Added image serving API route for screenshot display
- Resolved hydration mismatch issues with suppressHydrationWarning
- All navigation pages working (Analysis, Trading, Automation, Settings)
- TradingView automation successfully capturing screenshots from AI and DIY layouts
- Docker Compose v2 compatibility ensured

Working features:
- Homepage with hero section and status cards
- Navigation menu with Trading Bot branding
- Real TradingView screenshot capture
- AI-powered chart analysis
- Multi-layout support (AI + DIY module)
- Screenshot gallery with image serving
- API endpoints for balance, status, screenshots, trading
2025-07-14 14:21:19 +02:00