import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator";
import { DetrendedPriceOscillatorIndicator } from "./DetrendedPriceOscillatorIndicator";
/**
* Represents a IgxDataChartComponent Detrended Price Oscillator indicator series.
* Default required members: Close
*
* The `DetrendedPriceOscillatorIndicator` class represents a IgxDataChartComponent Detrended Price Oscillator indicator series.
*
* ```ts
*
*
*
*
*
*
*
* ```
*/
export declare class IgrDetrendedPriceOscillatorIndicator extends IgrStrategyBasedIndicator {
protected createImplementation(): DetrendedPriceOscillatorIndicator;
/**
* @hidden
*/
get i(): DetrendedPriceOscillatorIndicator;
constructor(props: IIgrDetrendedPriceOscillatorIndicatorProps);
/**
* Gets or sets the moving average period for the current DetrendedPriceOscillatorIndicator object.
* The typical, and initial, value for DPO periods is 20.
*
* You can use the `period` to set the current moving average period.
*
* ```ts
*
*
*
*
*
*
*
* ```
*
* ```ts
* this.series.period = 30;
* ```
*/
get period(): number;
set period(v: number);
}
export interface IIgrDetrendedPriceOscillatorIndicatorProps extends IIgrStrategyBasedIndicatorProps {
/**
* Gets or sets the moving average period for the current DetrendedPriceOscillatorIndicator object.
* The typical, and initial, value for DPO periods is 20.
*
* You can use the `period` to set the current moving average period.
*
* ```ts
*
*
*
*
*
*
*
* ```
*
* ```ts
* this.series.period = 30;
* ```
*/
period?: number | string;
}