import { IgPoint } from "igniteui-react-core";
import { IgrFinancialOverlay, IIgrFinancialOverlayProps } from "./igr-financial-overlay";
import { BollingerBandsOverlay } from "./BollingerBandsOverlay";
/**
* Represents a IgxDataChartComponent Bollinger Bands financial overlay series.
* Default required members: High, Low, Close
*
* You can use the `BollingerBandsOverlay` class represents a IgxDataChartComponent Bollinger Bands financial overlay series.
*
* ```ts
*
*
*
*
*
*
*
*
*
*
*
* ```
*
* ```ts
* const s = new IgrBollingerBandsOverlay({ name: "", xAxisName: "" });
* ```
*/
export declare class IgrBollingerBandsOverlay extends IgrFinancialOverlay {
protected createImplementation(): BollingerBandsOverlay;
/**
* @hidden
*/
get i(): BollingerBandsOverlay;
constructor(props: IIgrBollingerBandsOverlayProps);
/**
* Gets or sets the moving average period for the current BollingerBandOverlay object.
* The typical, and initial, value for Bollinger band periods is 14.
*
* You can use the `period` property for moving average of the current BollingerBandOverlay object.
*
* ```ts
*
*
*
*
*
*
*
*
*
*
*
* ```
*
* ```ts
* this.series.period = 7;
* ```
*/
get period(): number;
set period(v: number);
/**
* Gets or sets the moving average period for the current BollingerBandOverlay object.
* The typical, and initial, value for Bollinger band multipliers is 2.
*
* You can use the `BollingerBandsOverlay`
*
* ```ts
*
*
*
*
*
*
*
*
*
*
*
* ```
*/
get multiplier(): number;
set multiplier(v: number);
getSeriesValue(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): number;
getPreviousOrExactIndex(world: IgPoint, skipUnknowns: boolean): number;
getNextOrExactIndex(world: IgPoint, skipUnknowns: boolean): number;
}
export interface IIgrBollingerBandsOverlayProps extends IIgrFinancialOverlayProps {
/**
* Gets or sets the moving average period for the current BollingerBandOverlay object.
* The typical, and initial, value for Bollinger band periods is 14.
*
* You can use the `period` property for moving average of the current BollingerBandOverlay object.
*
* ```ts
*
*
*
*
*
*
*
*
*
*
*
* ```
*
* ```ts
* this.series.period = 7;
* ```
*/
period?: number | string;
/**
* Gets or sets the moving average period for the current BollingerBandOverlay object.
* The typical, and initial, value for Bollinger band multipliers is 2.
*
* You can use the `BollingerBandsOverlay`
*
* ```ts
*
*
*
*
*
*
*
*
*
*
*
* ```
*/
multiplier?: number | string;
}