mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-22 20:48:04 +00:00
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:
@@ -1,9 +1,14 @@
|
||||
// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
|
||||
// © QuanTAlib - Normalized Jurik Volatility (JVOLTYN)
|
||||
|
||||
// The MIT License (MIT)
|
||||
// © mihakralj
|
||||
//@version=6
|
||||
indicator("JVOLTYN - Normalized Jurik Volatility", shorttitle="JVOLTYN", overlay=false)
|
||||
|
||||
//@function Calculates Normalized Jurik Volatility (0-100 scale)
|
||||
//@param period Number of bars used in the calculation (>= 2)
|
||||
//@param src Source series for volatility measurement
|
||||
//@returns Normalized volatility value (0 = low, 100 = high)
|
||||
//@optimized Uses adaptive bands with distribution-based normalization
|
||||
|
||||
// Inputs
|
||||
period = input.int(14, "Period", minval=2)
|
||||
src = input.source(close, "Source")
|
||||
@@ -120,4 +125,4 @@ hline(100, "Max Volatility", color=color.gray, linestyle=hline.style_dotted)
|
||||
bgcolor(jvoltyn < 25 ? color.new(color.green, 90) :
|
||||
jvoltyn < 50 ? color.new(color.yellow, 90) :
|
||||
jvoltyn < 75 ? color.new(color.orange, 90) :
|
||||
color.new(color.red, 90))
|
||||
color.new(color.red, 90))
|
||||
|
||||
Reference in New Issue
Block a user