-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththree-factor-strategy.html
More file actions
122 lines (112 loc) · 4.8 KB
/
three-factor-strategy.html
File metadata and controls
122 lines (112 loc) · 4.8 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6; color: #333; max-width: 1000px; margin: 0 auto; padding: 20px; }
h1 { color: #e74c3c; text-align: center; border-bottom: 3px solid #e74c3c; padding-bottom: 15px; }
.subtitle { text-align: center; color: #666; margin-bottom: 30px; }
table { width: 100%; border-collapse: collapse; margin: 20px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
th { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white;
padding: 14px 12px; text-align: center; font-weight: 600; font-size: 14px; }
td { padding: 12px; text-align: center; border-bottom: 1px solid #eee; font-size: 13px; }
tr:nth-child(even) { background-color: #f8f9fa; }
tr:hover { background-color: #e3f2fd; transition: background-color 0.3s; }
.code { font-family: 'Courier New', monospace; font-weight: bold; color: #1976d2; }
.name { font-weight: 600; color: #333; }
.score { font-weight: bold; color: #e74c3c; font-size: 15px; }
.lhb { color: #ff9800; font-weight: 600; }
.zt { color: #4caf50; font-weight: 600; }
.trend { color: #9c27b0; font-weight: 600; }
.industry { color: #666; font-size: 12px; }
.summary { background: #e8f5e9; padding: 15px; border-radius: 8px; margin-top: 20px;
text-align: center; font-size: 16px; font-weight: 600; color: #2e7d32; }
.footer { text-align: center; color: #999; font-size: 12px; margin-top: 30px; padding-top: 20px;
border-top: 1px solid #eee; }
</style>
</head>
<body>
<h1>📊 三因子策略 - 选股结果</h1>
<p class="subtitle">统计日期:2026-04-03 | 统计区间:20260314 - 20260403 | 更新时间:2026-04-03 08:03:04</p>
<table>
<thead>
<tr>
<th>排名</th>
<th>代码</th>
<th>名称</th>
<th>龙虎榜次数</th>
<th>连涨天数</th>
<th>趋势涨幅</th>
<th>近20日涨停</th>
<th>所属行业</th>
<th>综合评分</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>#1</strong></td>
<td class="code">000070</td>
<td class="name">特发信息</td>
<td class="lhb">3</td>
<td>5天</td>
<td class="trend">24.49%</td>
<td class="zt">2</td>
<td class="industry">通信设备</td>
<td class="score">29</td>
</tr>
<tr>
<td><strong>#2</strong></td>
<td class="code">002730</td>
<td class="name">电光科技</td>
<td class="lhb">5</td>
<td>3天</td>
<td class="trend">20.81%</td>
<td class="zt">1</td>
<td class="industry">专用设备</td>
<td class="score">26</td>
</tr>
<tr>
<td><strong>#3</strong></td>
<td class="code">002788</td>
<td class="name">鹭燕医药</td>
<td class="lhb">3</td>
<td>5天</td>
<td class="trend">27.35%</td>
<td class="zt">1</td>
<td class="industry">医药商业</td>
<td class="score">24</td>
</tr>
<tr>
<td><strong>#4</strong></td>
<td class="code">600495</td>
<td class="name">晋西车轴</td>
<td class="lhb">1</td>
<td>5天</td>
<td class="trend">14.84%</td>
<td class="zt">1</td>
<td class="industry">轨交设备</td>
<td class="score">18</td>
</tr>
<tr>
<td><strong>#5</strong></td>
<td class="code">300900</td>
<td class="name">广联航空</td>
<td class="lhb">1</td>
<td>4天</td>
<td class="trend">26.42%</td>
<td class="zt">1</td>
<td class="industry">军工装备</td>
<td class="score">16</td>
</tr>
</tbody>
</table>
<div class="summary">
✅ 共筛选出 5 只符合条件的股票 | 显示前 20 名
</div>
<div class="footer">
<p>策略因子:龙虎榜 × 3 + 连涨天数 × 2 + 涨停次数 × 5</p>
<p>过滤条件:非ST、非转债、非北交所 | 连涨3-5天 | 涨幅5%-30%</p>
</div>
</body>
</html>