Add one-expiry-per-day open rhythm gate (default on).

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-08-01 16:39:32 +08:00
parent 22c42a19a0
commit f1da2778ef
11 changed files with 166 additions and 2 deletions
+6
View File
@@ -298,6 +298,9 @@ export default function PlanPage() {
{fmt(plan?.min_option_hours, 0)}h ·
{fmt(plan?.min_option_leverage, 0)}x · {atmRule}
{plan?.skip_weekends ? " · 周末跳过开仓" : ""}
{plan?.one_expiry_per_day !== false
? " · 同到期日一天只开一次"
: ""}
</p>
<p>
<span className="plan-rules-k"></span>
@@ -306,6 +309,9 @@ export default function PlanPage() {
<p>
<span className="plan-rules-k"></span>
{plan?.rest_seconds ?? "—"}s ·
{plan?.one_expiry_per_day !== false
? " · 同到期平仓后改开下一到期"
: ""}
</p>
</div>
</details>