import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator"; import { TypicalPriceIndicator } from "./TypicalPriceIndicator"; /** * Represents a IgxDataChartComponent Typical Price indicator series. * The typical price indicator is represented as a arithmetic average * of the High, Low, and Close for a day. * Default required members: High, Low, Close * * The `TypicalPriceIndicator` class represents a IgxDataChartComponent Typical Price indicator series. * * ```ts * * * * * * ``` * * ```ts * let series = new IgrTypicalPriceIndicator({name: "series"}); * series.xAxis = this.xAxis; * series.yAxis = this.yAxis; * series.openMemberPath = "open"; * series.highMemberPath = "high"; * series.lowMemberPath = "low"; * series.closeMemberPath = "close"; * this.chart.series.add(series); * ``` */ export declare class IgrTypicalPriceIndicator extends IgrStrategyBasedIndicator { protected createImplementation(): TypicalPriceIndicator; /** * @hidden */ get i(): TypicalPriceIndicator; constructor(props: IIgrTypicalPriceIndicatorProps); } export interface IIgrTypicalPriceIndicatorProps extends IIgrStrategyBasedIndicatorProps { }