Lean
$LEAN_TAG$
|
Historical data abstraction More...
Public Member Functions | |
DataHistory (IEnumerable< T > data, Lazy< PyObject > dataframe) | |
Creates a new instance More... | |
override string | ToString () |
Default to string implementation More... | |
IEnumerator< T > | GetEnumerator () |
Returns an enumerator for the data More... | |
Public Attributes | |
int | Count => _count.Value |
The current data point count More... | |
PyObject | DataFrame => _dataframe.Value |
This data pandas data frame More... | |
Properties | |
IEnumerable< T > | Data [get] |
The data we hold More... | |
Historical data abstraction
T | The data this collection can enumerate |
Definition at line 30 of file DataHistory.cs.
QuantConnect.Data.DataHistory< T >.DataHistory | ( | IEnumerable< T > | data, |
Lazy< PyObject > | dataframe | ||
) |
Creates a new instance
Definition at line 53 of file DataHistory.cs.
override string QuantConnect.Data.DataHistory< T >.ToString | ( | ) |
Default to string implementation
Definition at line 64 of file DataHistory.cs.
IEnumerator<T> QuantConnect.Data.DataHistory< T >.GetEnumerator | ( | ) |
Returns an enumerator for the data
Definition at line 77 of file DataHistory.cs.
int QuantConnect.Data.DataHistory< T >.Count => _count.Value |
The current data point count
Definition at line 43 of file DataHistory.cs.
PyObject QuantConnect.Data.DataHistory< T >.DataFrame => _dataframe.Value |
This data pandas data frame
Definition at line 48 of file DataHistory.cs.
|
getprotected |
The data we hold
Definition at line 38 of file DataHistory.cs.