Class RelativeVolumeStandardDeviation
java.lang.Object
trade.invision.indicators.indicators.Indicator<Num>
trade.invision.indicators.indicators.rvol.RelativeVolumeStandardDeviation
RelativeVolumeStandardDeviation is a Num Indicator to provide the Relative Volume Standard
Deviation (RVOLStdDev) over a length of Bars.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class trade.invision.indicators.indicators.Indicator
Indicator.CacheSeries -
Field Summary
Fields inherited from class trade.invision.indicators.indicators.Indicator
cachedAddCallCount, cachedIndex, cachedValue, cacheSeries, minimumStableIndex, series -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedRelativeVolumeStandardDeviation(BarSeries barSeries, int length, MovingAverageSupplier movingAverageSupplier, boolean unbiased) -
Method Summary
Modifier and TypeMethodDescriptionprotected Numcalculate(long index) Performs the calculation of thisIndicatorat the givenindex.relativeVolume(BarSeries barSeries, int length, MovingAverageSupplier movingAverageSupplier, boolean unbiased) Gets aRelativeVolumeStandardDeviation.rvolstddev(BarSeries barSeries, int length, MovingAverageSupplier movingAverageSupplier, boolean unbiased) Methods inherited from class trade.invision.indicators.indicators.Indicator
caching, getMinimumStableIndex, getSeries, getValue, isCaching, numOf, numOf, numOf, numOf, numOfEight, numOfFive, numOfFour, numOfHalf, numOfHundred, numOfHundredth, numOfNegativeOne, numOfNine, numOfOne, numOfSeven, numOfSix, numOfTen, numOfTenth, numOfThousand, numOfThousandth, numOfThree, numOfTwo, numOfZero, purgeCache
-
Constructor Details
-
RelativeVolumeStandardDeviation
protected RelativeVolumeStandardDeviation(BarSeries barSeries, int length, MovingAverageSupplier movingAverageSupplier, boolean unbiased)
-
-
Method Details
-
rvolstddev
public static RelativeVolumeStandardDeviation rvolstddev(BarSeries barSeries, int length, MovingAverageSupplier movingAverageSupplier, boolean unbiased) - See Also:
-
relativeVolume
public static RelativeVolumeStandardDeviation relativeVolume(BarSeries barSeries, int length, MovingAverageSupplier movingAverageSupplier, boolean unbiased) Gets aRelativeVolumeStandardDeviation.- Parameters:
barSeries- theBarSerieslength- the number of values to look back atmovingAverageSupplier- theMovingAverageSupplierunbiased-trueto usen - 1(unbiased) for the divisor in the standard deviation calculation,falseto usen(biased)
-
calculate
Description copied from class:IndicatorPerforms the calculation of thisIndicatorat the givenindex.
-