diff --git a/ui/src/pages/TradingPage.tsx b/ui/src/pages/TradingPage.tsx index 99dc46d1..b07c8d42 100644 --- a/ui/src/pages/TradingPage.tsx +++ b/ui/src/pages/TradingPage.tsx @@ -370,7 +370,13 @@ function CreateWizard({ brokerTypes, existingAccountIds, onSave, onClose }: { if (!bt) return const defaults: Record = {} for (const f of bt.fields) { - if (f.default !== undefined) defaults[f.name] = f.default + if (f.default !== undefined) { + defaults[f.name] = f.default + } else if (f.type === 'select' && f.options?.length) { + // Controlled