From 4035432c54df2be2a8bdd3c4cd18c9107877a9d1 Mon Sep 17 00:00:00 2001 From: gahusb Date: Wed, 28 Jan 2026 01:22:52 +0900 Subject: [PATCH] =?UTF-8?q?stock-lab=20=EC=9D=98=EB=AF=B8=EC=97=86?= =?UTF-8?q?=EC=9D=B4=20=EB=82=A8=EA=B2=A8=EC=A7=84=20=EC=86=8C=EC=8A=A4?= =?UTF-8?q?=EB=A1=9C=20=EC=98=A4=EB=A5=98=20=EB=B0=9C=EC=83=9D=EC=9D=98=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stock-lab/app/main.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/stock-lab/app/main.py b/stock-lab/app/main.py index 9c3b09c..6db4a66 100644 --- a/stock-lab/app/main.py +++ b/stock-lab/app/main.py @@ -8,16 +8,7 @@ import requests from apscheduler.schedulers.background import BackgroundScheduler from pydantic import BaseModel -# ... (중략) ... -class OrderRequest(BaseModel): - code: str - name: Optional[str] = None # 종목명 (옵션) - qty: int - price: int = 0 # 0이면 시장가 - type: str # 'buy' or 'sell' - -@app.post("/api/trade/order")