data-api / models /rsi.py
camphong24032002
Initialize
884dad1
raw
history blame
175 Bytes
from pydantic import BaseModel
class RSIPayload(BaseModel):
symbol: str
range_selector: str = "1y"
periods: int = 14
smooth_k: int = 3
smooth_d: int = 3