UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

55 lines (54 loc) 2.43 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-react-core"; /** * @hidden */ export let AbsoluteVolumeOscillatorIndicator = /*@__PURE__*/ (() => { class AbsoluteVolumeOscillatorIndicator extends StrategyBasedIndicator { bk() { return new AbsoluteVolumeOscillatorIndicator(); } get_ab6() { return new AbsoluteVolumeOscillatorIndicatorStrategy(); } get ab6() { return this.get_ab6(); } get_acj() { return AbsoluteVolumeOscillatorIndicator.$; } get acj() { return this.get_acj(); } get shortPeriod() { return typeGetValue(this.c(AbsoluteVolumeOscillatorIndicator.acs)); } set shortPeriod(a) { this.h(AbsoluteVolumeOscillatorIndicator.acs, a); } ace() { return this.shortPeriod; } get longPeriod() { return typeGetValue(this.c(AbsoluteVolumeOscillatorIndicator.acr)); } set longPeriod(a) { this.h(AbsoluteVolumeOscillatorIndicator.acr, a); } acb() { return this.longPeriod; } } AbsoluteVolumeOscillatorIndicator.$t = /*@__PURE__*/ markType(AbsoluteVolumeOscillatorIndicator, 'AbsoluteVolumeOscillatorIndicator', StrategyBasedIndicator.$, [IShortPeriodLongPeriod_$type]); AbsoluteVolumeOscillatorIndicator.acs = /*@__PURE__*/ StrategyBasedIndicator.acq(10, AbsoluteVolumeOscillatorIndicator.$); AbsoluteVolumeOscillatorIndicator.acr = /*@__PURE__*/ StrategyBasedIndicator.acm(30, AbsoluteVolumeOscillatorIndicator.$); return AbsoluteVolumeOscillatorIndicator; })();