import { IndicatorDisplayType } from "./IndicatorDisplayType"; import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator"; import { MoneyFlowIndexIndicator } from "./MoneyFlowIndexIndicator"; /** * Represents a IgxDataChartComponent Money Flow Index indicator series. * Default required members: Close, Low, High, Volume * * Represents a Ignite UIDataChart Money Flow Index indicator series. * * Example: * * ```ts * * * * * * * * ``` * * ```ts * this.series = new IgrrMoneyFlowIndexIndicator ({ name: "Series1" }); * this.series.dataSource = this.data; * this.series.xAxis = this.categoryXAxis; * this.series.yAxis = this.numericYAxis; * this.series.volumeMemberPath="Volume" ; * this.series.highMemberPath= "High" ; * this.series.lowMemberPath="Low" ; * this.series.closeMemberPath="close" * ``` */ export declare class IgrMoneyFlowIndexIndicator extends IgrStrategyBasedIndicator { protected createImplementation(): MoneyFlowIndexIndicator; /** * @hidden */ get i(): MoneyFlowIndexIndicator; constructor(props: IIgrMoneyFlowIndexIndicatorProps); /** * Gets default display type for the current Financial Indicator */ get defaultDisplayType(): IndicatorDisplayType; /** * Gets or sets the moving average period for the current MoneyFlowIndexIndicator object. * The typical, and initial, value for MoneyFlowIndexIndicator periods is 14. * * Gets or sets the moving average period for the current MoneyFlowIndexIndicator object. * * Example: * * ```ts * this.series.period = 14; * ``` * * ```ts * * * * * * * * ``` */ get period(): number; set period(v: number); } export interface IIgrMoneyFlowIndexIndicatorProps extends IIgrStrategyBasedIndicatorProps { /** * Gets or sets the moving average period for the current MoneyFlowIndexIndicator object. * The typical, and initial, value for MoneyFlowIndexIndicator periods is 14. * * Gets or sets the moving average period for the current MoneyFlowIndexIndicator object. * * Example: * * ```ts * this.series.period = 14; * ``` * * ```ts * * * * * * * * ``` */ period?: number | string; }