f1c2d367a0
The historical runner stores equity curve times as ISO strings like "2026-07-05T07:00:00" but LightweightCharts only accepts Unix timestamps. Chart was loading 721 data points but rendering blank because time values were silently rejected. Changes: - renderBTDetail: convert string times to Unix timestamps before setData() - openDetail: same conversion for live/paper detail charts - pushEquity: same conversion for main area equity charts All chart codepaths now handle both string ISO and numeric timestamps.