UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

39 lines (38 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 { PercentKCalculationStrategy } from "./PercentKCalculationStrategy"; import { String_$type, fromEnum, markType } from "igniteui-react-core"; import { List$1 } from "igniteui-react-core"; /** * @hidden */ export let FastStochasticOscillatorIndicatorStrategy = /*@__PURE__*/ (() => { class FastStochasticOscillatorIndicatorStrategy extends IndicatorCalculationStrategy { constructor() { super(); this.c = null; this.c = new PercentKCalculationStrategy(); } b(a, b) { let c = new List$1(String_$type, 0); c.o(this.c.b(a, b)); return c; } a(a, b) { let c = this.c.c(a, b); let d = 0; for (let e of fromEnum(c)) { a.indicatorColumn.item(d, e); d++; } return true; } } FastStochasticOscillatorIndicatorStrategy.$t = /*@__PURE__*/ markType(FastStochasticOscillatorIndicatorStrategy, 'FastStochasticOscillatorIndicatorStrategy', IndicatorCalculationStrategy.$); return FastStochasticOscillatorIndicatorStrategy; })();