Class StandardDeviationRTIndicator
java.lang.Object
com.wualabs.qtsurfer.engine.indicators.core.AbstractRTIndicator
com.wualabs.qtsurfer.engine.indicators.statistics.StandardDeviationRTIndicator
- All Implemented Interfaces:
Resettable, RTIndicator
Std Deviation RT Indicator
-
Constructor Summary
ConstructorsConstructorDescriptionStandardDeviationRTIndicator(int periods) StandardDeviationRTIndicator(RTIndicator indicator, int periods) -
Method Summary
Modifier and TypeMethodDescriptionbooleanisReady()Returns whether this indicator has received enough data to produce meaningful values.voidreset()doubleupdate(double newValue) Computes the standard deviation as the square root of the variance.withAverageSample(boolean averageSample) Methods inherited from class AbstractRTIndicator
equals, getDisplayHint, getMeta, getValue, hashCode, hide, isPoison, setValue, toString, toString, withDisplayHint, withMeta
-
Constructor Details
-
StandardDeviationRTIndicator
public StandardDeviationRTIndicator() -
StandardDeviationRTIndicator
public StandardDeviationRTIndicator(int periods) -
StandardDeviationRTIndicator
-
-
Method Details
-
isReady
public boolean isReady()Description copied from interface:RTIndicatorReturns whether this indicator has received enough data to produce meaningful values.During the warmup period,
RTIndicator.getValue()may return 0 or a partial estimate that should not be used for trading decisions. Once this method returnstrue, the indicator's output is statistically valid.The default implementation returns
truefor backward compatibility. Indicators with warmup requirements should override this method.For composite indicators (e.g. Bollinger Bands, MACD), readiness is determined by the slowest internal component.
- Returns:
trueif the indicator has completed its warmup period
-
reset
public void reset()- Specified by:
resetin interfaceResettable- Overrides:
resetin classAbstractRTIndicator
-
withAverageSample
-
update
public double update(double newValue) Computes the standard deviation as the square root of the variance. Clamps negative variance to zero to guard against catastrophic cancellation in floating-point arithmetic.- Specified by:
updatein interfaceRTIndicator- Overrides:
updatein classAbstractRTIndicator- Parameters:
newValue- the new input value- Returns:
- the standard deviation (non-negative)
-
getVariance
-