Files
2026FIFAWorldCup/public/quantitative.html

61 lines
1.9 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="quantitative">
<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>以 EV / Poisson / Monte Carlo / Sharpe 風險觀點整合賽前、賽中投注建議。</p>
</div>
<div class="actions">
<button id="btnRefresh">更新資料</button>
<button id="btnRefreshQuant">重算量化模型</button>
</div>
<div id="status" class="status"></div>
</div>
</header>
<main class="page">
<section>
<h2>主題篩選</h2>
<div class="analysis-toolbar">
<label>
分場次檢視
<select id="quantMatchSelect"></select>
</label>
</div>
<div id="quantSummary" class="grid"></div>
</section>
<section>
<h2>全球場次高價值投注EV</h2>
<div id="quantValuePanel" class="playbook-grid grid"></div>
</section>
<section>
<h2>場次量化洞察</h2>
<div id="quantMatchPanel"></div>
</section>
</main>
<script src="app.js"></script>
</body>
</html>