mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-16 17:48:05 +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.
48 lines
1.6 KiB
Plaintext
48 lines
1.6 KiB
Plaintext
// The MIT License (MIT)
|
|
// © mihakralj
|
|
//@version=6
|
|
indicator("Pascal Weighted Moving Average (PWMA)", "PWMA", overlay=true)
|
|
|
|
//@function Calculates PWMA using Pascal's triangle coefficients as weights with compensator
|
|
//@param source Series to calculate PWMA from
|
|
//@param period Lookback period - FIR window size
|
|
//@returns PWMA value, calculates from first bar using available data
|
|
//@optimized Uses Pascal's triangle weighting with O(n) complexity per bar due to lookback loop
|
|
pwma(series float source, simple int period) =>
|
|
if period <= 0
|
|
runtime.error("Period must be greater than 0")
|
|
int p = math.min(bar_index + 1, period)
|
|
var array<float> weights = array.new_float(1, 1.0)
|
|
var int last_p = 1
|
|
if last_p != p
|
|
weights := array.new_float(p, 0.0)
|
|
array.set(weights, 0, 1.0)
|
|
if p > 1
|
|
float prev_weight = 1.0
|
|
for i = 1 to p - 1
|
|
float curr_weight = prev_weight * (p - i) / i
|
|
array.set(weights, i, curr_weight)
|
|
prev_weight := curr_weight
|
|
last_p := p
|
|
float sum = 0.0
|
|
float weight_sum = 0.0
|
|
for i = 0 to p - 1
|
|
float price = source[i]
|
|
if not na(price)
|
|
float w = array.get(weights, i)
|
|
sum += price * w
|
|
weight_sum += w
|
|
nz(sum / weight_sum, source)
|
|
|
|
// ---------- Main loop ----------
|
|
|
|
// Inputs
|
|
i_period = input.int(10, "Period", minval=1)
|
|
i_source = input.source(close, "Source")
|
|
|
|
// Calculation
|
|
pwma_value = pwma(i_source, i_period)
|
|
|
|
// Plot
|
|
plot(pwma_value, "PWMA", color=color.yellow, linewidth=2)
|