Class CumulativeProduct
java.lang.Object
trade.invision.indicators.indicators.Indicator<Num>
trade.invision.indicators.indicators.cumulative.CumulativeProduct
CumulativeProduct is a Num Indicator to provide the cumulative product (multiplication) over
a length of values. This is also known as a running product. In mathematical notation, this is denoted
by a capital pi.- 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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected Numcalculate(long index) Performs the calculation of thisIndicatorat the givenindex.static CumulativeProductcumulativeProduct(Indicator<Num> indicator, int length) Gets aCumulativeProduct.static CumulativeProductmultiplication(Indicator<Num> indicator, int length) 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
-
CumulativeProduct
-
-
Method Details
-
multiplication
- See Also:
-
cumulativeProduct
Gets aCumulativeProduct. -
calculate
Description copied from class:IndicatorPerforms the calculation of thisIndicatorat the givenindex.
-