#!/usr/bin/env node // Quick script to enable continuous learning via browser console console.log(` 🔧 ENABLE CONTINUOUS LEARNING MANUALLY 1. Open http://localhost:9001/safe-paper-trading in your browser 2. Open Developer Tools (F12) 3. Go to Console tab 4. Run this command: window.forceEnableLearning() 5. Refresh the page - you should see: - Button says "🛑 Stop Learning" (instead of Start) - Auto-execute toggle becomes available: "🔒 Locked" → "🤖 OFF" 6. Click the auto-execute toggle to enable it: "🤖 OFF" → "🤖 ON" 7. Now when you get strong signals (≥60% confidence), it will auto-create paper trades! Alternative: You can also run this in console: localStorage.setItem('safePaperTrading_continuousLearning', 'true') location.reload() `);