UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

50 lines (49 loc) 2.03 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 { __extends } from "tslib"; import { FinancialOverlayDescription } from "./FinancialOverlayDescription"; import { markType } from "./type"; /** * @hidden */ var BollingerBandsOverlayDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(BollingerBandsOverlayDescription, _super); function BollingerBandsOverlayDescription() { var _this = _super.call(this) || this; _this.gb = 0; _this.f9 = 0; return _this; } BollingerBandsOverlayDescription.prototype.get_type = function () { return "BollingerBandsOverlay"; }; Object.defineProperty(BollingerBandsOverlayDescription.prototype, "period", { get: function () { return this.gb; }, set: function (a) { this.gb = a; this.g("Period"); }, enumerable: false, configurable: true }); Object.defineProperty(BollingerBandsOverlayDescription.prototype, "multiplier", { get: function () { return this.f9; }, set: function (a) { this.f9 = a; this.g("Multiplier"); }, enumerable: false, configurable: true }); BollingerBandsOverlayDescription.$t = markType(BollingerBandsOverlayDescription, 'BollingerBandsOverlayDescription', FinancialOverlayDescription.$); return BollingerBandsOverlayDescription; }(FinancialOverlayDescription)); export { BollingerBandsOverlayDescription };