import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator"; import { EaseOfMovementIndicator } from "./EaseOfMovementIndicator"; /** * Represents a IgxDataChartComponent Ease of Movement indicator series. * The ease of movement indicator by Richard W. Arms, Jr relates the price change of an asset to * its volume. Normally smoothed with a moving average. * Default required members: Low, High, Volume * * The ease of movment indicator is used to analyze relationships between a price changes and volume. One would usually plot this in a separate chart below the main price chart. It can be added to a chart like this: * * ```ts * * * * * * * * ``` */ export declare class IgrEaseOfMovementIndicator extends IgrStrategyBasedIndicator { protected createImplementation(): EaseOfMovementIndicator; /** * @hidden */ get i(): EaseOfMovementIndicator; constructor(props: IIgrEaseOfMovementIndicatorProps); } export interface IIgrEaseOfMovementIndicatorProps extends IIgrStrategyBasedIndicatorProps { }