Show / Hide Table of Contents

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 Source

Item[Int32]

Retrieve historical value from time series.

Declaration
T this[int barsBack] { get; }
Parameters
Type Name Description
System.Int32 barsBack

number of bars back, 0 for current bar

Property Value
Type Description
T

historical value

  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2011-2021, Bertram Solutions LLC