53863559f4
Retarget git remote, install path, and deploy docs from crypto_monitor to crypto_monitor_user. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
918 B
HTML
16 lines
918 B
HTML
{# 三所统一顶栏:实时价 + 可选整点前开仓开关(划转已移至系统设置) #}
|
|
<div class="rule-tip instance-price-bar">
|
|
实时价格更新:<span id="price-last-updated">--</span>(北京时间 UTC+8)
|
|
</div>
|
|
{% if ui_open_guard_enabled %}
|
|
<div class="rule-tip" id="open-guard-bar" style="display:flex;align-items:center;gap:10px;flex-wrap:wrap">
|
|
<label style="display:flex;align-items:center;gap:6px;cursor:pointer;color:#cfd3ef">
|
|
<input type="checkbox" id="allow-open-before-reset" {% if not open_guard_enabled %}checked{% endif %}>
|
|
允许北京时间 {{ reset_hour }}:00 前开仓(斐波成交登记,人工下单)
|
|
</label>
|
|
<span id="open-guard-status" style="color:#8892b0;font-size:.75rem">
|
|
{% if open_guard_enabled %}已限制:{{ reset_hour }}:00 前不可开仓{% else %}已放开:{{ reset_hour }}:00 前允许开仓{% endif %}
|
|
</span>
|
|
</div>
|
|
{% endif %}
|