Represents an indicator capable of predicting new values given previous data from a window. Source: https://tulipindicators.org/tsf
More...
|
int | Period |
| Gets the period of this window indicator More...
|
|
override bool | IsReady |
| Gets a flag indicating when this indicator is ready and fully initialized More...
|
|
virtual int | WarmUpPeriod |
| Required period, in data points, to the indicator to be ready and fully initialized More...
|
|
int | WarmUpPeriod [get] |
| Required period, in data points, for the indicator to be ready and fully initialized. More...
|
|
Represents an indicator capable of predicting new values given previous data from a window. Source: https://tulipindicators.org/tsf
Definition at line 24 of file TimeSeriesForecast.cs.
◆ TimeSeriesForecast() [1/2]
QuantConnect.Indicators.TimeSeriesForecast.TimeSeriesForecast |
( |
string |
name, |
|
|
int |
period |
|
) |
| |
Creates a new TimeSeriesForecast indicator with the specified period
- Parameters
-
name | The name of this indicator |
period | The period over which to look back |
Definition at line 31 of file TimeSeriesForecast.cs.
◆ TimeSeriesForecast() [2/2]
QuantConnect.Indicators.TimeSeriesForecast.TimeSeriesForecast |
( |
int |
period | ) |
|
Creates a new TimeSeriesForecast indicator with the specified period
- Parameters
-
period | The period over which to look back |
Definition at line 44 of file TimeSeriesForecast.cs.
◆ ComputeNextValue()
Computes the next value for this indicator from the given state.
- Parameters
-
window | The window of data held in this indicator |
input | The input value to this indicator on this time step |
- Returns
- A new value for this indicator
Definition at line 55 of file TimeSeriesForecast.cs.
The documentation for this class was generated from the following file: