igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
32 lines (31 loc) • 1.11 kB
TypeScript
import { StrategyBasedIndicator } from "./StrategyBasedIndicator";
import { IndicatorCalculationStrategy } from "./IndicatorCalculationStrategy";
import { Type } from "igniteui-angular-core";
import { DependencyProperty } from "igniteui-angular-core";
import { Series } from "./Series";
/**
* @hidden
*/
export declare class FullStochasticOscillatorIndicator extends StrategyBasedIndicator {
static $t: Type;
protected bk(): Series;
constructor();
protected get_acf(): IndicatorCalculationStrategy;
protected get acf(): IndicatorCalculationStrategy;
protected get_acs(): Type;
protected get acs(): Type;
get ac0(): number;
set ac0(a: number);
static readonly ac5: DependencyProperty;
protected acl(): number;
acu(a: number): void;
get smoothingPeriod(): number;
set smoothingPeriod(a: number);
static readonly ac6: DependencyProperty;
protected acn(): number;
get ac2(): number;
set ac2(a: number);
static readonly ac7: DependencyProperty;
protected ack(): number;
protected abv(): number;
}