Files
2026FIFAWorldCup/public/professional-dashboard.html

76 lines
2.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>2026 世界盃專業投注研究台 | 專業儀表</title>
<link rel="stylesheet" href="style.css" />
</head>
<body data-page="dashboard">
<header>
<div class="top-nav">
<a href="index.html" class="nav-brand">2026FIFA Betting Ops</a>
<a href="index.html">總覽</a>
<a href="analysis.html">賽事分析</a>
<a href="matches.html">比賽總表</a>
<a href="professional-dashboard.html">專業儀表</a>
<a href="upsets.html">爆冷觀察</a>
<a href="quantitative.html">量化模型</a>
<a href="sources.html">外部台帳</a>
<a href="portfolio.html">投注紀錄</a>
</div>
<div class="page">
<div class="hero">
<h1>跨平臺賠率矩陣儀表</h1>
<p>整合賠率、資金流、即時比賽數據並即時視覺化支援台北時間UTC+8更新。</p>
</div>
<div class="actions">
<button id="btnRefresh">更新核心模組</button>
<button id="btnAnalyze">重算策略</button>
</div>
<div id="status" class="status"></div>
</div>
</header>
<main class="page">
<section>
<h2>賠率矩陣1X2 / 讓球 / 大小球 / BTTS</h2>
<div id="marketMatrixSummary" class="grid"></div>
<div id="marketMatrixRows" class="grid market-matrix-grid"></div>
</section>
<section>
<h2>Public vs Sharp 資金流向監控</h2>
<div id="sharpMoneyBoard" class="grid"></div>
</section>
<section>
<h2>即時賽事中心</h2>
<div class="grid">
<article class="card">
<h3>進行中場次快照</h3>
<div id="liveCenterBoard"></div>
</article>
<article class="card">
<h3>走勢資料</h3>
<div id="lineMovementBoard"></div>
</article>
</div>
</section>
<section>
<h2>方法論</h2>
<div class="card">
<ul>
<li>市場矩陣:逐賠率對比分析每場最佳賠率與盤口差,標記可套利信號。</li>
<li>公共 vs Sharp以票量與資金比例差異辨識可能的價值偏離與風險方向。</li>
<li>即時快照:採取 xG 軌跡、控球、事件序列對市場臨場偏移做補盲。</li>
</ul>
</div>
</section>
</main>
<script src="app.js"></script>
</body>
</html>