igniteui-react-core
Version:
Ignite UI React Core.
50 lines (49 loc) • 2.16 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 { __extends } from "tslib";
import { StrategyBasedIndicatorDescription } from "./StrategyBasedIndicatorDescription";
import { markType } from "./type";
/**
* @hidden
*/
var AbsoluteVolumeOscillatorIndicatorDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(AbsoluteVolumeOscillatorIndicatorDescription, _super);
function AbsoluteVolumeOscillatorIndicatorDescription() {
var _this = _super.call(this) || this;
_this.go = 0;
_this.gn = 0;
return _this;
}
AbsoluteVolumeOscillatorIndicatorDescription.prototype.get_type = function () {
return "AbsoluteVolumeOscillatorIndicator";
};
Object.defineProperty(AbsoluteVolumeOscillatorIndicatorDescription.prototype, "shortPeriod", {
get: function () {
return this.go;
},
set: function (a) {
this.go = a;
this.g("ShortPeriod");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AbsoluteVolumeOscillatorIndicatorDescription.prototype, "longPeriod", {
get: function () {
return this.gn;
},
set: function (a) {
this.gn = a;
this.g("LongPeriod");
},
enumerable: false,
configurable: true
});
AbsoluteVolumeOscillatorIndicatorDescription.$t = markType(AbsoluteVolumeOscillatorIndicatorDescription, 'AbsoluteVolumeOscillatorIndicatorDescription', StrategyBasedIndicatorDescription.$);
return AbsoluteVolumeOscillatorIndicatorDescription;
}(StrategyBasedIndicatorDescription));
export { AbsoluteVolumeOscillatorIndicatorDescription };