UNPKG

igniteui-react-core

Version:
48 lines (47 loc) 1.81 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 { StrategyBasedIndicatorDescription } from "./StrategyBasedIndicatorDescription"; import { markType } from "./type"; /** * @hidden */ export let FullStochasticOscillatorIndicatorDescription = /*@__PURE__*/ (() => { class FullStochasticOscillatorIndicatorDescription extends StrategyBasedIndicatorDescription { get_type() { return "FullStochasticOscillatorIndicator"; } constructor() { super(); this.gn = 0; this.go = 0; this.gp = 0; } get period() { return this.gn; } set period(a) { this.gn = a; this.g("Period"); } get smoothingPeriod() { return this.go; } set smoothingPeriod(a) { this.go = a; this.g("SmoothingPeriod"); } get triggerPeriod() { return this.gp; } set triggerPeriod(a) { this.gp = a; this.g("TriggerPeriod"); } } FullStochasticOscillatorIndicatorDescription.$t = /*@__PURE__*/ markType(FullStochasticOscillatorIndicatorDescription, 'FullStochasticOscillatorIndicatorDescription', StrategyBasedIndicatorDescription.$); return FullStochasticOscillatorIndicatorDescription; })();