import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator"; import { AverageDirectionalIndexIndicator } from "./AverageDirectionalIndexIndicator"; /** * Represents a IgxDataChartComponent Average Directional indicator series. * Default required members: High, Low, Close * * You can use the `AverageDirectionalIndexIndicator` to measures trend strength without regard to trend direction. * * ```ts * * * * * * * * ``` * * ```ts * let series = new IgrAverageDirectionalIndexIndicator(); * series.xAxisName = this.xAxis; * series.yAxisName = this.yAxis; * series.openMemberPath = "open"; * series.highMemberPath = "high"; * series.lowMemberPath = "low"; * series.closeMemberPath = "close"; * this.chart.series.add(series); * ``` */ export declare class IgrAverageDirectionalIndexIndicator extends IgrStrategyBasedIndicator { protected createImplementation(): AverageDirectionalIndexIndicator; /** * @hidden */ get i(): AverageDirectionalIndexIndicator; constructor(props: IIgrAverageDirectionalIndexIndicatorProps); /** * Gets or sets the moving average period for the current AverageDirectionalIndexIndicator object. * The typical, and initial, value for AverageDirectionalIndexIndicator periods is 14. * * You can use the `Period` to set the moving average. * * ```ts * * * * * * * * ``` * * ```ts * this.series.period = 14; * ``` */ get period(): number; set period(v: number); } export interface IIgrAverageDirectionalIndexIndicatorProps extends IIgrStrategyBasedIndicatorProps { /** * Gets or sets the moving average period for the current AverageDirectionalIndexIndicator object. * The typical, and initial, value for AverageDirectionalIndexIndicator periods is 14. * * You can use the `Period` to set the moving average. * * ```ts * * * * * * * * ``` * * ```ts * this.series.period = 14; * ``` */ period?: number | string; }