mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-18 18:48:05 +00:00
doc headers
This commit is contained in:
@@ -1,4 +1,21 @@
|
||||
# ICHIMOKU: Ichimoku Kinko Hyo
|
||||
# ICHIMOKU: Ichimoku Kinko Hyo
|
||||
|
||||
| Property | Value |
|
||||
| ---------------- | -------------------------------- |
|
||||
| **Category** | Dynamic |
|
||||
| **Inputs** | OHLCV bar (TBar) |
|
||||
| **Parameters** | `tenkanPeriod`, `kijunPeriod`, `senkouBPeriod`, `displacement` |
|
||||
| **Outputs** | Multiple series (Tenkan, Kijun, SenkouA, SenkouB, Chikou) |
|
||||
| **Output range** | Varies (see docs) |
|
||||
| **Warmup** | `maxPeriod` bars |
|
||||
|
||||
### TL;DR
|
||||
|
||||
- Ichimoku Kinko Hyo ("One Glance Equilibrium Chart") is a comprehensive trend-following system that provides five distinct components revealing tren...
|
||||
- Parameterized by `tenkanperiod`, `kijunperiod`, `senkoubperiod`, `displacement`.
|
||||
- Output range: Varies (see docs).
|
||||
- Requires `maxPeriod` bars of warmup before first valid output (IsHot = true).
|
||||
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
|
||||
|
||||
Ichimoku Kinko Hyo ("One Glance Equilibrium Chart") is a comprehensive trend-following system that provides five distinct components revealing trend direction, momentum, support/resistance levels, and potential future price zones simultaneously. The Tenkan-sen and Kijun-sen are midpoints of high-low ranges at different timescales (not moving averages of closes). Senkou Span A and B form the "cloud" (Kumo) — a projected equilibrium zone displaced forward in time. Chikou Span is simply the current close displaced backward. All components use sliding window min/max arithmetic, producing step-function behavior on breakouts rather than the smooth curves of EMA-based systems. The system requires OHLC bar input.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user