mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-23 21:18:04 +00:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user