주식 잔고, 주문 창 업그레이드

- 잔고, 주문 창 분리
 - full-width 섹션으로 쌓게 변경
This commit is contained in:
2026-01-26 22:47:18 +09:00
parent 5f4742085c
commit 22897c3eb6
5 changed files with 407 additions and 0 deletions

View File

@@ -77,3 +77,11 @@ export function getStockHealth() {
export function getStockIndices() {
return apiGet("/api/stock/indices");
}
export function getTradeBalance() {
return apiGet("/api/trade/balance");
}
export function createTradeOrder(payload) {
return apiPost("/api/trade/order", payload);
}