Stores series values calculated by your system, and can be used to display them on a chart.
Namespace:
RightEdge.CommonAssembly: Common (in Common.dll)
Version: 2008.1.0.0 (2008.1.0.0)
Syntax
| C# |
|---|
public sealed class UserSeries : ISeries, ISystemAccess |
| Visual Basic (Declaration) |
|---|
Public NotInheritable Class UserSeries _ Implements ISeries, ISystemAccess |
| Visual C++ |
|---|
public ref class UserSeries sealed : ISeries, ISystemAccess |
Remarks
The series will be kept in sync with the bars for the corresponding symbol. When a new bar comes in, a value of NaN will be added to the series. You can set the value of the series for the current bar with the Current property, or use the SetValue(Int32, Double) method to set other values.
A UserSeries needs to be registered with the indicator manager to work properly. UserSeries that are declared as fields of your symbol script class will automatically be registered. You can also register a series manually with the Register(ISeries, Symbol, String) method.