doc headers

This commit is contained in:
Miha Kralj
2026-02-27 07:48:12 -08:00
parent 8a1ba95173
commit 4ab3a7fb53
389 changed files with 6682 additions and 468 deletions
+18 -1
View File
@@ -1,4 +1,21 @@
# CMO (Chande Momentum Oscillator)
# CMO (Chande Momentum Oscillator)
| Property | Value |
| ---------------- | -------------------------------- |
| **Category** | Momentum |
| **Inputs** | Source (close) |
| **Parameters** | `period` (default DefaultPeriod) |
| **Outputs** | Single series (Cmo) |
| **Output range** | $-100$ to $+100$ |
| **Warmup** | `period + 1` bars |
### TL;DR
- The Chande Momentum Oscillator (CMO) is a momentum indicator developed by Tushar Chande.
- Parameterized by `period` (default defaultperiod).
- Output range: $-100$ to $+100$.
- Requires `period + 1` bars of warmup before first valid output (IsHot = true).
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
The Chande Momentum Oscillator (CMO) is a momentum indicator developed by Tushar Chande. Unlike RSI which uses smoothed averages of gains and losses, CMO uses raw sums of up and down movements, making it more responsive to price changes. The indicator oscillates between -100 and +100.