PriceSeries<double>
<< Click to Display Table of Contents >> PriceSeries<double> |
Represents historical data as an ISeries<double> interface which can be used for custom NinjaScript object calculations.
Note: In most cases, you will access the historical price series using a core event handler such as OnBarUpdate. For more advance developers, you may find situations where you wish to access historical price series outside of the core event methods, such as your own custom mouse click. In these advanced scenarios, you may run into situations where the barsAgo pointer is not in sync with the current bar, which may cause errors when trying to obtain this information. In those cases, please use the Bars.Get...() methods with the absolute bar index, e.g., Bars.GetClose(), Bars.GetOpen(), etc. |
A collection of historical bar close prices. |
|
A collection of historical bar high prices. |
|
A collect of the the main historical input values. |
|
A collection of historical bar low prices. |
|
A collection of historical bar median prices. |
|
A collection of historical bar open prices. |
|
A collection of historical bar typical prices. |
|
A collection of historical references to the first object (Values[0]) in the indicator |
|
A collection of historical bar weighted prices. |
Holds an array of ISeries<double> objects holding historical bar close prices. |
|
Holds an array of ISeries<double> objects holding historical bar high prices. |
|
Holds an array of ISeries<double> objects holding main historical input values |
|
Holds an array of ISeries<double> objects holding historical bar low prices. |
|
Holds an array of ISeries<double>objects holding historical bar median prices. |
|
Holds an array of ISeries<double> objects holding historical bar open prices. |
|
Holds an array of ISeries<double> objects holding historical bar typical prices. |
|
Holds an array of ISeries<double> objects holding hold the indicator's underlying calculated values. |
|
Holds an array of ISeries<double> objects holding historical bar weighted prices. |