日线表格末尾追加次日预测行,展示振幅阈值供交易参考

This commit is contained in:
2026-07-24 22:28:51 +08:00
parent dce017fbf2
commit 8fb3949fac
2 changed files with 21 additions and 4 deletions
+12 -2
View File
@@ -52,9 +52,19 @@
{% else %}
<span class="na"></span>
{% endif %}
</td>
</tr>
{% endfor %}
{% if next_date %}
<tr style="background:var(--accent-light);font-weight:500;">
<td>{{ next_date }}</td>
<td>{{ next_weekday }}</td>
<td class="na"></td>
<td class="na"></td>
<td class="na"></td>
<td class="na"></td>
<td class="na"></td>
<td><span style="color:var(--accent);font-weight:700;">{{ next_amp }}</span></td>
</tr>
{% endif %}
</table>
</div>