from pydantic import BaseModel class RSIPayload(BaseModel): symbol: str periods: int = 14 smooth_k: int = 3 smooth_d: int = 3