igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
78 lines (77 loc) • 2.71 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 { StrategyBasedIndicator } from "./StrategyBasedIndicator";
import { FullStochasticOscillatorIndicatorStrategy } from "./FullStochasticOscillatorIndicatorStrategy";
import { typeGetValue, markType } from "igniteui-angular-core";
import { Brush } from "igniteui-angular-core";
/**
* @hidden
*/
export class FullStochasticOscillatorIndicator extends StrategyBasedIndicator {
static { this.$t = markType(FullStochasticOscillatorIndicator, 'FullStochasticOscillatorIndicator', StrategyBasedIndicator.$); }
bk() {
return new FullStochasticOscillatorIndicator();
}
constructor() {
super();
this.trendLineBrush = ((() => {
let $ret = new Brush();
$ret.fill = "#565656";
return $ret;
})());
this.trendLineType = 10;
this.trendLinePeriod = 3;
}
get_aci() {
return new FullStochasticOscillatorIndicatorStrategy();
}
get aci() {
return this.get_aci();
}
get_acv() {
return FullStochasticOscillatorIndicator.$;
}
get acv() {
return this.get_acv();
}
get ac3() {
return typeGetValue(this.c(FullStochasticOscillatorIndicator.ac8));
}
set ac3(a) {
this.h(FullStochasticOscillatorIndicator.ac8, a);
}
static { this.ac8 = StrategyBasedIndicator.ac0(14, FullStochasticOscillatorIndicator.$); }
aco() {
return this.ac3;
}
acx(a) {
this.ac3 = a;
}
get smoothingPeriod() {
return typeGetValue(this.c(FullStochasticOscillatorIndicator.ac9));
}
set smoothingPeriod(a) {
this.h(FullStochasticOscillatorIndicator.ac9, a);
}
static { this.ac9 = StrategyBasedIndicator.ac1(3, FullStochasticOscillatorIndicator.$, "SmoothingPeriod"); }
acq() {
return this.smoothingPeriod;
}
get ac5() {
return typeGetValue(this.c(FullStochasticOscillatorIndicator.ada));
}
set ac5(a) {
this.h(FullStochasticOscillatorIndicator.ada, a);
}
static { this.ada = StrategyBasedIndicator.ac1(3, FullStochasticOscillatorIndicator.$, "TriggerPeriod"); }
acn() {
return this.ac5;
}
aby() {
return this.ac5;
}
}