Interface ITimeSeries<T>
Interface for time series data. This interface provides access to a limited number of historical values.
Namespace: TuringTrader.Simulator
Assembly: TuringTrader.Simulator.dll
Syntax
public interface ITimeSeries<T>
Type Parameters
Name | Description |
---|---|
T | type of time series |
Properties
| Improve this Doc View Sourcethis[int]
Retrieve historical value from time series.
Declaration
T this[int barsBack] { get; }
Parameters
Type | Name | Description |
---|---|---|
int | barsBack | number of bars back, 0 for current bar |
Property Value
Type | Description |
---|---|
T | historical value |