import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator"; import { BollingerBandWidthIndicator } from "./BollingerBandWidthIndicator"; /** * Represents a IgxDataChartComponent Bollinger Bandwidth indicator series. * Represents the normalized width of the Bollinger bands for each provided value. * For more info see: * BollingerBandsOverlay * Default required members: High, Low, Close * * You can use the `BollingerBandWidthIndicator` to represents a IgxDataChartComponent Bollinger Bandwidth indicator series. * * ```ts * * * * * * * * * * * * * * ``` */ export declare class IgrBollingerBandWidthIndicator extends IgrStrategyBasedIndicator { protected createImplementation(): BollingerBandWidthIndicator; /** * @hidden */ get i(): BollingerBandWidthIndicator; constructor(props: IIgrBollingerBandWidthIndicatorProps); /** * Gets or sets the moving average period for the Bollinger Band Width Indicator. * The typical, and initial, value for CCI periods is 20. * * You can use the `Period` to set the moving average. * * ```ts * * * * * * * * * * * * * * ``` * * ```ts * this.series.period = 14; * ``` */ get period(): number; set period(v: number); /** * Gets or sets the multiplier for the Bollinger Band width. * The typical, and initial, value for Bollinger Band width multiplier is 2. * * Use the `Multiplier` property for the Bollinger Band width. The typical, and initial, value for Bollinger Band width multiplier is 2. * * ```ts * * * * * * * * * * * * * * ``` * * ```ts * this.series.multiplier = 14; * ``` */ get multiplier(): number; set multiplier(v: number); } export interface IIgrBollingerBandWidthIndicatorProps extends IIgrStrategyBasedIndicatorProps { /** * Gets or sets the moving average period for the Bollinger Band Width Indicator. * The typical, and initial, value for CCI periods is 20. * * You can use the `Period` to set the moving average. * * ```ts * * * * * * * * * * * * * * ``` * * ```ts * this.series.period = 14; * ``` */ period?: number | string; /** * Gets or sets the multiplier for the Bollinger Band width. * The typical, and initial, value for Bollinger Band width multiplier is 2. * * Use the `Multiplier` property for the Bollinger Band width. The typical, and initial, value for Bollinger Band width multiplier is 2. * * ```ts * * * * * * * * * * * * * * ``` * * ```ts * this.series.multiplier = 14; * ``` */ multiplier?: number | string; }