Represents a custom data series for an indicator, derived from BaseDataSeries<decimal>. More...
Public Member Functions | |
| IndicatorSeries (Indicator indicator, int seriesId) | |
| Constructor to create an IndicatorSeries object for the specified indicator and series ID. | |
Public Member Functions inherited from ATAS.Indicators.BaseDataSeries< decimal > | |
| virtual void | Clear () |
| override string | ToString () |
Properties | |
| Indicator | Indicator [get] |
| Gets the associated indicator. | |
| int | SeriesId [get] |
| Gets the ID of the series within the indicator. | |
| override int | Count [get] |
| Gets the count of data points in the series. | |
| override decimal | this[int index] [get, set] |
| Gets the data value at the specified index in the IndicatorSeries. | |
Properties inherited from ATAS.Indicators.BaseDataSeries< decimal > | |
| bool | DrawAbovePrice [get, set] |
| bool | IgnoredByAlerts [get, set] |
| string | Id [get, set] |
| Gets or sets the unique and constant data series ID for data serialization. | |
| string | RenderId [get] |
| Unique series id for all panels and indicators. | |
| virtual bool | IsVisible [get] |
| Gets a value is should series drawn. | |
| DataSeriesType | Type [get] |
| string | Name [get, set] |
| string | DescriptionKey [get, set] |
| abstract int | Count [get] |
| abstract T | this[int index] [get, set] |
| Gets or sets the element at the specified index. | |
| bool | IsHidden [get, set] |
| bool | ShowTooltip [get, set] |
| bool | UseMinimizedModeIfEnabled [get, set] |
| bool | ResetAlertsOnNewBar [get, set] |
| bool | ShowNameOnMouseOver [get, set] |
Additional Inherited Members | |
Protected Member Functions inherited from ATAS.Indicators.BaseDataSeries< decimal > | |
| void | RaiseChanged (int bar) |
| virtual void | RaisePropertyChanged (string propertyName) |
| virtual void | RaisePanelPropertyChanged (string propertyName) |
| BaseDataSeries (string id, DataSeriesType type) | |
| BaseDataSeries (string id, string name, DataSeriesType type) | |
| BaseDataSeries (DataSeriesType type) | |
Events inherited from ATAS.Indicators.BaseDataSeries< decimal > | |
| Action< int > | Changed |
| PropertyChangedEventHandler | PropertyChanged |
| PropertyChangedEventHandler | PanelPropertyChanged |
Represents a custom data series for an indicator, derived from BaseDataSeries<decimal>.
| ATAS.Indicators.IndicatorSeries.IndicatorSeries | ( | Indicator | indicator, |
| int | seriesId | ||
| ) |
Constructor to create an IndicatorSeries object for the specified indicator and series ID.
| indicator | The associated indicator. |
| seriesId | The ID of the series within the indicator. |
| ArgumentNullException | Thrown if the 'indicator' parameter is null. An IndicatorSeries must be associated with a valid indicator. |
| IndexOutOfRangeException | Thrown if the specified 'seriesId' is not a valid index in the parent indicator's DataSeries collection. |
|
get |
Gets the count of data points in the series.
|
get |
Gets the associated indicator.
|
get |
Gets the ID of the series within the indicator.
|
getset |
Gets the data value at the specified index in the IndicatorSeries.
| index | The index of the data value to retrieve. |
IndicatorSeries does not support modifying data values. It is read-only.
| IndexOutOfRangeException | Thrown if the specified index is outside the valid range of the data series. |