UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

55 lines (54 loc) 2.45 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 { StrategyBasedIndicator } from "./StrategyBasedIndicator"; import { IShortPeriodLongPeriod_$type } from "./IShortPeriodLongPeriod"; import { AbsoluteVolumeOscillatorIndicatorStrategy } from "./AbsoluteVolumeOscillatorIndicatorStrategy"; import { typeGetValue, markType } from "igniteui-angular-core"; /** * @hidden */ export let AbsoluteVolumeOscillatorIndicator = /*@__PURE__*/ (() => { class AbsoluteVolumeOscillatorIndicator extends StrategyBasedIndicator { bk() { return new AbsoluteVolumeOscillatorIndicator(); } get_acf() { return new AbsoluteVolumeOscillatorIndicatorStrategy(); } get acf() { return this.get_acf(); } get_acs() { return AbsoluteVolumeOscillatorIndicator.$; } get acs() { return this.get_acs(); } get shortPeriod() { return typeGetValue(this.c(AbsoluteVolumeOscillatorIndicator.ac1)); } set shortPeriod(a) { this.h(AbsoluteVolumeOscillatorIndicator.ac1, a); } acn() { return this.shortPeriod; } get longPeriod() { return typeGetValue(this.c(AbsoluteVolumeOscillatorIndicator.ac0)); } set longPeriod(a) { this.h(AbsoluteVolumeOscillatorIndicator.ac0, a); } ack() { return this.longPeriod; } } AbsoluteVolumeOscillatorIndicator.$t = markType(AbsoluteVolumeOscillatorIndicator, 'AbsoluteVolumeOscillatorIndicator', StrategyBasedIndicator.$, [IShortPeriodLongPeriod_$type]); AbsoluteVolumeOscillatorIndicator.ac1 = StrategyBasedIndicator.acz(10, AbsoluteVolumeOscillatorIndicator.$); AbsoluteVolumeOscillatorIndicator.ac0 = StrategyBasedIndicator.acv(30, AbsoluteVolumeOscillatorIndicator.$); return AbsoluteVolumeOscillatorIndicator; })();