Add TTM Scalper indicator implementation in C# and Pine Script; update Blma class for average calculation; remove missing indicators report and oscillator docs rewrite plans.

This commit is contained in:
Miha Kralj
2026-02-16 21:26:44 -08:00
parent b3a64f18fa
commit 63ae2c9ab2
68 changed files with 16069 additions and 587 deletions
+2 -2
View File
@@ -122,7 +122,7 @@ public sealed class Blma : AbstractBase
result = ComputeWeightedAverage(
currentWeightSum,
CalculateWeightedSum(_buffer, currentWeights),
_buffer.Average());
_buffer.Average);
}
}
else
@@ -131,7 +131,7 @@ public sealed class Blma : AbstractBase
result = ComputeWeightedAverage(
_weightSum,
CalculateWeightedSum(_buffer, _weights),
_buffer.Average());
_buffer.Average);
}
var tValue = new TValue(input.Time, result);