v0.8.6: update indicator docs, ndepend tooling, ALMA refactor, gitignore cleanup

This commit is contained in:
Miha Kralj
2026-03-13 13:46:52 -07:00
parent e3e9555fc1
commit c75135ab14
402 changed files with 2222 additions and 1779 deletions
+2 -4
View File
@@ -13,9 +13,7 @@
| **PineScript** | [stddev.pine](stddev.pine) |
- Standard Deviation measures the amount of variation or dispersion of a set of values.
- Parameterized by `period`, `ispopulation` (default false).
- Output range: Varies (see docs).
- Requires `period` bars of warmup before first valid output (IsHot = true).
- **Similar:** [Variance](../variance/Variance.md), [MeanDev](../meandev/MeanDev.md) | **Trading note:** Standard deviation; foundational volatility measure. Used in Bollinger Bands, VaR, and Sharpe ratio.
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
Standard Deviation measures the amount of variation or dispersion of a set of values. A low standard deviation indicates that the values tend to be close to the mean (also called the expected value) of the set, while a high standard deviation indicates that the values are spread out over a wider range.
@@ -96,4 +94,4 @@ var stdDev = new StdDev(20, isPopulation: false);
var result = stdDev.Update(new TValue(DateTime.UtcNow, 100.0));
// Get the last value
double value = stdDev.Last.Value;
double value = stdDev.Last.Value;