mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-25 22:08:05 +00:00
SIMD Refactor: Merge simd-dev into dev (#55)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat> Co-authored-by: Warp <agent@warp.dev>
This commit is contained in:
co-authored by
Claude Opus 4.5
aider
Warp
parent
5bcdf8d614
commit
86fe32a682
@@ -0,0 +1,44 @@
|
||||
// The MIT License (MIT)
|
||||
// © mihakralj
|
||||
//@version=6
|
||||
indicator("Triangular Moving Average (TRIMA)", "TRIMA", overlay=true)
|
||||
|
||||
//@function Calculates TRIMA using triangular weighted smoothing with compensator
|
||||
//@doc https://github.com/mihakralj/pinescript/blob/main/indicators/trends_FIR/trima.md
|
||||
//@param source Series to calculate TRIMA from
|
||||
//@param period Lookback period - FIR window size
|
||||
//@returns TRIMA value, calculates from first bar using available data
|
||||
//@optimized Uses triangular weighting with O(n) complexity per bar due to lookback loop
|
||||
trima(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)
|
||||
int mid = math.floor(p / 2)
|
||||
for i = 0 to p - 1
|
||||
array.set(weights, i, math.min(i, p - 1 - i) + 1)
|
||||
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
|
||||
trima_value = trima(i_source, i_period)
|
||||
|
||||
// Plot
|
||||
plot(trima_value, "TRIMA", color=color.yellow, linewidth=2)
|
||||
Reference in New Issue
Block a user