from pydantic import BaseModel class SummarySignalPayload(BaseModel): symbol: str periods: int = 14 smooth_k: int = 3 smooth_d: int = 3 threshold_low: int = 20 threshold_high: int = 80