Skip to main content

ichimoku

Calculate the Ichimoku Cloud.

Also known as Ichimoku Kinko Hyo, is a versatile indicator that defines support and resistance, identifies trend direction, gauges momentum and provides trading signals. Ichimoku Kinko Hyo translates into "one look equilibrium chart". With one look, chartists can identify the trend and look for potential signals within that trend.

Parameters

data: list[openbb_core.provider.abstract.data.Data]

list of data to be used for the calculation.

Optional: False


index: str

Index column name to use with data, by default 'date'.

Default: date

Optional: True


conversion: int

Number of periods for the conversion line, by default 9.

Default: 9

Optional: True


base: int

Number of periods for the base line, by default 26.

Default: 26

Optional: True


lagging: int

Number of periods for the lagging span, by default 52.

Default: 52

Optional: True


offset: int

Number of periods for the offset, by default 26.

Default: 26

Optional: True


lookahead: bool

drops the Chikou Span Column to prevent potential data leak

Optional: True


Returns

results: list[Data]

Serializable results.


provider: None

Provider name.


warnings: Optional[list[Warning_]]

list of warnings.


chart: Optional[Chart]

Chart object.


extra: dict[str, Any]

Extra info.


On this page