Spaces:
Running
Running
Create templates/index.html
Browse files- templates/index.html +25 -0
templates/index.html
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>上证指数预测</title>
|
| 5 |
+
<style>
|
| 6 |
+
body { max-width: 1200px; margin: 0 auto; padding: 20px; font-family: "WenQuanYi Micro Hei", Arial; }
|
| 7 |
+
.metric { margin: 20px 0; padding: 10px; background: #f5f5f5; border-radius: 5px; }
|
| 8 |
+
.metric-value { font-size: 1.2em; color: #0066cc; }
|
| 9 |
+
img { max-width: 100%; height: auto; }
|
| 10 |
+
h1 { color: #333; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<h1>清华大学Kronos股票K线大模型上证指数概率预测(未来24个交易日)</h1>
|
| 15 |
+
<p>最后更新时间:{{ update_time }}</p>
|
| 16 |
+
<p>同步网站:<a href="http://15115656.top" target="_blank">火狼工具站</a></p>
|
| 17 |
+
<div class="metric">
|
| 18 |
+
<p>24个交易日上涨概率:<span class="metric-value">{{ upside_prob }}%</span></p>
|
| 19 |
+
</div>
|
| 20 |
+
<div class="metric">
|
| 21 |
+
<p>波动率放大概率:<span class="metric-value">{{ vol_amp_prob }}%</span></p>
|
| 22 |
+
</div>
|
| 23 |
+
<div><img src="/prediction_chart.png" alt="预测图表"></div>
|
| 24 |
+
</body>
|
| 25 |
+
</html>
|