UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

39 lines (38 loc) 1.71 kB
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; import { WilliamsPercentRIndicator } from "./WilliamsPercentRIndicator"; /** * Represents a IgxDataChartComponent Williams %R indicator series. * Default required members: High, Low, Close * * The `WilliamsPercentRIndicator` scale ranges from 0 to -100. It is useful for identifying overbought and oversold securities. * The `WilliamsPercentRIndicator` is calculated by dividing the difference between the highest high for the period and the current close by the highest high minus the lowest low for the period. */ export declare class IgcWilliamsPercentRIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): WilliamsPercentRIndicator; /** * @hidden */ get i(): WilliamsPercentRIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcWilliamsPercentRIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets the moving average period for the current StandardDeviationIndicator object. * The typical, and initial, value for Williams %R periods is 14. * * Gets or sets the `Period` for the moving average period. * * The typical, and initial, value for Williams %R periods is 14. * * ```ts * this.series.period = 30; * ``` */ get period(): number; set period(v: number); }