Premium Features

📊

TradingView Alerts

Instant notifications directly in your TradingView account

📈

~15 Weekly Signals

High-probability trading opportunities every week

💎

Lifetime Access

One-time payment, no recurring fees

73.2% Win Rate

Proven track record with verified results

(function() { console.log('🔊 Login page: Setting up notification sound handler'); // Load user's saved sound preference const savedSound = localStorage.getItem('notificationSound') || '1'; const audioSource = document.getElementById('notificationSoundSource'); if (audioSource) { audioSource.src = `/notification-sound-${savedSound}.mp3`; document.getElementById('notificationSound').load(); console.log('🔊 Loaded saved sound:', savedSound); } // Listen for service worker messages (push notifications) if ('serviceWorker' in navigator) { navigator.serviceWorker.addEventListener('message', (event) => { console.log('📨 Login page received message from service worker:', event.data); if (event.data && event.data.type === 'PLAY_NOTIFICATION_SOUND') { console.log('🔔 Playing notification sound on login page'); // Check if sound is enabled const soundEnabled = localStorage.getItem('soundEnabled'); if (soundEnabled === 'false') { console.log('🔇 Sound disabled - skipping playback'); return; } // Play the sound const audio = document.getElementById('notificationSound'); if (audio) { audio.currentTime = 0; audio.play() .then(() => console.log('✅ Sound played successfully on login page')) .catch(err => console.log('⚠️ Sound play failed:', err.message)); } } }); console.log('✅ Service worker message listener added to login page'); } })();