Desarrolle e implemente completamente una interfaz de usuario y experiencia UX/UI de vanguardia y futurista de máximo rendimiento, full responsive para todo tipo de dispositivos, implementando el código en diferentes paginas independientes interconectadas, para la aplicación detallada en los siguientes diagramas, cumpliendo con los siguientes requisitos técnicos y de diseño:
0cec5eb verified | <html lang="en" class="dark"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Señales - QuantumTrading Nexus</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); | |
| * { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| .dark { | |
| background: #0a0a0a; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| } | |
| .glass-effect { | |
| background: rgba(17, 25, 40, 0.75); | |
| backdrop-filter: blur(16px) saturate(180%); | |
| border: 1px solid rgba(255, 255, 255, 0.125); | |
| } | |
| .neon-glow { | |
| box-shadow: 0 0 20px rgba(102, 126, 234, 0.5), | |
| 0 0 40px rgba(102, 126, 234, 0.3), | |
| 0 0 60px rgba(102, 126, 234, 0.1); | |
| } | |
| .cyber-grid { | |
| background-image: | |
| linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px); | |
| background-size: 50px 50px; | |
| } | |
| .pulse-animation { | |
| animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; | |
| } | |
| @keyframes pulse { | |
| 0%, 100% { opacity: 1; } | |
| 50% { opacity: 0.5; } | |
| } | |
| .hover-scale { | |
| transition: transform 0.3s ease; | |
| } | |
| .hover-scale:hover { | |
| transform: scale(1.05); | |
| } | |
| .text-gradient { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| height: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: rgba(0, 0, 0, 0.1); | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| border-radius: 4px; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-950 text-gray-100 min-h-screen cyber-grid"> | |
| <!-- Navigation Header --> | |
| <nav class="glass-effect fixed top-0 w-full z-50 px-6 py-4"> | |
| <div class="max-w-7xl mx-auto flex justify-between items-center"> | |
| <div class="flex items-center space-x-4"> | |
| <div class="w-10 h-10 gradient-bg rounded-lg flex items-center justify-center"> | |
| <i data-feather="trending-up" class="w-6 h-6 text-white"></i> | |
| </div> | |
| <h1 class="text-2xl font-bold text-gradient">QuantumTrading Nexus</h1> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-6"> | |
| <a href="index.html" class="text-gray-300 hover:text-white transition-colors">Dashboard</a> | |
| <a href="signals.html" class="text-white">Señales</a> | |
| <a href="strategies.html" class="text-gray-300 hover:text-white transition-colors">Estrategias</a> | |
| <a href="analytics.html" class="text-gray-300 hover:text-white transition-colors">Análisis</a> | |
| <a href="settings.html" class="text-gray-300 hover:text-white transition-colors">Configuración</a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <button class="relative p-2 glass-effect rounded-lg hover-scale"> | |
| <i data-feather="bell" class="w-5 h-5"></i> | |
| <span class="absolute top-0 right-0 w-2 h-2 bg-red-500 rounded-full pulse-animation"></span> | |
| </button> | |
| <button class="p-2 glass-effect rounded-lg hover-scale"> | |
| <i data-feather="settings" class="w-5 h-5"></i> | |
| </button> | |
| <div class="w-10 h-10 rounded-full bg-gradient-to-r from-purple-500 to-pink-500"></div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Main Content --> | |
| <main class="pt-20 px-6 pb-10"> | |
| <div class="max-w-7xl mx-auto"> | |
| <!-- Page Header --> | |
| <div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6"> | |
| <div> | |
| <h1 class="text-3xl font-bold mb-2">Centro de Señales</h1> | |
| <p class="text-gray-400">Monitoreo y gestión de señales de trading en tiempo real</p> | |
| </div> | |
| <div class="flex space-x-3 mt-4 md:mt-0"> | |
| <button class="px-4 py-2 glass-effect rounded-lg hover-scale flex items-center space-x-2"> | |
| <i data-feather="filter" class="w-4 h-4"></i> | |
| <span>Filtrar</span> | |
| </button> | |
| <button class="px-4 py-2 gradient-bg rounded-lg hover-scale flex items-center space-x-2"> | |
| <i data-feather="plus" class="w-4 h-4"></i> | |
| <span>Nueva Señal</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Signal Statistics --> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-6"> | |
| <div class="glass-effect rounded-xl p-4"> | |
| <div class="flex items-center justify-between"> | |
| <div> | |
| <p class="text-gray-400 text-sm">Señales Hoy</p> | |
| <p class="text-2xl font-bold">127</p> | |
| </div> | |
| <div class="p-3 bg-blue-500/20 rounded-lg"> | |
| <i data-feather="zap" class="w-6 h-6 text-blue-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="glass-effect rounded-xl p-4"> | |
| <div class="flex items-center justify-between"> | |
| <div> | |
| <p class="text-gray-400 text-sm">Tasa de Éxito</p> | |
| <p class="text-2xl font-bold">94.7%</p> | |
| </div> | |
| <div class="p-3 bg-green-500/20 rounded-lg"> | |
| <i data-feather="check-circle" class="w-6 h-6 text-green-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="glass-effect rounded-xl p-4"> | |
| <div class="flex items-center justify-between"> | |
| <div> | |
| <p class="text-gray-400 text-sm">Prom. Confianza</p> | |
| <p class="text-2xl font-bold">89.3%</p> | |
| </div> | |
| <div class="p-3 bg-purple-500/20 rounded-lg"> | |
| <i data-feather="target" class="w-6 h-6 text-purple-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="glass-effect rounded-xl p-4"> | |
| <div class="flex items-center justify-between"> | |
| <div> | |
| <p class="text-gray-400 text-sm">P&L del Día</p> | |
| <p class="text-2xl font-bold text-green-400">+$2,847</p> | |
| </div> | |
| <div class="p-3 bg-orange-500/20 rounded-lg"> | |
| <i data-feather="trending-up" class="w-6 h-6 text-orange-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Active Signals --> | |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6"> | |
| <div class="lg:col-span-2"> | |
| <div class="glass-effect rounded-xl p-6"> | |
| <h2 class="text-xl font-semibold mb-4">Señales Activas</h2> | |
| <div class="space-y-4" id="activeSignals"> | |
| <!-- Dynamic signals will be inserted here --> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Signal Performance Chart --> | |
| <div class="glass-effect rounded-xl p-6"> | |
| <h2 class="text-xl font-semibold mb-4">Rendimiento por Hora</h2> | |
| <canvas id="performanceChart" width="400" height="200"></canvas> | |
| </div> | |
| </div> | |
| <!-- Signal History --> | |
| <div class="glass-effect rounded-xl p-6"> | |
| <div class="flex items-center justify-between mb-6"> | |
| <h2 class="text-xl font-semibold">Historial de Señales</h2> | |
| <div class="flex space-x-2"> | |
| <select class="glass-effect rounded-lg px-3 py-2 text-sm bg-transparent outline-none"> | |
| <option>Todos los Símbolos</option> | |
| <option>EURUSD</option> | |
| <option>GBPUSD</option> | |
| <option>USDJPY</option> | |
| </select> | |
| <select class="glass-effect rounded-lg px-3 py-2 text-sm bg-transparent outline-none"> | |
| <option>Últimas 24h</option> | |
| <option>Últimos 7 días</option> | |
| <option>Últimos 30 días</option> | |
| </select> | |
| </div> | |
| </div> | |
| <div class="overflow-x-auto"> | |
| <table class="w-full"> | |
| <thead> | |
| <tr class="border-b border-gray-800"> | |
| <th class="text-left py-3 px-4 text-gray-400 font-medium">ID</th> | |
| <th class="text-left py-3 px-4 text-gray-400 font-medium">Símbolo</th> | |
| <th class="text-left py-3 px-4 text-gray-400 font-medium">Tipo</th> | |
| <th class="text-left py-3 px-4 text-gray-400 font-medium">Entrada</th> | |
| <th class="text-left py-3 px-4 text-gray-400 font-medium">Salida</th> | |
| <th class="text-left py-3 px-4 text-gray-400 font-medium">P&L</th> | |
| <th class="text-left py-3 px-4 text-gray-400 font-medium">Confianza</th> | |
| <th class="text-left py-3 px-4 text-gray-400 font-medium">Estado</th> | |
| <th class="text-left py-3 px-4 text-gray-400 font-medium">Tiempo</th> | |
| </tr> | |
| </thead> | |
| <tbody id="signalHistory"> | |
| <!-- Dynamic content --> | |
| </tbody> | |
| </table> | |
| </div> | |
| </div> | |
| </div> | |
| </main> | |
| <script> | |
| </script> | |
| </body> | |
| </html> | |