igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
34 lines (33 loc) • 2.11 kB
TypeScript
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { SlowStochasticOscillatorIndicator } from "./SlowStochasticOscillatorIndicator";
/**
* Represents a IgxDataChartComponent Slow Stochastic Oscillator indicator series.
* Default required members: High, Low, Close
*
* `SlowStochasticOscillatorIndicator` (SSO) displays the closing price relative to the high-low range over a given period of time. There are three types of Stochastic Oscillators: Fast, Slow, and Full. The Stochastic Oscillator is a momentum indicator that shows the relation of the current close price relative to the high/low range over a given time period using a scale of 0 to 100. It is based on the premise that prices will close near 100 in a rising market and closer to 0 in a declining market.
*
* The Fast Stochastic Oscillator Indicator is used to identify buying or selling divergences. The Slow Stochastic Oscillator uses a 3-day SMA and the Full Stochastic Oscillator is the Slow Stochastic Oscillator with time period.
*
* Using this indicator requires setting both the `HighMemberPath`, `LowMemberPath` and `VolumeMemberPath`.
*/
export declare class IgcSlowStochasticOscillatorIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): SlowStochasticOscillatorIndicator;
/**
* @hidden
*/
get i(): SlowStochasticOscillatorIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcSlowStochasticOscillatorIndicatorComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets or sets the moving average period for the current SlowStochasticOscillatorIndicator object.
* The typical, and initial, value for SlowStochasticOscillatorIndicator periods is 14.
*/
get period(): number;
set period(v: number);
}