import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator"; import { TRIXIndicator } from "./TRIXIndicator"; /** * Represents a IgxDataChartComponent TRIX indicator series. * Default required members: Close * * The `TRIXIndicator` class specify the series as Trix Indicator series. * * ```ts * * * * * * ``` * * ```ts * let series = new IgrTRIXIndicator({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 IgrTRIXIndicator extends IgrStrategyBasedIndicator { protected createImplementation(): TRIXIndicator; /** * @hidden */ get i(): TRIXIndicator; constructor(props: IIgrTRIXIndicatorProps); /** * Gets or sets the moving average period for the current TRIXIndicator object. * The typical, and initial, value for TRIX periods is 15. * * The `Period` property is used for moving average period of the current TRIXIndicator object. * * ```ts * * * * * * * * * * * ``` * * ```ts * this.series.period = 30; * ``` */ get period(): number; set period(v: number); } export interface IIgrTRIXIndicatorProps extends IIgrStrategyBasedIndicatorProps { /** * Gets or sets the moving average period for the current TRIXIndicator object. * The typical, and initial, value for TRIX periods is 15. * * The `Period` property is used for moving average period of the current TRIXIndicator object. * * ```ts * * * * * * * * * * * ``` * * ```ts * this.series.period = 30; * ``` */ period?: number | string; }