import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator";
import { OnBalanceVolumeIndicator } from "./OnBalanceVolumeIndicator";
/**
* Represents a IgxDataChartComponent On Balance Bolume indicator series.
* Default required members: Close, Volume
*
* You can use the `OnBalanceVolumeIndicator` to calculate a running total of sales volume for a stock.
*
* ```ts
*
*
*
*
*
*
*
* ```
*
* ```ts
* this.series = new IgrOnBalanceVolumeIndicator({ name: "series1" });
* this.series.dataSource = this.data;
* this.series.xAxis = this.categoryXAxis;
* this.series.yAxis = this.numericYAxis;
* this.series.xAxisName = "xAxis";
* this.series.yAxisName = "yAxis";
* this.series.openMemberPath = "open";
* this.series.highMemberPath = "high";
* this.series.lowMemberPath = "low";
* this.series.closeMemberPath = "close";
* ```
*/
export declare class IgrOnBalanceVolumeIndicator extends IgrStrategyBasedIndicator {
protected createImplementation(): OnBalanceVolumeIndicator;
/**
* @hidden
*/
get i(): OnBalanceVolumeIndicator;
constructor(props: IIgrOnBalanceVolumeIndicatorProps);
}
export interface IIgrOnBalanceVolumeIndicatorProps extends IIgrStrategyBasedIndicatorProps {
}