igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
48 lines (47 loc) • 1.93 kB
TypeScript
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { ChaikinOscillatorIndicator } from "./ChaikinOscillatorIndicator";
/**
* Represents the IgxDataChartComponent Chaikin Oscillator indicator series.
* Default required members: Close, Low, High, Volume
*
* `ChaikinOscillatorIndicator` class specify the series as Chaikin Oscillator Indicator series.
*/
export declare class IgcChaikinOscillatorIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): ChaikinOscillatorIndicator;
/**
* @hidden
*/
get i(): ChaikinOscillatorIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcChaikinOscillatorIndicatorComponent;
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 ChaikinOscillatorIndicator object.
* The typical, and initial, value for short CHO periods is 3.
*
* Set the `ShortPeriod` property if you wish to change the short moving average period for the indicator.
*
* ```ts
* this.series.shortPeriod = 30;
* ```
*/
get shortPeriod(): number;
set shortPeriod(v: number);
/**
* Gets or sets the long moving average period for the current ChaikinOscillatorIndicator object.
* The typical, and initial, value for long CHO periods is 10.
*
* Set the `LongPeriod` property if you wish to change the long moving average period for the indicator.
*
* ```ts
* this.series.longPeriod = 30;
* ```
*/
get longPeriod(): number;
set longPeriod(v: number);
}