Stage 05.1 - order draft flow

This commit is contained in:
2026-04-16 21:23:35 +03:00
parent 76fc122955
commit f662ff1901
9 changed files with 185 additions and 2 deletions

View 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"