mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-16 09:38:05 +00:00
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:
+22
-22
@@ -8,25 +8,25 @@ Channels define dynamic support and resistance. Upper band shows where price ten
|
||||
|
||||
| Indicator | Full Name | Description |
|
||||
| :--- | :--- | :--- |
|
||||
| [ABBER](/lib/channels/abber/Abber.md) | Aberration Bands | Absolute deviation-based volatility bands. More robust than standard deviation. |
|
||||
| [ACCBANDS](/lib/channels/accbands/Accbands.md) | Acceleration Bands | Volatility-based adaptive channel by Price Headley. Width adapts to momentum. |
|
||||
| [APCHANNEL](/lib/channels/apchannel/Apchannel.md) | Adaptive Price Channel | Channel based on adaptive moving average with volatility bands. |
|
||||
| [APZ](/lib/channels/apz/Apz.md) | Adaptive Price Zone | Double-smoothed EMA volatility channel by Lee Leibfarth. Adapts to recent volatility. |
|
||||
| [ATRBANDS](/lib/channels/atrbands/Atrbands.md) | ATR Bands | ATR-based volatility bands around moving average. |
|
||||
| [BBANDS](/lib/channels/bbands/Bbands.md) | Bollinger Bands | Standard deviation bands around SMA. Classic volatility channel. |
|
||||
| [DCHANNEL](/lib/channels/dchannel/Dchannel.md) | Donchian Channels | Highest high and lowest low over N periods. Turtle trading foundation. |
|
||||
| [DECAYCHANNEL](/lib/channels/decaychannel/DecayChannel.md) | Decay Min-Max Channel | Exponentially decaying min-max channel. Half-life decay toward midpoint. |
|
||||
| [FCB](/lib/channels/fcb/Fcb.md) | Fractal Chaos Bands | Tracks fractal highs and lows. Identifies chaos-based support/resistance. |
|
||||
| [JBANDS](/lib/channels/jbands/Jbands.md) | Jurik Adaptive Envelope Bands | JMA's internal adaptive envelopes. Snap to extremes, decay toward price. |
|
||||
| [KCHANNEL](/lib/channels/kchannel/Kchannel.md) | Keltner Channel | EMA with ATR bands. Smoother than Bollinger. |
|
||||
| [MAENV](/lib/channels/maenv/Maenv.md) | Moving Average Envelope | Fixed percentage bands around moving average. Simple but effective. |
|
||||
| [MMCHANNEL](/lib/channels/mmchannel/MmChannel.md) | Min-Max Channel | Rolling highest high / lowest low using O(1) monotonic deques. |
|
||||
| [PCHANNEL](/lib/channels/pchannel/Pchannel.md) | Price Channel | Highest high and lowest low. Identical to Donchian Channels. |
|
||||
| [REGCHANNEL](/lib/channels/regchannel/RegChannel.md) | Linear Regression Channel | Linear regression line with standard deviation bands. |
|
||||
| [SDCHANNEL](/lib/channels/sdchannel/SdChannel.md) | Standard Deviation Channel | Moving average with standard deviation bands. |
|
||||
| [STARCHANNEL](/lib/channels/starchannel/StarChannel.md) | Stoller Average Range Channel | SMA with ATR bands. Similar to Keltner but uses SMA instead of EMA. |
|
||||
| [STBANDS](/lib/channels/stbands/Stbands.md) | Super Trend Bands | ATR-based trend-following bands. Flips direction on breakout. |
|
||||
| [UBANDS](/lib/channels/ubands/Ubands.md) | Ehlers Ultimate Bands | USF-based volatility channel with RMS bands. Zero-lag smoothing by Ehlers. |
|
||||
| [UCHANNEL](/lib/channels/uchannel/Uchannel.md) | Ehlers Ultimate Channel | USF-based volatility channel with Smoothed True Range bands. Zero-lag by Ehlers. |
|
||||
| [VWAPBANDS](/lib/channels/vwapbands/Vwapbands.md) | VWAP Bands | Volume-weighted average price with dual ±1σ and ±2σ standard deviation bands. |
|
||||
| [VWAPSD](/lib/channels/vwapsd/Vwapsd.md) | VWAP Standard Deviation Bands | Standard deviation bands around VWAP. |
|
||||
| [ABBER](abber/Abber.md) | Aberration Bands | Absolute deviation-based volatility bands. More robust than standard deviation. |
|
||||
| [ACCBANDS](accbands/Accbands.md) | Acceleration Bands | Volatility-based adaptive channel by Price Headley. Width adapts to momentum. |
|
||||
| [APCHANNEL](apchannel/Apchannel.md) | Adaptive Price Channel | Channel based on adaptive moving average with volatility bands. |
|
||||
| [APZ](apz/Apz.md) | Adaptive Price Zone | Double-smoothed EMA volatility channel by Lee Leibfarth. Adapts to recent volatility. |
|
||||
| [ATRBANDS](atrbands/Atrbands.md) | ATR Bands | ATR-based volatility bands around moving average. |
|
||||
| [BBANDS](bbands/Bbands.md) | Bollinger Bands | Standard deviation bands around SMA. Classic volatility channel. |
|
||||
| [DCHANNEL](dchannel/Dchannel.md) | Donchian Channels | Highest high and lowest low over N periods. Turtle trading foundation. |
|
||||
| [DECAYCHANNEL](decaychannel/DecayChannel.md) | Decay Min-Max Channel | Exponentially decaying min-max channel. Half-life decay toward midpoint. |
|
||||
| [FCB](fcb/Fcb.md) | Fractal Chaos Bands | Tracks fractal highs and lows. Identifies chaos-based support/resistance. |
|
||||
| [JBANDS](jbands/Jbands.md) | Jurik Adaptive Envelope Bands | JMA's internal adaptive envelopes. Snap to extremes, decay toward price. |
|
||||
| [KCHANNEL](kchannel/Kchannel.md) | Keltner Channel | EMA with ATR bands. Smoother than Bollinger. |
|
||||
| [MAENV](maenv/Maenv.md) | Moving Average Envelope | Fixed percentage bands around moving average. Simple but effective. |
|
||||
| [MMCHANNEL](mmchannel/MmChannel.md) | Min-Max Channel | Rolling highest high / lowest low using O(1) monotonic deques. |
|
||||
| [PCHANNEL](pchannel/Pchannel.md) | Price Channel | Highest high and lowest low. Identical to Donchian Channels. |
|
||||
| [REGCHANNEL](regchannel/RegChannel.md) | Linear Regression Channel | Linear regression line with standard deviation bands. |
|
||||
| [SDCHANNEL](sdchannel/SdChannel.md) | Standard Deviation Channel | Moving average with standard deviation bands. |
|
||||
| [STARCHANNEL](starchannel/StarChannel.md) | Stoller Average Range Channel | SMA with ATR bands. Similar to Keltner but uses SMA instead of EMA. |
|
||||
| [STBANDS](stbands/Stbands.md) | Super Trend Bands | ATR-based trend-following bands. Flips direction on breakout. |
|
||||
| [UBANDS](ubands/Ubands.md) | Ehlers Ultimate Bands | USF-based volatility channel with RMS bands. Zero-lag smoothing by Ehlers. |
|
||||
| [UCHANNEL](uchannel/Uchannel.md) | Ehlers Ultimate Channel | USF-based volatility channel with Smoothed True Range bands. Zero-lag by Ehlers. |
|
||||
| [VWAPBANDS](vwapbands/Vwapbands.md) | VWAP Bands | Volume-weighted average price with dual ±1σ and ±2σ standard deviation bands. |
|
||||
| [VWAPSD](vwapsd/Vwapsd.md) | VWAP Standard Deviation Bands | Standard deviation bands around VWAP. |
|
||||
|
||||
Reference in New Issue
Block a user