|
Lean
$LEAN_TAG$
|
This indicator computes the Ultimate Oscillator (ULTOSC) The Ultimate Oscillator is calculated as explained here: http://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:ultimate_oscillator More...
Public Member Functions | |
| UltimateOscillator (int period1, int period2, int period3) | |
| Initializes a new instance of the UltimateOscillator class using the specified parameters More... | |
| UltimateOscillator (string name, int period1, int period2, int period3) | |
| Initializes a new instance of the UltimateOscillator class using the specified parameters More... | |
| override void | Reset () |
| Resets this indicator to its initial state More... | |
Public Attributes | |
| override bool | IsReady => Samples > _period |
| Gets a flag indicating when this indicator is ready and fully initialized More... | |
| int | WarmUpPeriod => _period + 1 |
| Required period, in data points, for the indicator to be ready and fully initialized. More... | |
Protected Member Functions | |
| override decimal | ComputeNextValue (IBaseDataBar input) |
| Computes the next value of this indicator from the given state More... | |
Protected Member Functions inherited from QuantConnect.Indicators.BarIndicator | |
| BarIndicator (string name) | |
| Creates a new TradeBarIndicator with the specified name More... | |
Additional Inherited Members | |
Properties inherited from QuantConnect.Indicators.IIndicatorWarmUpPeriodProvider | |
| int | WarmUpPeriod [get] |
| Required period, in data points, for the indicator to be ready and fully initialized. More... | |
This indicator computes the Ultimate Oscillator (ULTOSC) The Ultimate Oscillator is calculated as explained here: http://stockcharts.com/school/doku.php?id=chart_school:technical_indicators:ultimate_oscillator
Definition at line 26 of file UltimateOscillator.cs.
| QuantConnect.Indicators.UltimateOscillator.UltimateOscillator | ( | int | period1, |
| int | period2, | ||
| int | period3 | ||
| ) |
Initializes a new instance of the UltimateOscillator class using the specified parameters
| period1 | The first period |
| period2 | The second period |
| period3 | The third period |
Definition at line 44 of file UltimateOscillator.cs.
| QuantConnect.Indicators.UltimateOscillator.UltimateOscillator | ( | string | name, |
| int | period1, | ||
| int | period2, | ||
| int | period3 | ||
| ) |
Initializes a new instance of the UltimateOscillator class using the specified parameters
| name | The name of this indicator |
| period1 | The first period |
| period2 | The second period |
| period3 | The third period |
Definition at line 56 of file UltimateOscillator.cs.
|
protected |
Computes the next value of this indicator from the given state
| input | The input given to the indicator |
Definition at line 84 of file UltimateOscillator.cs.
| override void QuantConnect.Indicators.UltimateOscillator.Reset | ( | ) |
Resets this indicator to its initial state
Definition at line 126 of file UltimateOscillator.cs.
| override bool QuantConnect.Indicators.UltimateOscillator.IsReady => Samples > _period |
Gets a flag indicating when this indicator is ready and fully initialized
Definition at line 72 of file UltimateOscillator.cs.
| int QuantConnect.Indicators.UltimateOscillator.WarmUpPeriod => _period + 1 |
Required period, in data points, for the indicator to be ready and fully initialized.
Definition at line 77 of file UltimateOscillator.cs.