Ichimoku Cloud

get_ichimoku(quotes, tenkan_periods=9, kijun_periods=26, senkou_b_periods=52)

More overloaded interfaces

get_ichimoku(quotes, tenkan_periods, kijun_periods, senkou_b_periods, offset_periods) get_ichimoku(quotes, tenkan_periods, kijun_periods, senkou_b_periods, senkou_offset, chikou_offset)

Parameters

name type notes
quotes Iterable[Quote] Iterable of the Quote class or its sub-class.
See here for usage with pandas.DataFrame
tenkan_periods int, default 9 Number of periods (T) in the Tenkan-sen midpoint evaluation. Must be greater than 0.
kijun_periods int, default 26 Number of periods (K) in the shorter Kijun-sen midpoint evaluation. Must be greater than 0.
senkou_b_periods int, default 52 Number of periods (S) in the longer Senkou leading span B midpoint evaluation. Must be greater than K.
offset_periods int Number of periods to offset both Senkou and Chikou spans. Must be non-negative. Default is kijun_periods.
senkou_offset int Number of periods to offset the Senkou span. Must be non-negative. Default is kijun_periods.
chikou_offset int Number of periods to offset the Chikou span. Must be non-negative. Default is kijun_periods.

See overloads usage above to determine which parameters are relevant for each. If you are customizing offsets, all parameter arguments must be specified.

Historical quotes requirements

You must have at least the greater of T,K, S, and offset periods for quotes to cover the warmup periods; though, given the leading and lagging nature, we recommend notably more.

quotes is an Iterable[Quote] collection of historical price quotes. It should have a consistent frequency (day, hour, minute, etc). See the Guide for more information.

Return

IchimokuResults[IchimokuResult]

IchimokuResult

name type notes
date datetime Date
tenkan_sen Decimal, Optional Conversion / signal line
kijun_sen Decimal, Optional Base line
senkou_span_a Decimal, Optional Leading span A
senkou_span_b Decimal, Optional Leading span B
chikou_span Decimal, Optional Lagging span

Utilities

See Utilities and Helpers for more information.

Example

from stock_indicators import indicators

# This method is NOT a part of the library.
quotes = get_history_from_feed("SPY")

# calculate ICHIMOKU(9,26,52)
results = indicators.get_ichimoku(quotes, 9, 26, 52)

About Ichimoku Cloud

Created by Goichi Hosoda (細田悟一, Hosoda Goichi), Ichimoku Cloud, also known as Ichimoku Kinkō Hyō, is a collection of indicators that depict support and resistance, momentum, and trend direction. [Discuss] 💬

image

Sources