diff --git a/web/src/components/AITradersPage.tsx b/web/src/components/AITradersPage.tsx index 13b463ae..cf1e1db1 100644 --- a/web/src/components/AITradersPage.tsx +++ b/web/src/components/AITradersPage.tsx @@ -286,6 +286,7 @@ export function AITradersPage({ onTraderSelect }: AITradersPageProps) { trading_symbols: data.trading_symbols, custom_prompt: data.custom_prompt, override_base_prompt: data.override_base_prompt, + system_prompt_template: data.system_prompt_template, is_cross_margin: data.is_cross_margin, use_coin_pool: data.use_coin_pool, use_oi_top: data.use_oi_top, diff --git a/web/src/types.ts b/web/src/types.ts index d1368c01..60ce44ed 100644 --- a/web/src/types.ts +++ b/web/src/types.ts @@ -197,6 +197,7 @@ export interface TraderConfigData { trading_symbols: string custom_prompt: string override_base_prompt: boolean + system_prompt_template: string is_cross_margin: boolean use_coin_pool: boolean use_oi_top: boolean