|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Quantum Alpha - AI Stock Recommender</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<script> |
|
tailwind.config = { |
|
theme: { |
|
extend: { |
|
colors: { |
|
quantum: { |
|
blue: '#0f172a', |
|
teal: '#0d9488', |
|
light: '#e2e8f0', |
|
accent: '#7c3aed' |
|
} |
|
} |
|
} |
|
} |
|
} |
|
</script> |
|
<style> |
|
.gradient-bg { |
|
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); |
|
} |
|
.pulse-animation { |
|
animation: pulse 2s infinite; |
|
} |
|
@keyframes pulse { |
|
0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7); } |
|
70% { box-shadow: 0 0 0 10px rgba(13, 148, 136, 0); } |
|
100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); } |
|
} |
|
.news-card:hover { |
|
transform: translateY(-5px); |
|
transition: all 0.3s ease; |
|
} |
|
.ticker-tape { |
|
animation: ticker 30s linear infinite; |
|
} |
|
@keyframes ticker { |
|
0% { transform: translateX(100%); } |
|
100% { transform: translateX(-100%); } |
|
} |
|
</style> |
|
</head> |
|
<body class="bg-gray-100 font-sans"> |
|
|
|
<header class="gradient-bg text-white shadow-lg"> |
|
<div class="container mx-auto px-4 py-6"> |
|
<div class="flex justify-between items-center"> |
|
<div class="flex items-center space-x-2"> |
|
<i class="fas fa-chart-line text-3xl text-quantum-teal"></i> |
|
<h1 class="text-2xl font-bold">Quantum<span class="text-quantum-teal">Alpha</span></h1> |
|
</div> |
|
<div class="hidden md:flex space-x-6"> |
|
<a href="#" class="hover:text-quantum-teal transition">Dashboard</a> |
|
<a href="#" class="hover:text-quantum-teal transition">Portfolio</a> |
|
<a href="#" class="hover:text-quantum-teal transition">Research</a> |
|
<a href="#" class="hover:text-quantum-teal transition">Alerts</a> |
|
</div> |
|
<div class="flex items-center space-x-4"> |
|
<button class="bg-quantum-teal hover:bg-teal-700 px-4 py-2 rounded-lg font-medium transition"> |
|
<i class="fas fa-user mr-2"></i>Sign In |
|
</button> |
|
<button class="md:hidden"> |
|
<i class="fas fa-bars text-xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</header> |
|
|
|
|
|
<div class="bg-quantum-blue text-white py-2 overflow-hidden"> |
|
<div class="container mx-auto px-4"> |
|
<div class="flex items-center"> |
|
<span class="font-bold mr-4 whitespace-nowrap">MARKET PULSE:</span> |
|
<div class="ticker-tape whitespace-nowrap"> |
|
<span class="mr-8">NASDAQ: <span class="text-green-400">+1.2%</span></span> |
|
<span class="mr-8">DOW: <span class="text-red-400">-0.3%</span></span> |
|
<span class="mr-8">S&P 500: <span class="text-green-400">+0.8%</span></span> |
|
<span class="mr-8">BTC: <span class="text-green-400">$42,156 +5.3%</span></span> |
|
<span class="mr-8">10Y Yield: 4.12%</span> |
|
<span class="mr-8">VIX: 16.2</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<main class="container mx-auto px-4 py-8"> |
|
|
|
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8"> |
|
|
|
<div class="lg:col-span-2 bg-white rounded-xl shadow-lg p-6"> |
|
<div class="flex justify-between items-center mb-6"> |
|
<h2 class="text-xl font-bold text-quantum-blue"> |
|
<i class="fas fa-robot text-quantum-teal mr-2"></i>AI Stock Recommendations |
|
</h2> |
|
<div class="flex space-x-2"> |
|
<button class="bg-quantum-light hover:bg-gray-200 px-3 py-1 rounded-lg text-sm transition">1D</button> |
|
<button class="bg-quantum-teal text-white px-3 py-1 rounded-lg text-sm transition">1W</button> |
|
<button class="bg-quantum-light hover:bg-gray-200 px-3 py-1 rounded-lg text-sm transition">1M</button> |
|
<button class="bg-quantum-light hover:bg-gray-200 px-3 py-1 rounded-lg text-sm transition">1Y</button> |
|
</div> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-4"> |
|
|
|
<div class="border border-quantum-teal rounded-lg p-4 pulse-animation"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="font-bold text-lg">$NVDA</h3> |
|
<p class="text-gray-600 text-sm">NVIDIA Corporation</p> |
|
</div> |
|
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs font-bold">STRONG BUY</span> |
|
</div> |
|
<div class="mt-4"> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Current Price:</span> |
|
<span class="font-bold">$890.42 <span class="text-green-500">(+2.4%)</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Target Price:</span> |
|
<span class="font-bold">$1,025.00 <span class="text-green-500">(+15.1%)</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>Confidence:</span> |
|
<div class="w-3/4 bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-quantum-teal h-2.5 rounded-full" style="width: 92%"></div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="mt-4 pt-3 border-t border-gray-200"> |
|
<p class="text-xs text-gray-600">"AI chip demand surge + data center expansion + upcoming GTC conference catalyst"</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="border border-gray-200 rounded-lg p-4 hover:border-quantum-teal transition"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="font-bold text-lg">$PLTR</h3> |
|
<p class="text-gray-600 text-sm">Palantir Technologies</p> |
|
</div> |
|
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs font-bold">BUY</span> |
|
</div> |
|
<div class="mt-4"> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Current Price:</span> |
|
<span class="font-bold">$24.56 <span class="text-green-500">(+3.1%)</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Target Price:</span> |
|
<span class="font-bold">$30.00 <span class="text-green-500">(+22.1%)</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>Confidence:</span> |
|
<div class="w-3/4 bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-quantum-teal h-2.5 rounded-full" style="width: 78%"></div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="mt-4 pt-3 border-t border-gray-200"> |
|
<p class="text-xs text-gray-600">"Government contracts expanding + AIP adoption accelerating"</p> |
|
</div> |
|
</div> |
|
|
|
<div class="border border-gray-200 rounded-lg p-4 hover:border-quantum-teal transition"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="font-bold text-lg">$ASTS</h3> |
|
<p class="text-gray-600 text-sm">AST SpaceMobile</p> |
|
</div> |
|
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs font-bold">SPECULATIVE</span> |
|
</div> |
|
<div class="mt-4"> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Current Price:</span> |
|
<span class="font-bold">$3.42 <span class="text-red-500">(-1.2%)</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Target Price:</span> |
|
<span class="font-bold">$8.00 <span class="text-green-500">(+133.9%)</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>Confidence:</span> |
|
<div class="w-3/4 bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-quantum-teal h-2.5 rounded-full" style="width: 65%"></div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="mt-4 pt-3 border-t border-gray-200"> |
|
<p class="text-xs text-gray-600">"Space-based cellular network potential + upcoming satellite launch"</p> |
|
</div> |
|
</div> |
|
|
|
<div class="border border-gray-200 rounded-lg p-4 hover:border-quantum-teal transition"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="font-bold text-lg">$XOM</h3> |
|
<p class="text-gray-600 text-sm">Exxon Mobil</p> |
|
</div> |
|
<span class="bg-yellow-100 text-yellow-800 px-2 py-1 rounded text-xs font-bold">HOLD</span> |
|
</div> |
|
<div class="mt-4"> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Current Price:</span> |
|
<span class="font-bold">$112.34 <span class="text-red-500">(-0.8%)</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Target Price:</span> |
|
<span class="font-bold">$118.00 <span class="text-green-500">(+5.0%)</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>Confidence:</span> |
|
<div class="w-3/4 bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-quantum-teal h-2.5 rounded-full" style="width: 58%"></div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="mt-4 pt-3 border-t border-gray-200"> |
|
<p class="text-xs text-gray-600">"Oil prices stabilizing + dividend safety"</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-xl shadow-lg p-6"> |
|
<h2 class="text-xl font-bold text-quantum-blue mb-6"> |
|
<i class="fas fa-chart-pie text-quantum-teal mr-2"></i>Market Sentiment |
|
</h2> |
|
|
|
<div class="space-y-4"> |
|
<div> |
|
<div class="flex justify-between mb-1"> |
|
<span class="text-sm font-medium">Bullish</span> |
|
<span class="text-sm font-medium">62%</span> |
|
</div> |
|
<div class="w-full bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-green-500 h-2.5 rounded-full" style="width: 62%"></div> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<div class="flex justify-between mb-1"> |
|
<span class="text-sm font-medium">Neutral</span> |
|
<span class="text-sm font-medium">25%</span> |
|
</div> |
|
<div class="w-full bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-yellow-500 h-2.5 rounded-full" style="width: 25%"></div> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<div class="flex justify-between mb-1"> |
|
<span class="text-sm font-medium">Bearish</span> |
|
<span class="text-sm font-medium">13%</span> |
|
</div> |
|
<div class="w-full bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-red-500 h-2.5 rounded-full" style="width: 13%"></div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-6 pt-4 border-t border-gray-200"> |
|
<h3 class="font-bold mb-2">Key Macro Indicators</h3> |
|
<div class="space-y-3"> |
|
<div class="flex justify-between text-sm"> |
|
<span>Inflation (CPI):</span> |
|
<span class="font-medium">3.2% <span class="text-green-500">↓ 0.2%</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>Unemployment:</span> |
|
<span class="font-medium">3.7% <span class="text-red-500">↑ 0.1%</span></span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>Fed Rate Prob:</span> |
|
<span class="font-medium">65% Cut by June</span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>GDP Growth:</span> |
|
<span class="font-medium">2.1% (Q4)</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-6 pt-4 border-t border-gray-200"> |
|
<h3 class="font-bold mb-2">Sector Rotation</h3> |
|
<div class="flex flex-wrap gap-2"> |
|
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs">Tech +2.4%</span> |
|
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs">Semis +3.1%</span> |
|
<span class="bg-red-100 text-red-800 px-2 py-1 rounded text-xs">Energy -1.2%</span> |
|
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">Healthcare +0.8%</span> |
|
<span class="bg-red-100 text-red-800 px-2 py-1 rounded text-xs">Financials -0.5%</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8"> |
|
|
|
<div class="bg-white rounded-xl shadow-lg p-6"> |
|
<h2 class="text-xl font-bold text-quantum-blue mb-6"> |
|
<i class="fas fa-lock text-quantum-teal mr-2"></i>Pre-IPO Watchlist |
|
</h2> |
|
|
|
<div class="space-y-4"> |
|
<div class="border border-gray-200 rounded-lg p-4 hover:border-quantum-accent transition"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="font-bold">Stripe</h3> |
|
<p class="text-gray-600 text-sm">Payments Infrastructure</p> |
|
</div> |
|
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs font-bold">HOT</span> |
|
</div> |
|
<div class="mt-3"> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Last Valuation:</span> |
|
<span class="font-bold">$50B</span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>Expected IPO:</span> |
|
<span class="font-bold">Q2 2024</span> |
|
</div> |
|
</div> |
|
<div class="mt-3 pt-3 border-t border-gray-200"> |
|
<p class="text-xs text-gray-600">"Revenue growth accelerating to 60% YoY, profitability improving"</p> |
|
</div> |
|
</div> |
|
|
|
<div class="border border-gray-200 rounded-lg p-4 hover:border-quantum-accent transition"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="font-bold">Databricks</h3> |
|
<p class="text-gray-600 text-sm">Data & AI Platform</p> |
|
</div> |
|
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs font-bold">WARM</span> |
|
</div> |
|
<div class="mt-3"> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Last Valuation:</span> |
|
<span class="font-bold">$43B</span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>Expected IPO:</span> |
|
<span class="font-bold">H2 2024</span> |
|
</div> |
|
</div> |
|
<div class="mt-3 pt-3 border-t border-gray-200"> |
|
<p class="text-xs text-gray-600">"AI-driven growth with 70%+ revenue increase last quarter"</p> |
|
</div> |
|
</div> |
|
|
|
<div class="border border-gray-200 rounded-lg p-4 hover:border-quantum-accent transition"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="font-bold">SpaceX</h3> |
|
<p class="text-gray-600 text-sm">Aerospace</p> |
|
</div> |
|
<span class="bg-yellow-100 text-yellow-800 px-2 py-1 rounded text-xs font-bold">COOL</span> |
|
</div> |
|
<div class="mt-3"> |
|
<div class="flex justify-between text-sm mb-1"> |
|
<span>Last Valuation:</span> |
|
<span class="font-bold">$180B</span> |
|
</div> |
|
<div class="flex justify-between text-sm"> |
|
<span>Expected IPO:</span> |
|
<span class="font-bold">Starlink 2025</span> |
|
</div> |
|
</div> |
|
<div class="mt-3 pt-3 border-t border-gray-200"> |
|
<p class="text-xs text-gray-600">"Starlink nearing profitability, Starship development progressing"</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<button class="w-full mt-4 bg-quantum-light hover:bg-gray-200 text-quantum-blue font-medium py-2 px-4 rounded-lg transition"> |
|
View All Pre-IPO Opportunities |
|
</button> |
|
</div> |
|
|
|
|
|
<div class="lg:col-span-2 bg-white rounded-xl shadow-lg p-6"> |
|
<div class="flex justify-between items-center mb-6"> |
|
<h2 class="text-xl font-bold text-quantum-blue"> |
|
<i class="fas fa-newspaper text-quantum-teal mr-2"></i>Market-Moving News |
|
</h2> |
|
<div class="relative"> |
|
<select class="appearance-none bg-quantum-light border border-gray-300 text-quantum-blue py-1 px-3 pr-8 rounded-lg focus:outline-none focus:border-quantum-teal"> |
|
<option>All Categories</option> |
|
<option>Earnings</option> |
|
<option>M&A</option> |
|
<option>Regulatory</option> |
|
<option>Macro</option> |
|
</select> |
|
<div class="pointer-events-none absolute inset-y-0 right-0 flex items-center px-2 text-gray-700"> |
|
<i class="fas fa-chevron-down text-sm"></i> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-4"> |
|
|
|
<div class="news-card border border-gray-200 rounded-lg p-4 hover:shadow-md transition cursor-pointer"> |
|
<div class="flex items-center mb-2"> |
|
<span class="bg-red-100 text-red-800 px-2 py-1 rounded text-xs font-bold mr-2">BREAKING</span> |
|
<span class="text-xs text-gray-500">2 min ago</span> |
|
</div> |
|
<h3 class="font-bold mb-2">Fed Chair Powell Signals Rate Cuts Likely Later This Year</h3> |
|
<p class="text-sm text-gray-600 mb-3">"We're waiting to become more confident that inflation is moving sustainably at 2%," Powell tells Senate panel.</p> |
|
<div class="flex justify-between items-center text-xs text-gray-500"> |
|
<span>CNBC</span> |
|
<span class="text-quantum-teal font-medium">Market Impact: High</span> |
|
</div> |
|
</div> |
|
|
|
<div class="news-card border border-gray-200 rounded-lg p-4 hover:shadow-md transition cursor-pointer"> |
|
<div class="flex items-center mb-2"> |
|
<span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs font-bold mr-2">TECH</span> |
|
<span class="text-xs text-gray-500">45 min ago</span> |
|
</div> |
|
<h3 class="font-bold mb-2">Nvidia Announces Next-Gen AI Chips at GTC Conference</h3> |
|
<p class="text-sm text-gray-600 mb-3">New Blackwell architecture promises 5x performance for LLM training at same power consumption.</p> |
|
<div class="flex justify-between items-center text-xs text-gray-500"> |
|
<span>The Verge</span> |
|
<span class="text-quantum-teal font-medium">Market Impact: Sector-Wide</span> |
|
</div> |
|
</div> |
|
|
|
<div class="news-card border border-gray-200 rounded-lg p-4 hover:shadow-md transition cursor-pointer"> |
|
<div class="flex items-center mb-2"> |
|
<span class="bg-green-100 text-green-800 px-2 py-1 rounded text-xs font-bold mr-2">EARNINGS</span> |
|
<span class="text-xs text-gray-500">1 hour ago</span> |
|
</div> |
|
<h3 class="font-bold mb-2">Tesla Q1 Deliveries Beat Estimates Despite Demand Concerns</h3> |
|
<p class="text-sm text-gray-600 mb-3">Company delivers 485K vehicles vs 420K expected, shares up 8% in pre-market.</p> |
|
<div class="flex justify-between items-center text-xs text-gray-500"> |
|
<span>Bloomberg</span> |
|
<span class="text-quantum-teal font-medium">Market Impact: Moderate</span> |
|
</div> |
|
</div> |
|
|
|
<div class="news-card border border-gray-200 rounded-lg p-4 hover:shadow-md transition cursor-pointer"> |
|
<div class="flex items-center mb-2"> |
|
<span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs font-bold mr-2">M&A</span> |
|
<span class="text-xs text-gray-500">3 hours ago</span> |
|
</div> |
|
<h3 class="font-bold mb-2">Disney and Reliance Finalize $8.5B India Media Merger</h3> |
|
<p class="text-sm text-gray-600 mb-3">Combination creates India's largest media conglomerate with 40% market share.</p> |
|
<div class="flex justify-between items-center text-xs text-gray-500"> |
|
<span>WSJ</span> |
|
<span class="text-quantum-teal font-medium">Market Impact: Selective</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<button class="w-full mt-6 bg-quantum-light hover:bg-gray-200 text-quantum-blue font-medium py-2 px-4 rounded-lg transition"> |
|
Load More Market News |
|
</button> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-white rounded-xl shadow-lg p-6 mb-8"> |
|
<h2 class="text-xl font-bold text-quantum-blue mb-6"> |
|
<i class="fas fa-chart-line text-quantum-teal mr-2"></i>Advanced Analytics |
|
</h2> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4"> |
|
<div class="border border-gray-200 rounded-lg p-4"> |
|
<div class="flex items-center mb-2"> |
|
<div class="p-2 bg-blue-100 rounded-lg mr-3"> |
|
<i class="fas fa-bolt text-blue-600"></i> |
|
</div> |
|
<div> |
|
<p class="text-xs text-gray-500">Momentum Score</p> |
|
<h3 class="font-bold">87/100</h3> |
|
</div> |
|
</div> |
|
<p class="text-xs text-gray-600 mt-2">Market momentum remains strong, led by tech and growth stocks.</p> |
|
</div> |
|
|
|
<div class="border border-gray-200 rounded-lg p-4"> |
|
<div class="flex items-center mb-2"> |
|
<div class="p-2 bg-green-100 rounded-lg mr-3"> |
|
<i class="fas fa-arrow-trend-up text-green-600"></i> |
|
</div> |
|
<div> |
|
<p class="text-xs text-gray-500">Earnings Surprise</p> |
|
<h3 class="font-bold">+5.2%</h3> |
|
</div> |
|
</div> |
|
<p class="text-xs text-gray-600 mt-2">73% of S&P 500 companies beat estimates this quarter.</p> |
|
</div> |
|
|
|
<div class="border border-gray-200 rounded-lg p-4"> |
|
<div class="flex items-center mb-2"> |
|
<div class="p-2 bg-purple-100 rounded-lg mr-3"> |
|
<i class="fas fa-people-arrows text-purple-600"></i> |
|
</div> |
|
<div> |
|
<p class="text-xs text-gray-500">Retail Sentiment</p> |
|
<h3 class="font-bold">Bullish</h3> |
|
</div> |
|
</div> |
|
<p class="text-xs text-gray-600 mt-2">Retail investors net buyers of tech and crypto-related stocks.</p> |
|
</div> |
|
|
|
<div class="border border-gray-200 rounded-lg p-4"> |
|
<div class="flex items-center mb-2"> |
|
<div class="p-2 bg-teal-100 rounded-lg mr-3"> |
|
<i class="fas fa-robot text-teal-600"></i> |
|
</div> |
|
<div> |
|
<p class="text-xs text-gray-500">AI Signal Strength</p> |
|
<h3 class="font-bold">92/100</h3> |
|
</div> |
|
</div> |
|
<p class="text-xs text-gray-600 mt-2">AI-related stocks show strongest quantitative signals.</p> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-6 grid grid-cols-1 lg:grid-cols-2 gap-6"> |
|
<div> |
|
<h3 class="font-bold mb-3">Unusual Options Activity</h3> |
|
<div class="border border-gray-200 rounded-lg overflow-hidden"> |
|
<table class="min-w-full divide-y divide-gray-200"> |
|
<thead class="bg-gray-50"> |
|
<tr> |
|
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">Symbol</th> |
|
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">Strike</th> |
|
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">Expiry</th> |
|
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">Activity</th> |
|
</tr> |
|
</thead> |
|
<tbody class="bg-white divide-y divide-gray-200"> |
|
<tr> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm font-medium text-gray-900">TSLA</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">$250</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">4/19</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-green-500">10,000 Calls Bought</td> |
|
</tr> |
|
<tr> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm font-medium text-gray-900">META</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">$600</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">6/21</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-green-500">5,000 Calls Bought</td> |
|
</tr> |
|
<tr> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm font-medium text-gray-900">SPY</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">$520</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">5/17</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-red-500">15,000 Puts Bought</td> |
|
</tr> |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<h3 class="font-bold mb-3">Short Interest Leaders</h3> |
|
<div class="border border-gray-200 rounded-lg overflow-hidden"> |
|
<table class="min-w-full divide-y divide-gray-200"> |
|
<thead class="bg-gray-50"> |
|
<tr> |
|
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">Symbol</th> |
|
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">% Float</th> |
|
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">Days to Cover</th> |
|
<th class="px-4 py-2 text-left text-xs font-medium text-gray-500 uppercase">Price</th> |
|
</tr> |
|
</thead> |
|
<tbody class="bg-white divide-y divide-gray-200"> |
|
<tr> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm font-medium text-gray-900">GME</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">24.3%</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">5.2</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-red-500">$12.45 (-3.2%)</td> |
|
</tr> |
|
<tr> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm font-medium text-gray-900">BYND</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">38.7%</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">7.8</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-green-500">$8.23 (+1.5%)</td> |
|
</tr> |
|
<tr> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm font-medium text-gray-900">CVNA</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">32.1%</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-gray-500">4.5</td> |
|
<td class="px-4 py-2 whitespace-nowrap text-sm text-green-500">$56.78 (+2.1%)</td> |
|
</tr> |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</main> |
|
|
|
|
|
<footer class="gradient-bg text-white py-8"> |
|
<div class="container mx-auto px-4"> |
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
|
<div> |
|
<h3 class="text-lg font-bold mb-4">QuantumAlpha</h3> |
|
<p class="text-sm text-quantum-light">Advanced AI-driven investment research and stock recommendation platform.</p> |
|
</div> |
|
<div> |
|
<h3 class="font-bold mb-4">Resources</h3> |
|
<ul class="space-y-2 text-sm text-quantum-light"> |
|
<li><a href="#" class="hover:text-quantum-teal transition">Research Reports</a></li> |
|
<li><a href="#" class="hover:text-quantum-teal transition">Market Data</a></li> |
|
<li><a href="#" class="hover:text-quantum-teal transition">Webinars</a></li> |
|
<li><a href="#" class="hover:text-quantum-teal transition">API Access</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="font-bold mb-4">Company</h3> |
|
<ul class="space-y-2 text-sm text-quantum-light"> |
|
<li><a href="#" class="hover:text-quantum-teal transition">About Us</a></li> |
|
<li><a href="#" class="hover:text-quantum-teal transition">Careers</a></li> |
|
<li><a href="#" class="hover:text-quantum-teal transition">Press</a></li> |
|
<li><a href="#" class="hover:text-quantum-teal transition">Contact</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="font-bold mb-4">Legal</h3> |
|
<ul class="space-y-2 text-sm text-quantum-light"> |
|
<li><a href="#" class="hover:text-quantum-teal transition">Terms of Service</a></li> |
|
<li><a href="#" class="hover:text-quantum-teal transition">Privacy Policy</a></li> |
|
<li><a href="#" class="hover:text-quantum-teal transition">Disclosures</a></li> |
|
<li><a href="#" class="hover:text-quantum-teal transition">SEC Filings</a></li> |
|
</ul> |
|
</div> |
|
</div> |
|
<div class="border-t border-gray-700 mt-8 pt-6 flex flex-col md:flex-row justify-between items-center"> |
|
<p class="text-sm text-quantum-light mb-4 md:mb-0">© 2024 QuantumAlpha. All rights reserved.</p> |
|
<div class="flex space-x-4"> |
|
<a href="#" class="text-quantum-light hover:text-quantum-teal transition"><i class="fab fa-twitter"></i></a> |
|
<a href="#" class="text-quantum-light hover:text-quantum-teal transition"><i class="fab fa-linkedin"></i></a> |
|
<a href="#" class="text-quantum-light hover:text-quantum-teal transition"><i class="fab fa-youtube"></i></a> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
const stocks = [ |
|
{ symbol: 'NVDA', name: 'NVIDIA Corporation', price: 890.42, change: 2.4, target: 1025, confidence: 92 }, |
|
{ symbol: 'PLTR', name: 'Palantir Technologies', price: 24.56, change: 3.1, target: 30, confidence: 78 }, |
|
{ symbol: 'ASTS', name: 'AST SpaceMobile', price: 3.42, change: -1.2, target: 8, confidence: 65 }, |
|
{ symbol: 'XOM', name: 'Exxon Mobil', price: 112.34, change: -0.8, target: 118, confidence: 58 } |
|
]; |
|
|
|
|
|
function updateStockCards() { |
|
const stockCards = document.querySelectorAll('[data-stock-card]'); |
|
|
|
stockCards.forEach((card, index) => { |
|
const stock = stocks[index]; |
|
const priceElement = card.querySelector('[data-price]'); |
|
const changeElement = card.querySelector('[data-change]'); |
|
const targetElement = card.querySelector('[data-target]'); |
|
const confidenceBar = card.querySelector('[data-confidence-bar]'); |
|
|
|
|
|
const randomChange = (Math.random() * 2 - 1) * 0.5; |
|
const newPrice = stock.price * (1 + randomChange / 100); |
|
const newChange = stock.change + randomChange; |
|
|
|
priceElement.textContent = `$${newPrice.toFixed(2)}`; |
|
changeElement.textContent = `(${newChange > 0 ? '+' : ''}${newChange.toFixed(1)}%)`; |
|
changeElement.className = `font-bold ${newChange > 0 ? 'text-green-500' : 'text-red-500'}`; |
|
targetElement.textContent = `$${stock.target.toFixed(2)} (${((stock.target / newPrice - 1) * 100).toFixed(1)}%)`; |
|
confidenceBar.style.width = `${stock.confidence}%`; |
|
}); |
|
|
|
|
|
setTimeout(updateStockCards, 5000); |
|
} |
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
updateStockCards(); |
|
|
|
|
|
setInterval(() => { |
|
const newsTimes = document.querySelectorAll('[data-news-time]'); |
|
newsTimes.forEach(time => { |
|
const minutes = Math.floor(Math.random() * 60); |
|
time.textContent = `${minutes} min ago`; |
|
}); |
|
}, 60000); |
|
}); |
|
</script> |
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=OG-Clevery/non-functioning-prototype-finance" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |