UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

26 lines (25 loc) 1.3 kB
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; 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: */ export declare class IgcEaseOfMovementIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): EaseOfMovementIndicator; /** * @hidden */ get i(): EaseOfMovementIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcEaseOfMovementIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; }