Astock / templates /index.html
fiewolf1000's picture
Create templates/index.html
c2b2703 verified
<!DOCTYPE html>
<html>
<head>
<title>上证指数预测</title>
<style>
body { max-width: 1200px; margin: 0 auto; padding: 20px; font-family: "WenQuanYi Micro Hei", Arial; }
.metric { margin: 20px 0; padding: 10px; background: #f5f5f5; border-radius: 5px; }
.metric-value { font-size: 1.2em; color: #0066cc; }
img { max-width: 100%; height: auto; }
h1 { color: #333; }
</style>
</head>
<body>
<h1>清华大学Kronos股票K线大模型上证指数概率预测(未来24个交易日)</h1>
<p>最后更新时间:{{ update_time }}</p>
<p>同步网站:<a href="http://15115656.top" target="_blank">火狼工具站</a></p>
<div class="metric">
<p>24个交易日上涨概率:<span class="metric-value">{{ upside_prob }}%</span></p>
</div>
<div class="metric">
<p>波动率放大概率:<span class="metric-value">{{ vol_amp_prob }}%</span></p>
</div>
<div><img src="/prediction_chart.png" alt="预测图表"></div>
</body>
</html>