UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

37 lines (36 loc) 1.72 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { IndicatorCalculationStrategy } from "./IndicatorCalculationStrategy"; import { String_$type, markType, getEnumerator } from "igniteui-angular-core"; import { List$1 } from "igniteui-angular-core"; /** * @hidden */ export let PercentageVolumeOscillatorIndicatorStrategy = /*@__PURE__*/ (() => { class PercentageVolumeOscillatorIndicatorStrategy extends IndicatorCalculationStrategy { b(a, b) { let c = new List$1(String_$type, 0); c.o(b.h.c); c.o(b.f.c); return c; } a(a, b) { let c = getEnumerator(b.h.b(a)); let d = getEnumerator(b.f.b(a)); let e = a.indicatorColumn; let f = 0; while (c.moveNext() && d.moveNext()) { let g = b.i(100 * (c.current - d.current) / d.current); e.item(f, g); ++f; } return true; } } PercentageVolumeOscillatorIndicatorStrategy.$t = markType(PercentageVolumeOscillatorIndicatorStrategy, 'PercentageVolumeOscillatorIndicatorStrategy', IndicatorCalculationStrategy.$); return PercentageVolumeOscillatorIndicatorStrategy; })();