igniteui-react-core
Version:
Ignite UI React Core.
40 lines (39 loc) • 1.49 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 { FinancialOverlayDescription } from "./FinancialOverlayDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let BollingerBandsOverlayDescription = /*@__PURE__*/ (() => {
class BollingerBandsOverlayDescription extends FinancialOverlayDescription {
get_type() {
return "BollingerBandsOverlay";
}
constructor() {
super();
this.gb = 0;
this.f9 = 0;
}
get period() {
return this.gb;
}
set period(a) {
this.gb = a;
this.g("Period");
}
get multiplier() {
return this.f9;
}
set multiplier(a) {
this.f9 = a;
this.g("Multiplier");
}
}
BollingerBandsOverlayDescription.$t = /*@__PURE__*/ markType(BollingerBandsOverlayDescription, 'BollingerBandsOverlayDescription', FinancialOverlayDescription.$);
return BollingerBandsOverlayDescription;
})();