import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator";
import { ChaikinVolatilityIndicator } from "./ChaikinVolatilityIndicator";
/**
* Represents a IgxDataChartComponent Chaikin Volatility indicator series.
* The ChaikinVolatility indicator attempts to show volatility by displaying the spread between
* the high and low values.
* Default required members: High, Low
*
* `ChaikinVolatilityIndicator` class specify the series as Chaikin Volitility Indicator series.
*
* ```ts
*
*
*
*
*
*
*
* ```
*/
export declare class IgrChaikinVolatilityIndicator extends IgrStrategyBasedIndicator {
protected createImplementation(): ChaikinVolatilityIndicator;
/**
* @hidden
*/
get i(): ChaikinVolatilityIndicator;
constructor(props: IIgrChaikinVolatilityIndicatorProps);
/**
* Gets or sets the moving average period for the current ChaikinVolatilityIndicator object.
* The typical, and initial, value for ChaikinVolatilityIndicator periods is 10.
*
* Set the `Period` property if you wish to change the moving average period for the indicator.
*
* ```ts
* this.series.longPeriod = 30;
* ```
*
* ```ts
*
*
*
*
*
*
*
* ```
*/
get period(): number;
set period(v: number);
}
export interface IIgrChaikinVolatilityIndicatorProps extends IIgrStrategyBasedIndicatorProps {
/**
* Gets or sets the moving average period for the current ChaikinVolatilityIndicator object.
* The typical, and initial, value for ChaikinVolatilityIndicator periods is 10.
*
* Set the `Period` property if you wish to change the moving average period for the indicator.
*
* ```ts
* this.series.longPeriod = 30;
* ```
*
* ```ts
*
*
*
*
*
*
*
* ```
*/
period?: number | string;
}