import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator"; import { PercentagePriceOscillatorIndicator } from "./PercentagePriceOscillatorIndicator"; /** * Represents a IgxDataChartComponent percentage price oscillator series. * Default required members: High, Low, Volume * * You can use the `PercentagePriceOscillatorIndicator` to show the difference between two moving averages. * * ```ts * * * * * * * ``` * * ```ts * let series = new IgrPercentagePriceOscillatorIndicator({name:"series1"}); * series.xAxisName = this.xAxis; * series.yAxisName = this.yAxis; * series.xAxis = this.categoryXAxis; * series.yAxis = this.numericYAxis; * series.openMemberPath = "open"; * series.highMemberPath = "high"; * series.lowMemberPath = "low"; * series.closeMemberPath = "close"; * ``` */ export declare class IgrPercentagePriceOscillatorIndicator extends IgrStrategyBasedIndicator { protected createImplementation(): PercentagePriceOscillatorIndicator; /** * @hidden */ get i(): PercentagePriceOscillatorIndicator; constructor(props: IIgrPercentagePriceOscillatorIndicatorProps); /** * Gets or sets the short moving average period for the current PercentagePriceOscillatorIndicator object. * The typical, and initial, value for short PPO periods is 10. * * You can use the `ShortPeriod` to set the short moving average period. * * ```ts * this.series.shortPeriod = 10; * ``` * * ```ts * * * * * * * ``` */ get shortPeriod(): number; set shortPeriod(v: number); /** * Gets or sets the long moving average period for the current PercentagePriceOscillatorIndicator object. * The typical, and initial, value for long PVO periods is 30. * * You can use the `LongPeriod` to set the long moving average period. * * ```ts * this.series.longPeriod = 30; * ``` * * ```ts * * * * * * * ``` */ get longPeriod(): number; set longPeriod(v: number); } export interface IIgrPercentagePriceOscillatorIndicatorProps extends IIgrStrategyBasedIndicatorProps { /** * Gets or sets the short moving average period for the current PercentagePriceOscillatorIndicator object. * The typical, and initial, value for short PPO periods is 10. * * You can use the `ShortPeriod` to set the short moving average period. * * ```ts * this.series.shortPeriod = 10; * ``` * * ```ts * * * * * * * ``` */ shortPeriod?: number | string; /** * Gets or sets the long moving average period for the current PercentagePriceOscillatorIndicator object. * The typical, and initial, value for long PVO periods is 30. * * You can use the `LongPeriod` to set the long moving average period. * * ```ts * this.series.longPeriod = 30; * ``` * * ```ts * * * * * * * ``` */ longPeriod?: number | string; }