igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
55 lines (54 loc) • 2.3 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 { IShortPeriodLongPeriod_$type } from "./IShortPeriodLongPeriod";
import { ChaikinOscillatorIndicatorStrategy } from "./ChaikinOscillatorIndicatorStrategy";
import { typeGetValue, markType } from "igniteui-react-core";
/**
* @hidden
*/
export let ChaikinOscillatorIndicator = /*@__PURE__*/ (() => {
class ChaikinOscillatorIndicator extends StrategyBasedIndicator {
bk() {
return new ChaikinOscillatorIndicator();
}
get_acg() {
return new ChaikinOscillatorIndicatorStrategy();
}
get acg() {
return this.get_acg();
}
get_act() {
return ChaikinOscillatorIndicator.$;
}
get act() {
return this.get_act();
}
get shortPeriod() {
return typeGetValue(this.c(ChaikinOscillatorIndicator.ac2));
}
set shortPeriod(a) {
this.h(ChaikinOscillatorIndicator.ac2, a);
}
aco() {
return this.shortPeriod;
}
get longPeriod() {
return typeGetValue(this.c(ChaikinOscillatorIndicator.ac1));
}
set longPeriod(a) {
this.h(ChaikinOscillatorIndicator.ac1, a);
}
acl() {
return this.longPeriod;
}
}
ChaikinOscillatorIndicator.$t = /*@__PURE__*/ markType(ChaikinOscillatorIndicator, 'ChaikinOscillatorIndicator', StrategyBasedIndicator.$, [IShortPeriodLongPeriod_$type]);
ChaikinOscillatorIndicator.ac2 = /*@__PURE__*/ StrategyBasedIndicator.ac0(3, ChaikinOscillatorIndicator.$);
ChaikinOscillatorIndicator.ac1 = /*@__PURE__*/ StrategyBasedIndicator.acw(10, ChaikinOscillatorIndicator.$);
return ChaikinOscillatorIndicator;
})();