diff --git a/lib/tradovate-class.ts b/lib/tradovate-class.ts index bd47495..4058ff3 100644 --- a/lib/tradovate-class.ts +++ b/lib/tradovate-class.ts @@ -283,9 +283,6 @@ export class TradovateClient { const isSentinel = limit >= 999999999; const floor = (!isSentinel && limit > 0 && drawdown > 0) ? limit - drawdown : 0; this.autoLiqThresholds[accountId] = floor; - if (floor > 0) { - console.log(`[autoLiq] account ${accountId} → floor $${floor} (hwm=$${limit} drawdown=$${drawdown})`); - } } this.accountList = ((response.accounts ?? []) as AccountItem[]).map((account) => {