data-api / models /ichimoku.py
camphong24032002
feat: update price and rsi data of vn100
e565da6
raw
history blame
195 Bytes
from pydantic import BaseModel
class IchimokuPayload(BaseModel):
symbol: str
conversion_period: int = 9
base_period: int = 26
span_b_period: int = 52
displacement: int = 26