mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-15 00:58:04 +00:00
- 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.
46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
// The MIT License (MIT)
|
|
// © mihakralj
|
|
//@version=6
|
|
indicator("Inertia", "INERTIA", overlay=false)
|
|
|
|
//@function Calculates Inertia oscillator measuring trend strength based on distance from linear regression
|
|
//@param source Source series to calculate Inertia for
|
|
//@param length Period for linear regression calculation
|
|
//@returns Inertia value measuring trend strength
|
|
inertia(series float source, simple int length) =>
|
|
if length <= 0
|
|
runtime.error("Length must be positive")
|
|
if na(source)
|
|
na
|
|
else
|
|
available_bars = bar_index + 1
|
|
effective_length = math.min(length, available_bars)
|
|
sum_x = 0.0, sum_y = 0.0, sum_xy = 0.0, sum_x2 = 0.0
|
|
for i = 0 to effective_length - 1
|
|
x = effective_length - 1 - i
|
|
y = nz(source[i])
|
|
sum_x += x, sum_y += y
|
|
sum_xy += x * y, sum_x2 += x * x
|
|
n = effective_length
|
|
denominator = n * sum_x2 - sum_x * sum_x
|
|
if denominator == 0
|
|
0.0
|
|
else
|
|
slope = (n * sum_xy - sum_x * sum_y) / denominator
|
|
intercept = (sum_y - slope * sum_x) / n
|
|
regression_value = slope * (effective_length - 1) + intercept
|
|
source - regression_value
|
|
|
|
// ---------- Main loop ----------
|
|
|
|
// Inputs
|
|
i_length = input.int(20, "Length", minval=1, maxval=500, tooltip="Period for linear regression calculation")
|
|
i_source = input.source(close, "Source", tooltip="Price series to analyze")
|
|
|
|
// Calculation
|
|
inertia_value = inertia(i_source, i_length)
|
|
|
|
// Plots
|
|
plot(inertia_value, "Inertia", color=color.yellow, linewidth=2)
|
|
|