Class PercentageVolumeOscillator
java.lang.Object
trade.invision.indicators.indicators.Indicator<Num>
trade.invision.indicators.indicators.ppo.PercentagePriceOscillator
trade.invision.indicators.indicators.pvo.PercentageVolumeOscillator
PercentageVolumeOscillator is a Num Indicator to provide the Percentage Volume Oscillator
(PVO) over a shortLength and longLength of Bars. This uses the
PercentagePriceOscillator with the Volume Indicator.- 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
ConstructorsModifierConstructorDescriptionprotectedPercentageVolumeOscillator(BarSeries barSeries, int shortLength, int longLength, MovingAverageSupplier movingAverageSupplier) -
Method Summary
Modifier and TypeMethodDescriptionstatic PercentageVolumeOscillatorpercentageVolumeOscillator(BarSeries barSeries, int shortLength, int longLength, MovingAverageSupplier movingAverageSupplier) Gets aPercentageVolumeOscillator.static PercentageVolumeOscillatorpvo(BarSeries barSeries, int shortLength, int longLength, MovingAverageSupplier movingAverageSupplier) Methods inherited from class trade.invision.indicators.indicators.ppo.PercentagePriceOscillator
calculate, percentagePriceOscillator, ppoMethods 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
-
PercentageVolumeOscillator
protected PercentageVolumeOscillator(BarSeries barSeries, int shortLength, int longLength, MovingAverageSupplier movingAverageSupplier)
-
-
Method Details
-
pvo
public static PercentageVolumeOscillator pvo(BarSeries barSeries, int shortLength, int longLength, MovingAverageSupplier movingAverageSupplier) - See Also:
-
percentageVolumeOscillator
public static PercentageVolumeOscillator percentageVolumeOscillator(BarSeries barSeries, int shortLength, int longLength, MovingAverageSupplier movingAverageSupplier) Gets aPercentageVolumeOscillator.- Parameters:
barSeries- theBarSeriesshortLength- the short averaging length (typically 12)longLength- the long averaging length (typically 26)movingAverageSupplier- theMovingAverageSupplier
-