Concept Flow - Rolling standard deviation
Start with data series
Choose window size
For each position in series
Select window slice
Calculate std deviation of slice
Store result
Move window forward
Back to 'For each position'
End when series exhausted
↩Back to 'For each position'
The rolling standard deviation slides a fixed-size window over data, calculating the standard deviation for each window slice.