This commit is contained in:
2026-01-21 11:49:30 +09:00
parent 90512fc1bd
commit edec3c4de0
9 changed files with 245 additions and 122 deletions
+3 -1
View File
@@ -41,7 +41,8 @@ fun StockDetailSection(
holdingQuantity : String,
isDomestic: Boolean,
tradeService: KisTradeService,
wsManager: KisWebSocketManager
wsManager: KisWebSocketManager,
onOrderSaved: (String) -> Unit
) {
var openPrice by remember { mutableStateOf("0") }
@@ -220,6 +221,7 @@ fun StockDetailSection(
currentPrice = wsManager.currentPrice.value,
holdingQuantity = holdingQuantity,
tradeService = tradeService,
onOrderSaved = onOrderSaved,
onOrderResult = { msg, success ->
resultMessage = msg
isSuccess = success