Refactor documentation links in numerics, oscillators, reversals, and statistics modules to use relative paths; update Bias class to handle division by zero more robustly; remove obsolete CUMMEAN Pine script; enhance trend indicators documentation; add Visual Studio Code workspace configuration.

This commit is contained in:
Miha Kralj
2026-02-04 11:43:59 -08:00
parent c034cbd5e5
commit 3e854eac3f
60 changed files with 9944 additions and 2641 deletions
+17 -17
View File
@@ -8,20 +8,20 @@ Momentum indicators measure the velocity and acceleration of price changes. Unli
| Indicator | Full Name | Description |
| :--- | :--- | :--- |
| [APO](/lib/momentum/apo/Apo.md) | Absolute Price Oscillator | Absolute difference between two EMAs. |
| [BOP](/lib/momentum/bop/Bop.md) | Balance of Power | Measures buyer/seller strength by comparing close to open relative to range. |
| [CCI](/lib/momentum/cci/Cci.md) | Commodity Channel Index | Measures price deviation from statistical mean, identifies cyclical turns. |
| [CFB](/lib/momentum/cfb/Cfb.md) | Composite Fractal Behavior | Measures trend duration and quality via fractal efficiency across 96 time scales. |
| [CMO](/lib/momentum/cmo/Cmo.md) | Chande Momentum Oscillator | Momentum using both up and down changes, bounded but not clamped like RSI. |
| [MACD](/lib/momentum/macd/Macd.md) | Moving Average Convergence Divergence | Relationship between two EMAs, identifies momentum and trend direction. |
| [MOM](/lib/momentum/mom/Mom.md) | Momentum | Raw price change over specified period. |
| [PMO](/lib/momentum/pmo/Pmo.md) | Price Momentum Oscillator | Double-smoothed ROC oscillator. |
| [PPO](/lib/momentum/ppo/Ppo.md) | Percentage Price Oscillator | MACD expressed as percentage for cross-instrument comparison. |
| [PRS](/lib/momentum/prs/Prs.md) | Price Relative Strength | Performance ratio between two assets. |
| [ROC](/lib/momentum/roc/Roc.md) | Rate of Change | Absolute price change over N periods. |
| [ROCP](/lib/momentum/rocp/Rocp.md) | Rate of Change Percentage | Percentage price change over N periods. |
| [ROCR](/lib/momentum/rocr/Rocr.md) | Rate of Change Ratio | Price ratio over N periods. |
| [RSI](/lib/momentum/rsi/Rsi.md) | Relative Strength Index | Speed and change of price movements, bounded 0-100. |
| [RSX](/lib/momentum/rsx/Rsx.md) | Relative Strength Quality Index | Noise-free RSI using cascaded IIR filters, zero lag at turning points. |
| [TSI](/lib/momentum/tsi/Tsi.md) | True Strength Index | Double-smoothed momentum oscillator. |
| [VEL](/lib/momentum/vel/Vel.md) | Jurik Velocity | Market acceleration via PWMA vs WMA differential. |
| [APO](apo/Apo.md) | Absolute Price Oscillator | Absolute difference between two EMAs. |
| [BOP](bop/Bop.md) | Balance of Power | Measures buyer/seller strength by comparing close to open relative to range. |
| [CCI](cci/Cci.md) | Commodity Channel Index | Measures price deviation from statistical mean, identifies cyclical turns. |
| [CFB](cfb/Cfb.md) | Composite Fractal Behavior | Measures trend duration and quality via fractal efficiency across 96 time scales. |
| [CMO](cmo/Cmo.md) | Chande Momentum Oscillator | Momentum using both up and down changes, bounded but not clamped like RSI. |
| [MACD](macd/Macd.md) | Moving Average Convergence Divergence | Relationship between two EMAs, identifies momentum and trend direction. |
| [MOM](mom/Mom.md) | Momentum | Raw price change over specified period. |
| [PMO](pmo/Pmo.md) | Price Momentum Oscillator | Double-smoothed ROC oscillator. |
| [PPO](ppo/Ppo.md) | Percentage Price Oscillator | MACD expressed as percentage for cross-instrument comparison. |
| [PRS](prs/Prs.md) | Price Relative Strength | Performance ratio between two assets. |
| [ROC](roc/Roc.md) | Rate of Change | Absolute price change over N periods. |
| [ROCP](rocp/Rocp.md) | Rate of Change Percentage | Percentage price change over N periods. |
| [ROCR](rocr/Rocr.md) | Rate of Change Ratio | Price ratio over N periods. |
| [RSI](rsi/Rsi.md) | Relative Strength Index | Speed and change of price movements, bounded 0-100. |
| [RSX](rsx/Rsx.md) | Relative Strength Quality Index | Noise-free RSI using cascaded IIR filters, zero lag at turning points. |
| [TSI](tsi/Tsi.md) | True Strength Index | Double-smoothed momentum oscillator. |
| [VEL](vel/Vel.md) | Jurik Velocity | Market acceleration via PWMA vs WMA differential. |