igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
54 lines (53 loc) • 2.17 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 { StrategyBasedIndicator } from "./StrategyBasedIndicator";
import { BollingerBandWidthIndicatorStrategy } from "./BollingerBandWidthIndicatorStrategy";
import { typeGetValue, markType } from "igniteui-angular-core";
/**
* @hidden
*/
export let BollingerBandWidthIndicator = /*@__PURE__*/ (() => {
class BollingerBandWidthIndicator extends StrategyBasedIndicator {
bk() {
return new BollingerBandWidthIndicator();
}
get_acf() {
return new BollingerBandWidthIndicatorStrategy();
}
get acf() {
return this.get_acf();
}
get_acs() {
return BollingerBandWidthIndicator.$;
}
get acs() {
return this.get_acs();
}
get ac1() {
return typeGetValue(this.c(BollingerBandWidthIndicator.ac4));
}
set ac1(a) {
this.h(BollingerBandWidthIndicator.ac4, a);
}
acl() {
return this.ac1;
}
get ac0() {
return this.c(BollingerBandWidthIndicator.ac3);
}
set ac0(a) {
this.h(BollingerBandWidthIndicator.ac3, a);
}
acj() {
return this.ac0;
}
}
BollingerBandWidthIndicator.$t = markType(BollingerBandWidthIndicator, 'BollingerBandWidthIndicator', StrategyBasedIndicator.$);
BollingerBandWidthIndicator.ac4 = StrategyBasedIndicator.acx(20, BollingerBandWidthIndicator.$);
BollingerBandWidthIndicator.ac3 = StrategyBasedIndicator.acw(2, BollingerBandWidthIndicator.$);
return BollingerBandWidthIndicator;
})();