import { IgrStrategyBasedIndicator, IIgrStrategyBasedIndicatorProps } from "./igr-strategy-based-indicator"; import { StochRSIIndicator } from "./StochRSIIndicator"; /** * Represents a IgxDataChartComponent StochRSI indicator series. * Default required members: Close * * `StochRSIIndicator` or Stochastic Relative Strength IndexI Indicator (SRSI) measures when a security is overbought or oversold within a specified period of time. The values range from 0 to 1. The StochRSI Indicator is calculated by applying the Stochastic Oscillator formula to RelativeStrengthIndexIndicator (RSI) data. * * Using this indicator requires setting the `CloseMemberPath`. * * ```ts * * * * * * * * ``` * * ```ts * let series = new IgrStochRSIIndicator({name:"series1"}); * series.xAxis = this.xAxis; * series.yAxis = this.yAxis; * series.closeMemberPath = "close"; * this.chart.series.add(series); * ``` */ export declare class IgrStochRSIIndicator extends IgrStrategyBasedIndicator { protected createImplementation(): StochRSIIndicator; /** * @hidden */ get i(): StochRSIIndicator; constructor(props: IIgrStochRSIIndicatorProps); /** * Gets or sets the moving average period for the current StochRSIIndicator object. * The typical, and initial, value for StochRSI periods is 14. * * ```ts * this.series.period = 10; * ``` * * ```ts * * * * * * * * ``` */ get period(): number; set period(v: number); } export interface IIgrStochRSIIndicatorProps extends IIgrStrategyBasedIndicatorProps { /** * Gets or sets the moving average period for the current StochRSIIndicator object. * The typical, and initial, value for StochRSI periods is 14. * * ```ts * this.series.period = 10; * ``` * * ```ts * * * * * * * * ``` */ period?: number | string; }