igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
99 lines (98 loc) • 3.19 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let FinancialCalculationSupportingCalculationsDescription = /*@__PURE__*/ (() => {
class FinancialCalculationSupportingCalculationsDescription extends Description {
constructor() {
super();
this.k = null;
this.m = null;
this.n = null;
this.l = null;
this.v = null;
this.t = null;
this.u = null;
this.s = null;
this.aa = null;
}
get_type() {
return "FinancialCalculationSupportingCalculations";
}
get type() {
return this.get_type();
}
get eMA() {
return this.k;
}
set eMA(a) {
this.k = a;
this.j("EMA");
}
get sMA() {
return this.m;
}
set sMA(a) {
this.m = a;
this.j("SMA");
}
get sTDEV() {
return this.n;
}
set sTDEV(a) {
this.n = a;
this.j("STDEV");
}
get movingSum() {
return this.l;
}
set movingSum(a) {
this.l = a;
this.j("MovingSum");
}
get shortVolumeOscillatorAverage() {
return this.v;
}
set shortVolumeOscillatorAverage(a) {
this.v = a;
this.j("ShortVolumeOscillatorAverage");
}
get longVolumeOscillatorAverage() {
return this.t;
}
set longVolumeOscillatorAverage(a) {
this.t = a;
this.j("LongVolumeOscillatorAverage");
}
get shortPriceOscillatorAverage() {
return this.u;
}
set shortPriceOscillatorAverage(a) {
this.u = a;
this.j("ShortPriceOscillatorAverage");
}
get longPriceOscillatorAverage() {
return this.s;
}
set longPriceOscillatorAverage(a) {
this.s = a;
this.j("LongPriceOscillatorAverage");
}
get makeSafeRef() {
return this.aa;
}
set makeSafeRef(a) {
this.aa = a;
this.j("MakeSafeRef");
}
}
FinancialCalculationSupportingCalculationsDescription.$t = markType(FinancialCalculationSupportingCalculationsDescription, 'FinancialCalculationSupportingCalculationsDescription', Description.$);
return FinancialCalculationSupportingCalculationsDescription;
})();