AddVariable (inherited from Timeseries) | Build a new named variable from an existing array of double. The first entry in the array is assumed aligned with the first timestamps that was used to build this timeseries. |
ApplyTo (inherited from Timeseries) | Select a variable to which transformation will be applied. |
Aroon (inherited from Timeseries) | Technical analysis function Aroon. |
Clone (inherited from Timeseries) | Make a deep copy of the Timeseries. The new timeseries is independent with a copy of all the variable(s) and their value(s). |
ConvertBarPeriod (inherited from Timeseries) | Overloaded. Compress or expand the "Open","High","Low","Close","Volume" and "OpenInterest" to a different periodicity. The new variables are returned in a new Timeseries. |
ConvertPeriod (inherited from Timeseries) | Overloaded. Compress or expand the default variable to a different periodicity. The new variable is returned in a new Timeseries. |
CorrelValue (inherited from Timeseries) | Return the Pearson correlation between the first two default variables. |
CreateBar (inherited from Timeseries) | Create a new timeseries with Open, High, Low, Close variables at the specified period. The input is the default vaiable. Data compression and expansion will take place when needed e.g. a variable that is of period of 1 second can be compress into hourly bar. |
Delete (inherited from Timeseries) | Delete the specified variable. |
delValue (inherited from Timeseries) | Overloaded. Delete all values at the specified dateTime. |
Equals (inherited from Object) | Determines whether the specified Object is equal to the current Object. |
Exist (inherited from Timeseries) | Overloaded. Verify if a variable exist in this timeseries. |
GetEnumerator (inherited from Timeseries) | Allows to iterate the list of variable belonging to this time series. |
GetHashCode (inherited from Object) | Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table. |
GetType (inherited from Object) | Gets the Type of the current instance. |
GetVar (inherited from Timeseries) | Access a variable by name. |
Macd (inherited from Timeseries) | Moving Average Convergence/Divergence |
Rename (inherited from Timeseries) | Overloaded. Rename the default variable. Take note that upon rename, the variable might not be the default anymore. |
Select (inherited from Timeseries) | Allows to express concisely the creation of a new timeseries by enumerating a subset of variables of this timeseries. Example: Timeseries ts2 = ts1.Select( "Open", "Close" ); will create a new timeseries ts2 with a copy of the variable "Open" and "Close" of the timeseries ts1. |
SelectInOrder (inherited from Timeseries) | Allows to express concisely the creation of a new time series built with variables in a specific order. The variables name in the new time series are unspecified. The user can only assume that the variables names are in the proper sorted order. |
SetAllVar (inherited from Timeseries) | Add all variables from a timeseries at once. The variable name will be appended with the specified prefix. |
SetVar (inherited from Timeseries) | Overloaded. Add a variable to this time series with the specified name. If a variable of the same name already exist, it will be replaced. |
Sma (inherited from Timeseries) | Simple moving average. |
ToString (inherited from Object) | Returns a String that represents the current Object. |
TypPrice (inherited from Timeseries) | Typical price. High+Low+Close/3.0; |