igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
41 lines (40 loc) • 1.8 kB
JavaScript
/*
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-angular-core";
import { List$1 } from "igniteui-angular-core";
/**
* @hidden
*/
export let SlowStochasticOscillatorIndicatorStrategy = /*@__PURE__*/ (() => {
class SlowStochasticOscillatorIndicatorStrategy 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));
c.o(b.a.c);
return c;
}
a(a, b) {
let c = this.c.c(a, b);
let d = b.a.b(c, 3);
let e = 0;
for (let f of fromEnum(d)) {
a.indicatorColumn.item(e, f);
e++;
}
return true;
}
}
SlowStochasticOscillatorIndicatorStrategy.$t = markType(SlowStochasticOscillatorIndicatorStrategy, 'SlowStochasticOscillatorIndicatorStrategy', IndicatorCalculationStrategy.$);
return SlowStochasticOscillatorIndicatorStrategy;
})();