Show OTM option quotes in option-option mode.

Align session to amplitude Call/Put pair and replace perp/ATM market panels.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-08-07 16:30:29 +08:00
parent cd88fa5d83
commit 0659611d82
4 changed files with 388 additions and 70 deletions
+12
View File
@@ -204,9 +204,21 @@ export type MarketSnapshot = {
index_px: number | null;
exchange?: string;
perp_inst_id?: string;
hedge_mode?: "perp_option" | "option_option";
oo_amplitude?: {
high?: number;
low?: number;
mid?: number;
range_pct?: number;
hours?: number;
min_pct?: number;
ok?: boolean;
} | null;
pair: {
expiry_ymd: string;
strike: number;
call_strike?: number;
put_strike?: number;
call_inst_id: string;
put_inst_id: string;
} | null;