stdev
Standard Deviation
stdev(source, period)
Parameters
| Name | Type | Description |
|---|---|---|
source |
field | Data series |
period |
int | Number of periods |
Formula
STDEV = sqrt(Σ(x - mean)² / N)
Examples
// volatility expanding (higher than 20 bars ago)
x = stdev(close, 20); x > x[20];
// low volatility environment
stdev(close, 14) < 2;
// volatility spike (current > 2x average)
stdev(close, 20) > sma(stdev(close, 20), 50) * 2;
Returns
float
Range
period must be 2-400
Notes
Uses population standard deviation