File size: 175 Bytes
884dad1
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from pydantic import BaseModel


class RSIPayload(BaseModel):
    symbol: str
    range_selector: str = "1y"
    periods: int = 14
    smooth_k: int = 3
    smooth_d: int = 3