data-api / models /rsi.py
camphong24032002
Update rsi and ichimoku api
048da70
raw
history blame
144 Bytes
from pydantic import BaseModel
class RSIPayload(BaseModel):
symbol: str
periods: int = 14
smooth_k: int = 3
smooth_d: int = 3