Spaces:
Running
Running
File size: 207 Bytes
6b95d78 |
1 2 3 4 5 6 7 8 9 10 11 |
from pydantic import BaseModel
class RSISignalPayload(BaseModel):
symbol: str
periods: int = 14
smooth_k: int = 3
smooth_d: int = 3
threshold_low: int = 20
threshold_high: int = 80
|