Stage 05.1 - order draft flow
This commit is contained in:
12
app/src/trading/orders/models.py
Normal file
12
app/src/trading/orders/models.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from dataclasses import dataclass
|
||||
|
||||
|
||||
@dataclass(slots=True)
|
||||
class OrderDraft:
|
||||
symbol: str
|
||||
side: str
|
||||
order_type: str
|
||||
quantity: str
|
||||
status: str = "draft"
|
||||
Reference in New Issue
Block a user