igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
44 lines (43 loc) • 1.44 kB
JavaScript
import { IgrStrategyBasedIndicator } 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
* <IgrDataChart
* dataSource={this.state.dataSource}
* width="700px"
* height="500px">
*
* <IgrCategoryXAxis name="xAxis" label="Year" />
* <IgrNumericYAxis name="yAxis" />
*
* <IgrEaseOfMovementIndicator
* name="series1"
* xAxisName="xAxis"
* yAxisName="yAxis"
* volumeMemberPath="Volume"
* highMemberPath="High"
* lowMemberPath="Low" />
* </IgrDataChart>
* ```
*/
export class IgrEaseOfMovementIndicator extends IgrStrategyBasedIndicator {
createImplementation() {
return new EaseOfMovementIndicator();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
}