Ultimate Oscillator
Created by Larry Williams, the Ultimate Oscillator uses several moving averages to weigh buying power against true range price to produce an oversold / overbought oscillator. [Discuss] 💬
// C# usage syntax
IReadOnlyList<UltimateResult> results =
bars.ToUltimate(shortPeriods, middlePeriods, longPeriods);Parameters
| param | type | description |
|---|---|---|
shortPeriods | int | Number of periods (S) in the short lookback. Must be greater than 0. Default is 7. |
middlePeriods | int | Number of periods (M) in the middle lookback. Must be greater than S. Default is 14. |
longPeriods | int | Number of periods (L) in the long lookback. Must be greater than M. Default is 28. |
Historical price bars requirements
You must have at least L+1 periods of bars to cover the warmup periods.
bars is a collection of generic TBar historical price bars. It should have a consistent frequency (day, hour, minute, etc). See the Guide for more information.
Response
IReadOnlyList<UltimateResult>- This method returns a time series of all available indicator values for the
barsprovided. - It always returns the same number of elements as there are in the historical price bars.
- It does not return a single incremental indicator value.
- The first
L-1periods will havenullUltimate values since there's not enough data to calculate.
UltimateResult
| property | type | description |
|---|---|---|
Timestamp | DateTime | Date from evaluated TBar |
Ultimate | double | Ultimate Oscillator |
Utilities
See Utilities and helpers for more information.
Chaining
Results can be further processed on Ultimate with additional chain-enabled indicators.
// example
var results = bars
.ToUltimate(..)
.ToSlope(..);This indicator must be generated from bars and cannot be generated from results of another chain-enabled indicator or method.
See Chaining indicators for more.
Streaming
Use the buffer-style List<T> when you need incremental calculations without a hub:
UltimateList ultimateList = new(shortPeriods, middlePeriods, longPeriods);
foreach (IBar bar in bars) // simulating stream
{
ultimateList.Add(bar);
}
// based on `ICollection<UltimateResult>`
IReadOnlyList<UltimateResult> results = ultimateList;Subscribe to a BarHub for advanced streaming scenarios:
BarHub barHub = new();
UltimateHub observer = barHub.ToUltimateHub(shortPeriods, middlePeriods, longPeriods);
foreach (IBar bar in bars) // simulating stream
{
barHub.Add(bar);
}
IReadOnlyList<UltimateResult> results = observer.Results;See Buffer lists and Stream hubs for full usage guides.