File size: 42,300 Bytes
bb60f9b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 |
<!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 -->
<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>
<!-- Live Ticker -->
<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 Content -->
<main class="container mx-auto px-4 py-8">
<!-- Dashboard Overview -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8">
<!-- AI Recommendation Engine -->
<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">
<!-- Top Recommendation -->
<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>
<!-- Other Recommendations -->
<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>
<!-- Market Sentiment -->
<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>
<!-- Pre-IPO & News Section -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8">
<!-- Pre-IPO Opportunities -->
<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>
<!-- News & Events -->
<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">
<!-- News Cards -->
<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>
<!-- Advanced Analytics -->
<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 -->
<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>
// Sample data for demonstration
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 to update stock cards
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]');
// Simulate price change
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}%`;
});
// Update every 5 seconds
setTimeout(updateStockCards, 5000);
}
// Initialize
document.addEventListener('DOMContentLoaded', function() {
updateStockCards();
// Simulate live news updates
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> |