refreshValueFor method

T refreshValueFor(
  1. int index
)

Recalculates indicator's value for the give index and caches it.

Returns the result as a T.

Implementation

T refreshValueFor(int index) {
  invalidate(index);
  return getValue(index);
}