This commit is contained in:
2026-03-26 15:40:46 +09:00
parent 9ff088bf6b
commit 0f7b7a12c1
2 changed files with 12 additions and 8 deletions
+4 -1
View File
@@ -154,7 +154,10 @@ fun TradingDecisionLog() {
fontWeight = FontWeight.ExtraBold
)
}
Text("신뢰도: ${log.confidence}%", fontSize = 11.sp)
when (log.decision) {
"BUY", "SELL", "HOLD" -> Text("신뢰도: ${log.confidence}%", fontSize = 11.sp)
}
Text("이유: ${log.reason}", fontSize = 12.sp, color = Color.DarkGray)
}
}