diff --git a/lib/trading/position-manager.ts b/lib/trading/position-manager.ts index e6c8d20..47e7863 100644 --- a/lib/trading/position-manager.ts +++ b/lib/trading/position-manager.ts @@ -1028,11 +1028,11 @@ export class PositionManager { console.log( `📊 ${trade.symbol} | ` + `Price: ${currentPrice.toFixed(4)} | ` + - `P&L: ${profitPercent.toFixed(2)}% (${accountPnL.toFixed(1)}% acct) | ` + + `P&L: ${profitPercent.toFixed(2)}% | ` + `Unrealized: $${trade.unrealizedPnL.toFixed(2)} | ` + `Peak: $${trade.peakPnL.toFixed(2)} | ` + - `MFE: ${trade.maxFavorableExcursion.toFixed(2)}% | ` + - `MAE: ${trade.maxAdverseExcursion.toFixed(2)}%` + `MFE: $${trade.maxFavorableExcursion.toFixed(2)} | ` + + `MAE: $${trade.maxAdverseExcursion.toFixed(2)}` ) }