ISeries
Definition
ISeries is an interface that is implemented by all NinjaScript classes that manage historical data as an ISeries\<double\> (Open, High, Low, Close, etc), used for indicator input, and other object data. Please see the help guide article on Working with Price Series for a basic overview on how to access this information.
Types of ISeries
Methods and Properties
Tips: (see examples below)
- By specifying a parameter of type ISeries
\<double\>, you can then pass in an array of closing prices, an indicator, or a user defined data series. - When working with ISeries
\<double\>objects in your code you may come across situations where you are not sure if the value being accessed is a valid value or just a “placeholder” value. To check if you are using valid values for your logic calculations that have been explicitly set, please use .IsValidDataPoint(int barsAgo) to check.

