igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
33 lines (32 loc) • 1.14 kB
JavaScript
import { IgrItemwiseStrategyBasedIndicator } from "./igr-itemwise-strategy-based-indicator";
import { MarketFacilitationIndexIndicator } from "./MarketFacilitationIndexIndicator";
/**
* Represents a IgxDataChartComponent Market Facilitation Index indicator series.
* The Market Facilitation Index (MFI) indicator is represented by
* the difference of the high and the low for a bar divided by the volume.
* Default required members: High, Low, Volume
*
* The Market Facilitation Index (MFI) indicator is represented by the difference of the high and the low for a bar divided by the volume.
*
* Example:
*/
export class IgrMarketFacilitationIndexIndicator extends IgrItemwiseStrategyBasedIndicator {
createImplementation() {
return new MarketFacilitationIndexIndicator();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
/**
* Gets default display type for the current Financial Indicator
*/
get defaultDisplayType() {
return this.i.abd;
}
}