igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
48 lines (47 loc) • 1.92 kB
TypeScript
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
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.
*/
export declare class IgcPercentagePriceOscillatorIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): PercentagePriceOscillatorIndicator;
/**
* @hidden
*/
get i(): PercentagePriceOscillatorIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcPercentagePriceOscillatorIndicatorComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* 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;
* ```
*/
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;
* ```
*/
get longPeriod(): number;
set longPeriod(v: number);
}