Load options review from local records with compact journal UI.

Drop exchange sync for the review page, auto-import closed local options and hedge plans, and match contract-style multi-timeframe upload styling with smaller fonts.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-07-17 09:54:35 +08:00
parent c6142dc246
commit 48afc8ebe3
6 changed files with 194 additions and 102 deletions
+26
View File
@@ -226,6 +226,32 @@ class OptionsReviewTests(unittest.TestCase):
).fetchone()
self.assertEqual(float(row["realized_pnl_total"]), 1.23)
def test_local_options_trades_import(self):
conn = _conn()
from lib.options.options_db import init_options_tables
init_options_tables(conn)
conn.execute(
"""
INSERT INTO options_trades
(inst_id, underlying, opt_type, strike, sheets, eth_amount,
open_quote, premium_paid, status, realized_pnl, created_at, closed_at)
VALUES ('ETH-USD-260328-2000-C','ETH','C',2000,2,0.02,0.01,0.5,'closed',3.2,
'2026-03-01 10:00:00','2026-03-01 12:00:00')
"""
)
from lib.options.options_review_lib import sync_options_from_local_trades
out = sync_options_from_local_trades(conn)
self.assertTrue(out["ok"])
self.assertEqual(out["inserted"], 1)
row = conn.execute(
"SELECT history_key, realized_pnl_total, source_type FROM options_review_trades"
).fetchone()
self.assertTrue(str(row["history_key"]).startswith("local_opt:"))
self.assertEqual(float(row["realized_pnl_total"]), 3.2)
self.assertEqual(row["source_type"], SOURCE_OPTION)
def test_image_namespace(self):
with tempfile.TemporaryDirectory() as tmp:
folder = options_review_upload_dir(tmp)