Add documentation links for various volatility indicators and channels

- Updated BBWN, BBWP, CCV, CV, CVI, EWMA, GKV, HLV, HV, Jvolty, JVOLTYN, MASSI, NATR, RSV, RV, RVI, TR, UI, VOV, VR, YZV indicators with documentation links.
- Added documentation links for Aberration, Acceleration Bands, Andrews' Pitchfork, Adaptive Price Zone, ATR Bands, Bollinger Bands, Center of Gravity, Donchian Channels, Decay Min-Max Channel, Detrended Synthetic Price, EACP, EBSW, HOMOD, Jurik Volatility Bands, Keltner Channel, MA Envelope, Min-Max Channel, Price Channel, Regression Channels, Standard Deviation Channel, Stoller Average Range Channel, Super Trend Bands, Ultimate Bands, Ultimate Channel, VWAP Bands, and VWAP with Standard Deviation Bands.
This commit is contained in:
Miha Kralj
2026-02-18 11:55:48 -08:00
parent 79c0d72d0a
commit 24e86d762a
332 changed files with 19813 additions and 323 deletions
+1 -2
View File
@@ -4,8 +4,7 @@
indicator("Williams Fractals", "FRACTALS", overlay=true)
//@function Detects Williams Fractal patterns (5-bar pattern)
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/fractals.md
//@returns Tuple [up_fractal, down_fractal] with fractal values (na if no fractal)
//@returns [up_fractal, down_fractal] Fractal values (na if no fractal)
fractals() =>
bool is_up_fractal = false
bool is_down_fractal = false
-1
View File
@@ -4,7 +4,6 @@
indicator("Pivot Points (Classic)", "PIVOT", overlay=true)
//@function Calculates classic/standard/floor pivot points
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/pivot.md
//@param tf Timeframe for pivot calculation ("D", "W", "M")
//@returns Tuple [pp, r1, r2, r3, s1, s2, s3] with pivot levels
//@references Floor traders, standard pivot point formula
-1
View File
@@ -4,7 +4,6 @@
indicator("Pivot Points (Camarilla)", "PIVOTCAM", overlay=true)
//@function Calculates Camarilla pivot points with 8 levels for short-term trading
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/pivotcam.md
//@param tf Timeframe for pivot calculation ("D", "W", "M")
//@returns Tuple [pp, r1, r2, r3, r4, s1, s2, s3, s4] with pivot levels
//@references Nick Scott, Camarilla equation
-1
View File
@@ -4,7 +4,6 @@
indicator("Pivot Points (DeMark)", "PIVOTDEM", overlay=true)
//@function Calculates DeMark pivot points with conditional open/close logic
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/pivotdem.md
//@param tf Timeframe for pivot calculation ("D", "W", "M")
//@returns Tuple [pp, r1, s1] with pivot levels (only 3 levels)
//@references Tom DeMark, conditional pivot formula
-1
View File
@@ -4,7 +4,6 @@
indicator("Pivot Points (Extended)", "PIVOTEXT", overlay=true)
//@function Calculates extended traditional pivot points with R4-R5 and S4-S5 levels
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/pivotext.md
//@param tf Timeframe for pivot calculation ("D", "W", "M")
//@returns Tuple [pp, r1, r2, r3, r4, r5, s1, s2, s3, s4, s5] with pivot levels
//@references Extended floor trader pivot formula
-1
View File
@@ -4,7 +4,6 @@
indicator("Pivot Points (Fibonacci)", "PIVOTFIB", overlay=true)
//@function Calculates Fibonacci pivot points using Fibonacci ratios
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/pivotfib.md
//@param tf Timeframe for pivot calculation ("D", "W", "M")
//@returns Tuple [pp, r1, r2, r3, s1, s2, s3] with pivot levels
//@references Fibonacci retracement levels applied to pivot points
-1
View File
@@ -4,7 +4,6 @@
indicator("Pivot Points (Woodie)", "PIVOTWOOD", overlay=true)
//@function Calculates Woodie's pivot points with weighted closing price
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/pivotwood.md
//@param tf Timeframe for pivot calculation ("D", "W", "M")
//@returns Tuple [pp, r1, r2, r3, s1, s2, s3] with pivot levels
//@references Ken Woodie, weighted close formula
-1
View File
@@ -4,7 +4,6 @@
indicator("Parabolic SAR", "PSAR", overlay=true)
//@function Calculates Parabolic Stop And Reverse (SAR)
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/psar.md
//@param af_start Initial acceleration factor (Wilder's original: 0.02)
//@param af_increment Acceleration factor increment per new extreme (Wilder's original: 0.02)
//@param af_max Maximum acceleration factor (Wilder's original: 0.20)
-1
View File
@@ -4,7 +4,6 @@
indicator("Swing High/Low Detection", "SWINGS", overlay=true)
//@function Detects swing highs and swing lows using lookback period
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/swings.md
//@param lookback Number of bars on each side to confirm swing point
//@param source_high Price series for swing high detection (typically high)
//@param source_low Price series for swing low detection (typically low)
+2 -2
View File
@@ -4,8 +4,8 @@
indicator("TTM Scalper Alert", "TTM_SCALPER", overlay=true)
//@function Detects 3-bar pivot patterns for scalping entry signals
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/reversals/ttmscalper.md
//@returns Tuple [pivot_high_price, pivot_low_price] with pivot values (na if no pivot)
//@param use_closes Use close prices instead of high/low for pivot detection
//@returns [pivot_high_price, pivot_low_price] Pivot values (na if no pivot)
ttmscalper(bool use_closes = false) =>
bool is_pivot_high = false
bool is_pivot_low = false