import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator";
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.
*
* ```ts
*
*
*
*
*
*
*
* ```
*
* ```ts
* let series = new IgrWilliamsPercentRIndicator({name: "series"});
* series.xAxis = this.xAxis;
* series.yAxis = this.yAxis;
* series.openMemberPath = "open";
* series.highMemberPath = "high";
* series.lowMemberPath = "low";
* series.closeMemberPath = "close";
* this.chart.series.add(series);
* ```
*/
export declare class IgrWilliamsPercentRIndicator extends IgrStrategyBasedIndicator {
protected createImplementation(): WilliamsPercentRIndicator;
/**
* @hidden
*/
get i(): WilliamsPercentRIndicator;
constructor(props: IIgrWilliamsPercentRIndicatorProps);
/**
* 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;
* ```
*
* ```ts
*
*
*
*
*
*
*
* ```
*/
get period(): number;
set period(v: number);
}
export interface IIgrWilliamsPercentRIndicatorProps extends IIgrStrategyBasedIndicatorProps {
/**
* 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;
* ```
*
* ```ts
*
*
*
*
*
*
*
* ```
*/
period?: number | string;
}