We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eaa98e commit 97b2799Copy full SHA for 97b2799
momentum/prings_special_k.go
@@ -5,6 +5,10 @@ import (
5
"github.com/cinar/indicator/v2/trend"
6
)
7
8
+// PringsSpecialK implements Martin Pring's Special K momentum indicator.
9
+// It composes multiple Rate-of-Change (ROC) series smoothed by Simple Moving Averages (SMA)
10
+// and outputs a weighted sum aligned to the slowest path so all terms are time-synchronized.
11
+// See Compute for the exact composition and weights.
12
type PringsSpecialK[T helper.Float] struct {
13
Roc10 *trend.Roc[T]
14
Roc15 *trend.Roc[T]
0 commit comments